2 * This Cplant(TM) source code is the property of Sandia National
5 * This Cplant(TM) source code is copyrighted by Sandia National
8 * The redistribution of this Cplant(TM) source code is subject to the
9 * terms of the GNU Lesser General Public License
10 * (see cit/LGPL or http://www.gnu.org/licenses/lgpl.html)
12 * Cplant(TM) Copyright 1998-2003 Sandia Corporation.
13 * Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
14 * license for use of this work by or on behalf of the US Government.
15 * Export of this program may require a license from the United States
20 * This library is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU Lesser General Public
22 * License as published by the Free Software Foundation; either
23 * version 2.1 of the License, or (at your option) any later version.
25 * This library is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28 * Lesser General Public License for more details.
30 * You should have received a copy of the GNU Lesser General Public
31 * License along with this library; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 * Questions or comments about this library should be sent to:
37 * Sandia National Laboratories, New Mexico
39 * Albuquerque, NM 87185-1110
48 #include <sys/types.h>
50 #include <sys/queue.h>
57 * File system abstractipon support.
61 * The "file system switch".
63 static LIST_HEAD(, fsswent) fsswitch = { NULL };
66 * Lookup named entry in the switch.
69 _sysio_fssw_lookup(const char *name)
73 if (!fsswitch.lh_first)
76 fssw = fsswitch.lh_first;
78 if (strcmp(fssw->fssw_name, name) == 0)
80 fssw = fssw->fssw_link.le_next;
89 _sysio_fssw_register(const char *name, struct fssw_ops *ops)
93 fssw = _sysio_fssw_lookup(name);
97 fssw = malloc(sizeof(struct fsswent) + strlen(name) + 1);
100 fssw->fssw_name = (char *)fssw + sizeof(struct fsswent);
101 (void )strcpy((char *)fssw->fssw_name, name);
102 fssw->fssw_ops = *ops;
104 LIST_INSERT_HEAD(&fsswitch, fssw, fssw_link);
109 #ifdef ZERO_SUM_MEMORY
114 _sysio_fssw_shutdown()
116 struct fsswent *fssw;
118 while ((fssw = fsswitch.lh_first)) {
119 LIST_REMOVE(fssw, fssw_link);
126 * Allocate and initialize a new file system record.
129 _sysio_fs_new(struct filesys_ops *ops, unsigned flags, void *private)
133 fs = malloc(sizeof(struct filesys));
136 FS_INIT(fs, flags, ops, private);
141 * Dispose of given file system record.
144 _sysio_fs_gone(struct filesys *fs)
147 struct itable_entry *head;
153 head = &fs->fs_itbl[--n];
154 while (head->lh_first)
155 _sysio_i_gone(head->lh_first);
160 (*fs->fs_ops.fsop_gone)(fs);