summaryrefslogtreecommitdiffstats
path: root/fs/configfs
diff options
context:
space:
mode:
authorJoel Becker2008-07-18 01:54:19 +0200
committerMark Fasheh2008-08-01 01:21:12 +0200
commitdacdd0e04768da1fd2b24a6ee274c582b40d0c5b (patch)
tree45b559bb14e9f968943bbc98b23b1489823898e0 /fs/configfs
parentFix off-by-one error in iov_iter_advance() (diff)
downloadkernel-qcow2-linux-dacdd0e04768da1fd2b24a6ee274c582b40d0c5b.tar.gz
kernel-qcow2-linux-dacdd0e04768da1fd2b24a6ee274c582b40d0c5b.tar.xz
kernel-qcow2-linux-dacdd0e04768da1fd2b24a6ee274c582b40d0c5b.zip
[PATCH] configfs: Include linux/err.h in linux/configfs.h
We now use PTR_ERR() in the ->make_item() and ->make_group() operations. Folks including configfs.h need err.h. Signed-off-by: Joel Becker <joel.becker@oracle.com> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/configfs')
-rw-r--r--fs/configfs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c
index 179589be063a..2495f23e33f4 100644
--- a/fs/configfs/dir.c
+++ b/fs/configfs/dir.c
@@ -1094,7 +1094,7 @@ static int configfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
kfree(name);
if (ret) {
/*
- * If item == NULL, then link_obj() was never called.
+ * If ret != 0, then link_obj() was never called.
* There are no extra references to clean up.
*/
goto out_put;