Hi all, Today's linux-next merge of the nfsd tree got a conflict in Documentation/filesystems/Locking between commit b83be6f20a0e468f715b14225c9f897538dfe5ad ("update Documentation/filesystems/Locking") from Linus' tree and commit e63eb9375089f9d2041305d04c3f33a194e0e014 ("nfsd4: eliminate lease delete callback") from the nfsd tree. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc Documentation/filesystems/Locking index 33fa3e5,075be12..0000000 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking @@@ -337,22 -327,17 +337,20 @@@ fl_release_private: maybe n prototypes: int (*fl_compare_owner)(struct file_lock *, struct file_lock *); void (*fl_notify)(struct file_lock *); /* unblock callback */ + int (*fl_grant)(struct file_lock *, struct file_lock *, int); - void (*fl_release_private)(struct file_lock *); void (*fl_break)(struct file_lock *); /* break_lease callback */ + int (*fl_mylease)(struct file_lock *, struct file_lock *); + int (*fl_change)(struct file_lock **, int); locking rules: - BKL may block -fl_compare_owner: yes no -fl_notify: yes no -fl_break: yes no - - Currently only NFSD and NLM provide instances of this class. None of the -them block. If you have out-of-tree instances - please, show up. Locking -in that area will change. + file_lock_lock may block +fl_compare_owner: yes no +fl_notify: yes no +fl_grant: no no - fl_release_private: maybe no +fl_break: yes no +fl_mylease: yes no +fl_change yes no + --------------------------- buffer_head ----------------------------------- prototypes: void (*b_end_io)(struct buffer_head *bh, int uptodate); -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html