diff options
Diffstat (limited to 'Documentation/filesystems/porting')
-rw-r--r-- | Documentation/filesystems/porting | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/filesystems/porting b/Documentation/filesystems/porting index 68f1c9106573..f24d1b833957 100644 --- a/Documentation/filesystems/porting +++ b/Documentation/filesystems/porting | |||
@@ -500,3 +500,7 @@ in your dentry operations instead. | |||
500 | dentry, it does not get nameidata at all and it gets called only when cookie | 500 | dentry, it does not get nameidata at all and it gets called only when cookie |
501 | is non-NULL. Note that link body isn't available anymore, so if you need it, | 501 | is non-NULL. Note that link body isn't available anymore, so if you need it, |
502 | store it as cookie. | 502 | store it as cookie. |
503 | -- | ||
504 | [mandatory] | ||
505 | __fd_install() & fd_install() can now sleep. Callers should not | ||
506 | hold a spinlock or other resources that do not allow a schedule. | ||