commit | a803b8067e317832d6a251c5b0486e36a4f81922 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Fri Jul 08 20:56:55 2011 -0400 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Sun Jul 17 23:20:29 2011 -0400 |
tree | db7a40edece0e43f870bc33776bb1a7e4fb13006 | |
parent | 1b71fe2efa31cd18c865db474a4cd473b6ab5281 [diff] |
fix exofs ->get_parent() NULL is not a possible return value for that method, TYVM... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/exofs/super.c b/fs/exofs/super.c index 06065bd..c57bedd 100644 --- a/fs/exofs/super.c +++ b/fs/exofs/super.c
@@ -913,7 +913,7 @@ unsigned long ino = exofs_parent_ino(child); if (!ino) - return NULL; + return ERR_PTR(-ESTALE); return d_obtain_alias(exofs_iget(child->d_inode->i_sb, ino)); }