From: Christoph Hellwig Date: Fri, 17 Nov 2017 04:11:35 +0000 (-0600) Subject: xfs: remove a superflous assignment in xfs_iext_remove_node X-Git-Tag: v4.15.0-rc1~143^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3c65043be47105726f6bc30b98f489e3f7a00c3;p=thirdparty%2Fxfsprogs-dev.git xfs: remove a superflous assignment in xfs_iext_remove_node Source kernel commit: f1be313697f2d2ee925bd559a53d58312dec8b5a Reported-by: Brian Foster Signed-off-by: Christoph Hellwig Reviewed-by: Brian Foster Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- diff --git a/libxfs/xfs_iext_tree.c b/libxfs/xfs_iext_tree.c index 5df0bb327..8e38500fa 100644 --- a/libxfs/xfs_iext_tree.c +++ b/libxfs/xfs_iext_tree.c @@ -751,7 +751,6 @@ again: node = xfs_iext_rebalance_node(parent, &pos, node, nr_entries); if (node) { - offset = node->keys[0]; victim = node; node = parent; goto again;