[GFS2] Add a comment in ops_export.c
authorSteven Whitehouse <swhiteho@redhat.com>
Tue, 5 Sep 2006 19:56:17 +0000 (15:56 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Tue, 5 Sep 2006 19:56:17 +0000 (15:56 -0400)
Ass a comment explaining the slightly odd construct used to
pass error values back.

Cc: Jan Engelhardt <jengelh@linux01.gwdg.de>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/ops_export.c

index 4b8c6a9..470e882 100644 (file)
@@ -182,6 +182,10 @@ static struct dentry *gfs2_get_parent(struct dentry *child)
 
        if (!inode)
                return ERR_PTR(-ENOENT);
+       /*
+        * In case of an error, @inode carries the error value, and we
+        * have to return that as a(n invalid) pointer to dentry.
+        */
        if (IS_ERR(inode))
                return ERR_PTR(PTR_ERR(inode));