summaryrefslogtreecommitdiffstats
path: root/arch/m68k/mach-mcfv4e/net/queue.c
blob: e573fcfd5849400feed836f5ebacbf975e035fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
 * Copyright (c) 2008 Carsten Schlote <c.schlote@konzeptpark.de>
 * See file CREDITS for list of people who contributed to this project.
 *
 * This file is part of U-Boot V2.
 *
 * U-Boot V2 is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * U-Boot V2 is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with U-Boot V2.  If not, see <http://www.gnu.org/licenses/>.
 */

/** @file
 *  Implements a first in, first out linked list
 *
 * @note Simple selfcontaining basic code
 * @todo Replace by u-boot standard list functions
 */
#include <linux/types.h>
#include <proc/net/queue.h>

/** Initialize the specified queue to an empty state
 *
 * @param[in]
 *  q   Pointer to queue structure
 */
void queue_init(QUEUE *q)
{
    q->head = NULL;
}

/**
 * Check for an empty queue
 *
 * @param[in] q    Pointer to queue structure
 * @return
 *  1 if Queue is empty
 *  0 otherwise
 */
int
queue_isempty(QUEUE *q)
{
    return (q->head == NULL);
}

/**
 * Add an item to the end of the queue
 *
 * @param[in] q     Pointer to queue structure
 * @param[in] node  New node to add to the queue
 */
void queue_add(QUEUE *q, QNODE *node)
{
    if (queue_isempty(q))
    {
        q->head = q->tail = node;
    }
    else
    {
        q->tail->next = node;
        q->tail = node;
    }

    node->next = NULL;
}

/** Remove and return first (oldest) entry from the specified queue
 *
 * @param[in] q     Pointer to queue structure
 * @return
 *  Node at head of queue - NULL if queue is empty
 */
QNODE*
queue_remove(QUEUE *q)
{
    QNODE *oldest;

    if (queue_isempty(q))
        return NULL;

    oldest = q->head;
    q->head = oldest->next;
    return oldest;
}

/** Peek into the queue and return pointer to first (oldest) entry.
 *
 * The queue is not modified
 *
 * @param[in] q       Pointer to queue structure
 * @return
 *  Node at head of queue - NULL if queue is empty
 */
QNODE*
queue_peek(QUEUE *q)
{
    return q->head;
}

/** Move entire contents of one queue to the other
 *
 * @param[in] src     Pointer to source queue
 * @param[in] dst     Pointer to destination queue
 */
void
queue_move(QUEUE *dst, QUEUE *src)
{
    if (queue_isempty(src))
        return;

    if (queue_isempty(dst))
        dst->head = src->head;
    else
        dst->tail->next = src->head;

    dst->tail = src->tail;
    src->head = NULL;
    return;
}