aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2006-03-25 12:18:27 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-25 12:18:27 -0500
commit53846a21c1766326bb14ce8ab6e997a0c120675d (patch)
tree37b04485e29844b4e734479181276a2f4d2447e4 /include/linux/fs.h
parent2e9abdd9bad485970b37cd53a82f92702054984c (diff)
parent1ebbe2b20091d306453a5cf480a87e6cd28ae76f (diff)
Merge git://git.linux-nfs.org/pub/linux/nfs-2.6
* git://git.linux-nfs.org/pub/linux/nfs-2.6: (103 commits) SUNRPC,RPCSEC_GSS: spkm3--fix config dependencies SUNRPC,RPCSEC_GSS: spkm3: import contexts using NID_cast5_cbc LOCKD: Make nlmsvc_traverse_shares return void LOCKD: nlmsvc_traverse_blocks return is unused SUNRPC,RPCSEC_GSS: fix krb5 sequence numbers. NFSv4: Dont list system.nfs4_acl for filesystems that don't support it. SUNRPC,RPCSEC_GSS: remove unnecessary kmalloc of a checksum SUNRPC: Ensure rpc_call_async() always calls tk_ops->rpc_release() SUNRPC: Fix memory barriers for req->rq_received NFS: Fix a race in nfs_sync_inode() NFS: Clean up nfs_flush_list() NFS: Fix a race with PG_private and nfs_release_page() NFSv4: Ensure the callback daemon flushes signals SUNRPC: Fix a 'Busy inodes' error in rpc_pipefs NFS, NLM: Allow blocking locks to respect signals NFS: Make nfs_fhget() return appropriate error values NFSv4: Fix an oops in nfs4_fill_super lockd: blocks should hold a reference to the nlm_file NFSv4: SETCLIENTID_CONFIRM should handle NFS4ERR_DELAY/NFS4ERR_RESOURCE NFSv4: Send the delegation stateid for SETATTR calls ...
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 21e8cf795c38..5adf32b90f36 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -678,7 +678,6 @@ extern spinlock_t files_lock;
678#define FL_POSIX 1 678#define FL_POSIX 1
679#define FL_FLOCK 2 679#define FL_FLOCK 2
680#define FL_ACCESS 8 /* not trying to lock, just looking */ 680#define FL_ACCESS 8 /* not trying to lock, just looking */
681#define FL_LOCKD 16 /* lock held by rpc.lockd */
682#define FL_LEASE 32 /* lease held on this file */ 681#define FL_LEASE 32 /* lease held on this file */
683#define FL_SLEEP 128 /* A blocking lock */ 682#define FL_SLEEP 128 /* A blocking lock */
684 683
@@ -742,8 +741,6 @@ struct file_lock {
742#define OFFT_OFFSET_MAX INT_LIMIT(off_t) 741#define OFFT_OFFSET_MAX INT_LIMIT(off_t)
743#endif 742#endif
744 743
745extern struct list_head file_lock_list;
746
747#include <linux/fcntl.h> 744#include <linux/fcntl.h>
748 745
749extern int fcntl_getlk(struct file *, struct flock __user *); 746extern int fcntl_getlk(struct file *, struct flock __user *);
@@ -765,10 +762,9 @@ extern void locks_init_lock(struct file_lock *);
765extern void locks_copy_lock(struct file_lock *, struct file_lock *); 762extern void locks_copy_lock(struct file_lock *, struct file_lock *);
766extern void locks_remove_posix(struct file *, fl_owner_t); 763extern void locks_remove_posix(struct file *, fl_owner_t);
767extern void locks_remove_flock(struct file *); 764extern void locks_remove_flock(struct file *);
768extern struct file_lock *posix_test_lock(struct file *, struct file_lock *); 765extern int posix_test_lock(struct file *, struct file_lock *, struct file_lock *);
769extern int posix_lock_file(struct file *, struct file_lock *); 766extern int posix_lock_file(struct file *, struct file_lock *);
770extern int posix_lock_file_wait(struct file *, struct file_lock *); 767extern int posix_lock_file_wait(struct file *, struct file_lock *);
771extern void posix_block_lock(struct file_lock *, struct file_lock *);
772extern int posix_unblock_lock(struct file *, struct file_lock *); 768extern int posix_unblock_lock(struct file *, struct file_lock *);
773extern int posix_locks_deadlock(struct file_lock *, struct file_lock *); 769extern int posix_locks_deadlock(struct file_lock *, struct file_lock *);
774extern int flock_lock_file_wait(struct file *filp, struct file_lock *fl); 770extern int flock_lock_file_wait(struct file *filp, struct file_lock *fl);
@@ -1097,6 +1093,7 @@ struct super_operations {
1097 void (*umount_begin) (struct super_block *); 1093 void (*umount_begin) (struct super_block *);
1098 1094
1099 int (*show_options)(struct seq_file *, struct vfsmount *); 1095 int (*show_options)(struct seq_file *, struct vfsmount *);
1096 int (*show_stats)(struct seq_file *, struct vfsmount *);
1100 1097
1101 ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); 1098 ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
1102 ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); 1099 ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);