ops_mfs.c revision 119679
1239313Sdim/*
2239313Sdim * Copyright (c) 1997-2003 Erez Zadok
3239313Sdim * Copyright (c) 1990 Jan-Simon Pendry
4239313Sdim * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5239313Sdim * Copyright (c) 1990 The Regents of the University of California.
6239313Sdim * All rights reserved.
7239313Sdim *
8239313Sdim * This code is derived from software contributed to Berkeley by
9239313Sdim * Jan-Simon Pendry at Imperial College, London.
10239313Sdim *
11239313Sdim * Redistribution and use in source and binary forms, with or without
12239313Sdim * modification, are permitted provided that the following conditions
13239313Sdim * are met:
14239313Sdim * 1. Redistributions of source code must retain the above copyright
15239313Sdim *    notice, this list of conditions and the following disclaimer.
16239313Sdim * 2. Redistributions in binary form must reproduce the above copyright
17239313Sdim *    notice, this list of conditions and the following disclaimer in the
18239313Sdim *    documentation and/or other materials provided with the distribution.
19239313Sdim * 3. All advertising materials mentioning features or use of this software
20239313Sdim *    must display the following acknowledgment:
21239313Sdim *      This product includes software developed by the University of
22239313Sdim *      California, Berkeley and its contributors.
23239313Sdim * 4. Neither the name of the University nor the names of its contributors
24239313Sdim *    may be used to endorse or promote products derived from this software
25239313Sdim *    without specific prior written permission.
26239313Sdim *
27239313Sdim * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28239313Sdim * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29239313Sdim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30239313Sdim * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31239313Sdim * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32239313Sdim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33239313Sdim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34239313Sdim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35239313Sdim * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36239313Sdim * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37239313Sdim * SUCH DAMAGE.
38239313Sdim *
39239313Sdim *      %W% (Berkeley) %G%
40239313Sdim *
41239313Sdim * $Id: ops_mfs.c,v 1.3.2.3 2002/12/27 22:44:41 ezk Exp $
42239313Sdim *
43239313Sdim */
44239313Sdim
45239313Sdim/*
46239313Sdim * Memory file system (RAM filesystem)
47245431Sdim */
48239313Sdim
49239313Sdim#ifdef HAVE_CONFIG_H
50239313Sdim# include <config.h>
51239313Sdim#endif /* HAVE_CONFIG_H */
52239313Sdim#include <am_defs.h>
53239313Sdim#include <amd.h>
54239313Sdim
55239313Sdim/* FEEL FREE TO IMPLEMENT THIS... :-) */
56