Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b21dda43 authored by Miklos Szeredi's avatar Miklos Szeredi
Browse files

fuse: cleanup in fuse_notify_inval_...()



Small cleanup in fuse_notify_inval_inode() and
fuse_notify_inval_entry().

Signed-off-by: default avatarMiklos Szeredi <mszeredi@suse.cz>
parent abe94c75
Loading
Loading
Loading
Loading
+6 −13
Original line number Diff line number Diff line
@@ -865,13 +865,10 @@ static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,

	down_read(&fc->killsb);
	err = -ENOENT;
	if (!fc->sb)
		goto err_unlock;

	if (fc->sb) {
		err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
					       outarg.off, outarg.len);

err_unlock:
	}
	up_read(&fc->killsb);
	return err;

@@ -910,12 +907,8 @@ static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,

	down_read(&fc->killsb);
	err = -ENOENT;
	if (!fc->sb)
		goto err_unlock;

	if (fc->sb)
		err = fuse_reverse_inval_entry(fc->sb, outarg.parent, &name);

err_unlock:
	up_read(&fc->killsb);
	return err;