]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: remove incorrect ASSERT in xfs_rename
authorEric Sandeen <sandeen@redhat.com>
Wed, 1 Dec 2021 17:31:03 +0000 (09:31 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Thu, 2 Dec 2021 01:27:48 +0000 (17:27 -0800)
commit7ff4211a4da817bbc2c5c94dab9b4459dda8aca8
tree729a5cd8272a39827acb0dbd29ef006dcf5039d8
parent06964e7f35a32a2c32cc605b60cd0ec83b5499b4
xfs: remove incorrect ASSERT in xfs_rename

This ASSERT in xfs_rename is a) incorrect, because
(RENAME_WHITEOUT|RENAME_NOREPLACE) is a valid combination, and
b) unnecessary, because actual invalid flag combinations are already
handled at the vfs level in do_renameat2() before we get called.
So, remove it.

Reported-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
fs/xfs/xfs_inode.c