diff options
author | 2017-08-14 13:14:36 -0400 | |
---|---|---|
committer | 2017-08-14 13:14:36 -0400 | |
commit | 1724c7c0c9494dcbdd7f630f29e1e8427cb231d1 (patch) | |
tree | d7c7ad032289cdf0633feee4bd6ec5800b666ca7 /fs/ext4/inline.c | |
parent | drm/atomic: Handle -EDEADLK with out-fences correctly (diff) | |
parent | Linux 4.13-rc5 (diff) | |
download | wireguard-linux-1724c7c0c9494dcbdd7f630f29e1e8427cb231d1.tar.xz wireguard-linux-1724c7c0c9494dcbdd7f630f29e1e8427cb231d1.zip |
Merge origin/master into drm-misc-fixes
Backmerge 4.13-rc5 into drm-misc-fixes, it was getting a
little stale.
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Diffstat (limited to 'fs/ext4/inline.c')
-rw-r--r-- | fs/ext4/inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c index 8d141c0c8ff9..28c5c3abddb3 100644 --- a/fs/ext4/inline.c +++ b/fs/ext4/inline.c @@ -61,7 +61,7 @@ static int get_max_inline_xattr_value_size(struct inode *inode, /* Compute min_offs. */ for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) { - if (!entry->e_value_block && entry->e_value_size) { + if (!entry->e_value_inum && entry->e_value_size) { size_t offs = le16_to_cpu(entry->e_value_offs); if (offs < min_offs) min_offs = offs; |