[BACK]Return to interface.h CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / include / linux / nfsd

File: [Development] / linux-2.4-xfs / include / linux / nfsd / interface.h (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

/*
 * include/linux/nfsd/interface.h
 *
 * defines interface between nfsd and other bits of
 * the kernel.  Particularly filesystems (eventually).
 *
 * Copyright (C) 2000 Neil Brown <neilb@cse.unsw.edu.au>
 */

#ifndef LINUX_NFSD_INTERFACE_H
#define LINUX_NFSD_INTERFACE_H

#include <linux/config.h>

#ifndef CONFIG_NFSD
# ifdef CONFIG_MODULES

extern struct nfsd_linkage {
	long (*do_nfsservctl)(int cmd, void *argp, void *resp);
	struct module *owner;
} * nfsd_linkage;

# endif
#endif

#endif /* LINUX_NFSD_INTERFACE_H */