summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/volumes.c
diff options
context:
space:
mode:
authorAl Viro2014-12-14 08:59:17 +0100
committerAl Viro2014-12-17 12:43:56 +0100
commit98af592f5bf863137ae2872ed03720f02fbc82c3 (patch)
tree8d38b5f2becd7cbce160a2d7ccdafc2082c75159 /fs/btrfs/volumes.c
parentMerge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir... (diff)
downloadkernel-qcow2-linux-98af592f5bf863137ae2872ed03720f02fbc82c3.tar.gz
kernel-qcow2-linux-98af592f5bf863137ae2872ed03720f02fbc82c3.tar.xz
kernel-qcow2-linux-98af592f5bf863137ae2872ed03720f02fbc82c3.zip
btrfs: filp_open() returns ERR_PTR() on failure, not NULL...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r--fs/btrfs/volumes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 0144790e296e..50c5a8762aed 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -1485,7 +1485,7 @@ static void update_dev_time(char *path_name)
struct file *filp;
filp = filp_open(path_name, O_RDWR, 0);
- if (!filp)
+ if (IS_ERR(filp))
return;
file_update_time(filp);
filp_close(filp, NULL);