diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2013-07-14 21:50:32 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-07-14 21:55:01 -0400 |
commit | 8c6ffba0eddc8c110dbf444f51354ce42069abfc (patch) | |
tree | 1055a1cfdf7bd79d6e2c4b969d412780ff2d2209 /fs/btrfs/inode.c | |
parent | 6e8b8726ad503214ba66e34aed69aff41de33489 (diff) |
PTR_RET is now PTR_ERR_OR_ZERO(): Replace most.
Sweep of the simple cases.
Cc: netdev@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r-- | fs/btrfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 6d1b93c8aafb..2987e1755d60 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c | |||
@@ -3166,7 +3166,7 @@ int btrfs_orphan_cleanup(struct btrfs_root *root) | |||
3166 | found_key.type = BTRFS_INODE_ITEM_KEY; | 3166 | found_key.type = BTRFS_INODE_ITEM_KEY; |
3167 | found_key.offset = 0; | 3167 | found_key.offset = 0; |
3168 | inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL); | 3168 | inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL); |
3169 | ret = PTR_RET(inode); | 3169 | ret = PTR_ERR_OR_ZERO(inode); |
3170 | if (ret && ret != -ESTALE) | 3170 | if (ret && ret != -ESTALE) |
3171 | goto out; | 3171 | goto out; |
3172 | 3172 | ||