nfsfh.c (5c34202b8bf942da411b6599668a76b07449bbfd) | nfsfh.c (a569425512253992cc64ebf8b6d00a62f986db3e) |
---|---|
1/* 2 * linux/fs/nfsd/nfsfh.c 3 * 4 * NFS server file handle treatment. 5 * 6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> 7 * Portions Copyright (C) 1999 G. Allen Morris III <gam3@acm.org> 8 * Extensive rewrite by Neil Brown <neilb@cse.unsw.edu.au> Southern-Spring 1999 9 * ... and again Southern-Winter 2001 to support export_operations 10 */ 11 12#include <linux/slab.h> 13#include <linux/fs.h> 14#include <linux/unistd.h> 15#include <linux/string.h> 16#include <linux/stat.h> 17#include <linux/dcache.h> | 1/* 2 * linux/fs/nfsd/nfsfh.c 3 * 4 * NFS server file handle treatment. 5 * 6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> 7 * Portions Copyright (C) 1999 G. Allen Morris III <gam3@acm.org> 8 * Extensive rewrite by Neil Brown <neilb@cse.unsw.edu.au> Southern-Spring 1999 9 * ... and again Southern-Winter 2001 to support export_operations 10 */ 11 12#include <linux/slab.h> 13#include <linux/fs.h> 14#include <linux/unistd.h> 15#include <linux/string.h> 16#include <linux/stat.h> 17#include <linux/dcache.h> |
18#include <linux/exportfs.h> |
|
18#include <linux/mount.h> 19 20#include <linux/sunrpc/clnt.h> 21#include <linux/sunrpc/svc.h> 22#include <linux/nfsd/nfsd.h> 23 24#define NFSDDBG_FACILITY NFSDDBG_FH 25 --- 552 unchanged lines hidden --- | 19#include <linux/mount.h> 20 21#include <linux/sunrpc/clnt.h> 22#include <linux/sunrpc/svc.h> 23#include <linux/nfsd/nfsd.h> 24 25#define NFSDDBG_FACILITY NFSDDBG_FH 26 --- 552 unchanged lines hidden --- |