diff options
| author | Anton Altaparmakov <aia21@cantab.net> | 2005-07-13 18:09:23 -0400 |
|---|---|---|
| committer | Anton Altaparmakov <aia21@cantab.net> | 2005-07-13 18:09:23 -0400 |
| commit | c514720716c7b109ff980f8b3cb93f9af872c91c (patch) | |
| tree | 490a9578995705de69712893a190b67651bddc56 /include/linux/fs.h | |
| parent | 07929dcb963786512c760dd3ecd148d89295e7e5 (diff) | |
| parent | 1e279dd855d15b72364b4103f872d67d8592647e (diff) | |
Automatic merge with /usr/src/ntfs-2.6.git.
Diffstat (limited to 'include/linux/fs.h')
| -rw-r--r-- | include/linux/fs.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 047bde30836a..0f53e0124941 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -474,6 +474,11 @@ struct inode { | |||
| 474 | struct dnotify_struct *i_dnotify; /* for directory notifications */ | 474 | struct dnotify_struct *i_dnotify; /* for directory notifications */ |
| 475 | #endif | 475 | #endif |
| 476 | 476 | ||
| 477 | #ifdef CONFIG_INOTIFY | ||
| 478 | struct list_head inotify_watches; /* watches on this inode */ | ||
| 479 | struct semaphore inotify_sem; /* protects the watches list */ | ||
| 480 | #endif | ||
| 481 | |||
| 477 | unsigned long i_state; | 482 | unsigned long i_state; |
| 478 | unsigned long dirtied_when; /* jiffies of first dirtying */ | 483 | unsigned long dirtied_when; /* jiffies of first dirtying */ |
| 479 | 484 | ||
| @@ -1393,7 +1398,6 @@ extern void emergency_remount(void); | |||
| 1393 | extern int do_remount_sb(struct super_block *sb, int flags, | 1398 | extern int do_remount_sb(struct super_block *sb, int flags, |
| 1394 | void *data, int force); | 1399 | void *data, int force); |
| 1395 | extern sector_t bmap(struct inode *, sector_t); | 1400 | extern sector_t bmap(struct inode *, sector_t); |
| 1396 | extern int setattr_mask(unsigned int); | ||
| 1397 | extern int notify_change(struct dentry *, struct iattr *); | 1401 | extern int notify_change(struct dentry *, struct iattr *); |
| 1398 | extern int permission(struct inode *, int, struct nameidata *); | 1402 | extern int permission(struct inode *, int, struct nameidata *); |
| 1399 | extern int generic_permission(struct inode *, int, | 1403 | extern int generic_permission(struct inode *, int, |
| @@ -1435,7 +1439,11 @@ extern struct inode * igrab(struct inode *); | |||
| 1435 | extern ino_t iunique(struct super_block *, ino_t); | 1439 | extern ino_t iunique(struct super_block *, ino_t); |
| 1436 | extern int inode_needs_sync(struct inode *inode); | 1440 | extern int inode_needs_sync(struct inode *inode); |
| 1437 | extern void generic_delete_inode(struct inode *inode); | 1441 | extern void generic_delete_inode(struct inode *inode); |
| 1442 | extern void generic_drop_inode(struct inode *inode); | ||
| 1438 | 1443 | ||
| 1444 | extern struct inode *ilookup5_nowait(struct super_block *sb, | ||
| 1445 | unsigned long hashval, int (*test)(struct inode *, void *), | ||
| 1446 | void *data); | ||
| 1439 | extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval, | 1447 | extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval, |
| 1440 | int (*test)(struct inode *, void *), void *data); | 1448 | int (*test)(struct inode *, void *), void *data); |
| 1441 | extern struct inode *ilookup(struct super_block *sb, unsigned long ino); | 1449 | extern struct inode *ilookup(struct super_block *sb, unsigned long ino); |
