2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
11 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Jack Lange <jarusl@cs.northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20 #include <linux/slab.h>
22 #include "palacios-queue.h"
24 void init_queue(struct gen_queue * queue, unsigned int max_entries) {
25 queue->num_entries = 0;
26 queue->max_entries = max_entries;
28 INIT_LIST_HEAD(&(queue->entries));
29 spin_lock_init(&(queue->lock));
32 struct gen_queue * create_queue(unsigned int max_entries) {
33 struct gen_queue * tmp_queue = kmalloc(sizeof(struct gen_queue), GFP_KERNEL);
34 init_queue(tmp_queue, max_entries);
38 int enqueue(struct gen_queue * queue, void * entry) {
39 struct queue_entry * q_entry = NULL;
42 if (queue->num_entries >= queue->max_entries) {
46 q_entry = kmalloc(sizeof(struct queue_entry), GFP_KERNEL);
48 spin_lock_irqsave(&(queue->lock), flags);
50 q_entry->entry = entry;
51 list_add_tail(&(q_entry->node), &(queue->entries));
54 spin_unlock_irqrestore(&(queue->lock), flags);
60 void * dequeue(struct gen_queue * queue) {
64 spin_lock_irqsave(&(queue->lock), flags);
66 if (!list_empty(&(queue->entries))) {
67 struct list_head * q_entry = queue->entries.next;
68 struct queue_entry * tmp_entry = list_entry(q_entry, struct queue_entry, node);
70 entry_val = tmp_entry->entry;
78 spin_unlock_irqrestore(&(queue->lock), flags);