Re: [PATCH v4 09/10] ntfs: add non-resident WOF decompression
Namjae Jeon <[email protected]>
| Newsgroups | dev.linux.lists.ntfs |
|---|---|
| Message-ID | <CAKYAXd9COOLvx6ypsRW+9dZXvUj0-=1njHhdTgmSiw5JDLGJbQ@mail.gmail.com> |
> @@ -905,8 +925,10 @@ static int ntfs_setxattr(const struct xattr_handler *handler,
> mutex_unlock(&ni->mrec_lock);
>
> out:
> - inode_set_ctime_current(inode);
> - mark_inode_dirty(inode);
> + if (!err) {
> + inode_set_ctime_current(inode);
> + mark_inode_dirty(inode);
> + }
> return err;
> }
I can not apply this patch because of this change. It looks like this
code bled in from another ntfs patch. I'll remove this code block and
apply this patch.
Thanks.