[ALSA] usb-audio - allow USB MIDI quirks to specify endpoints explicitly
[linux-2.6/x86.git] / fs / xfs / xfs_behavior.c
blob16088e175ecc3dd5f99811e8408a0febb3135fcf
1 /*
2 * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
26 * http://www.sgi.com
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
33 #include "xfs.h"
36 * Source file used to associate/disassociate behaviors with virtualized
37 * objects. See xfs_behavior.h for more information about behaviors, etc.
39 * The implementation is split between functions in this file and macros
40 * in xfs_behavior.h.
44 * Insert a new behavior descriptor into a behavior chain.
46 * The behavior chain is ordered based on the 'position' number which
47 * lives in the first field of the ops vector (higher numbers first).
49 * Attemps to insert duplicate ops result in an EINVAL return code.
50 * Otherwise, return 0 to indicate success.
52 int
53 bhv_insert(bhv_head_t *bhp, bhv_desc_t *bdp)
55 bhv_desc_t *curdesc, *prev;
56 int position;
59 * Validate the position value of the new behavior.
61 position = BHV_POSITION(bdp);
62 ASSERT(position >= BHV_POSITION_BASE && position <= BHV_POSITION_TOP);
65 * Find location to insert behavior. Check for duplicates.
67 prev = NULL;
68 for (curdesc = bhp->bh_first;
69 curdesc != NULL;
70 curdesc = curdesc->bd_next) {
72 /* Check for duplication. */
73 if (curdesc->bd_ops == bdp->bd_ops) {
74 ASSERT(0);
75 return EINVAL;
78 /* Find correct position */
79 if (position >= BHV_POSITION(curdesc)) {
80 ASSERT(position != BHV_POSITION(curdesc));
81 break; /* found it */
84 prev = curdesc;
87 if (prev == NULL) {
88 /* insert at front of chain */
89 bdp->bd_next = bhp->bh_first;
90 bhp->bh_first = bdp;
91 } else {
92 /* insert after prev */
93 bdp->bd_next = prev->bd_next;
94 prev->bd_next = bdp;
97 return 0;
101 * Remove a behavior descriptor from a position in a behavior chain;
102 * the postition is guaranteed not to be the first position.
103 * Should only be called by the bhv_remove() macro.
105 void
106 bhv_remove_not_first(bhv_head_t *bhp, bhv_desc_t *bdp)
108 bhv_desc_t *curdesc, *prev;
110 ASSERT(bhp->bh_first != NULL);
111 ASSERT(bhp->bh_first->bd_next != NULL);
113 prev = bhp->bh_first;
114 for (curdesc = bhp->bh_first->bd_next;
115 curdesc != NULL;
116 curdesc = curdesc->bd_next) {
118 if (curdesc == bdp)
119 break; /* found it */
120 prev = curdesc;
123 ASSERT(curdesc == bdp);
124 prev->bd_next = bdp->bd_next; /* remove from after prev */
128 * Look for a specific ops vector on the specified behavior chain.
129 * Return the associated behavior descriptor. Or NULL, if not found.
131 bhv_desc_t *
132 bhv_lookup(bhv_head_t *bhp, void *ops)
134 bhv_desc_t *curdesc;
136 for (curdesc = bhp->bh_first;
137 curdesc != NULL;
138 curdesc = curdesc->bd_next) {
140 if (curdesc->bd_ops == ops)
141 return curdesc;
144 return NULL;
148 * Looks for the first behavior within a specified range of positions.
149 * Return the associated behavior descriptor. Or NULL, if none found.
151 bhv_desc_t *
152 bhv_lookup_range(bhv_head_t *bhp, int low, int high)
154 bhv_desc_t *curdesc;
156 for (curdesc = bhp->bh_first;
157 curdesc != NULL;
158 curdesc = curdesc->bd_next) {
160 int position = BHV_POSITION(curdesc);
162 if (position <= high) {
163 if (position >= low)
164 return curdesc;
165 return NULL;
169 return NULL;
173 * Return the base behavior in the chain, or NULL if the chain
174 * is empty.
176 * The caller has not read locked the behavior chain, so acquire the
177 * lock before traversing the chain.
179 bhv_desc_t *
180 bhv_base(bhv_head_t *bhp)
182 bhv_desc_t *curdesc;
184 for (curdesc = bhp->bh_first;
185 curdesc != NULL;
186 curdesc = curdesc->bd_next) {
188 if (curdesc->bd_next == NULL) {
189 return curdesc;
193 return NULL;
196 void
197 bhv_head_init(
198 bhv_head_t *bhp,
199 char *name)
201 bhp->bh_first = NULL;
204 void
205 bhv_insert_initial(
206 bhv_head_t *bhp,
207 bhv_desc_t *bdp)
209 ASSERT(bhp->bh_first == NULL);
210 (bhp)->bh_first = bdp;
213 void
214 bhv_head_destroy(
215 bhv_head_t *bhp)
217 ASSERT(bhp->bh_first == NULL);