* [PATCH v2] iversion: make inode_cmp_iversion{+raw} return bool instead of s64 [not found] <20180130173126.2806-1-jlayton@kernel.org> @ 2018-01-30 20:32 ` Jeff Layton 2018-01-30 20:53 ` Linus Torvalds 0 siblings, 1 reply; 5+ messages in thread From: Jeff Layton @ 2018-01-30 20:32 UTC (permalink / raw) To: torvalds Cc: linux-fsdevel, linux-kernel, viro, linux-nfs, linux-ext4, tytso, linux-xfs, linux-btrfs, linux-integrity, trondmy From: Jeff Layton <jlayton@redhat.com> As Linus points out: The inode_cmp_iversion{+raw}() functions are pure and utter crap. Why? You say that they return 0/negative/positive, but they do so in a completely broken manner. They return that ternary value as the sequence number difference in a 's64', which means that if you actually care about that ternary value, and do the *sane* thing that the kernel-doc of the function implies is the right thing, you would do int cmp = inode_cmp_iversion(inode, old); if (cmp < 0 ... and as a result you get code that looks sane, but that doesn't actually *WORK* right. Since none of the callers actually care about the ternary value here, convert the inode_cmp_iversion{+raw} functions to just return a boolean value (false for matching, true for non-matching). This matches the existing use of these functions just fine, and makes it simple to convert them to return a ternary value in the future if we grow callers that need it. With this change we can also reimplement inode_cmp_iversion in a simpler way using inode_peek_iversion. Signed-off-by: Jeff Layton <jlayton@redhat.com> --- include/linux/iversion.h | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/include/linux/iversion.h b/include/linux/iversion.h index 858463fca249..3d2fd06495ec 100644 --- a/include/linux/iversion.h +++ b/include/linux/iversion.h @@ -309,13 +309,13 @@ inode_query_iversion(struct inode *inode) * @inode: inode to check * @old: old value to check against its i_version * - * Compare the current raw i_version counter with a previous one. Returns 0 if - * they are the same or non-zero if they are different. + * Compare the current raw i_version counter with a previous one. Returns false + * if they are the same or true if they are different. */ -static inline s64 +static inline bool inode_cmp_iversion_raw(const struct inode *inode, u64 old) { - return (s64)inode_peek_iversion_raw(inode) - (s64)old; + return inode_peek_iversion_raw(inode) != old; } /** @@ -323,19 +323,15 @@ inode_cmp_iversion_raw(const struct inode *inode, u64 old) * @inode: inode to check * @old: old value to check against its i_version * - * Compare an i_version counter with a previous one. Returns 0 if they are - * the same, a positive value if the one in the inode appears newer than @old, - * and a negative value if @old appears to be newer than the one in the - * inode. + * Compare an i_version counter with a previous one. Returns false if they are + * the same, and true if they are different. * * Note that we don't need to set the QUERIED flag in this case, as the value * in the inode is not being recorded for later use. */ - -static inline s64 +static inline bool inode_cmp_iversion(const struct inode *inode, u64 old) { - return (s64)(inode_peek_iversion_raw(inode) & ~I_VERSION_QUERIED) - - (s64)(old << I_VERSION_QUERIED_SHIFT); + return inode_peek_iversion(inode) != old; } #endif -- 2.14.3 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iversion: make inode_cmp_iversion{+raw} return bool instead of s64 2018-01-30 20:32 ` [PATCH v2] iversion: make inode_cmp_iversion{+raw} return bool instead of s64 Jeff Layton @ 2018-01-30 20:53 ` Linus Torvalds 2018-01-31 12:29 ` Jeff Layton 0 siblings, 1 reply; 5+ messages in thread From: Linus Torvalds @ 2018-01-30 20:53 UTC (permalink / raw) To: Jeff Layton Cc: linux-fsdevel, Linux Kernel Mailing List, Al Viro, Linux NFS Mailing List, linux-ext4, Theodore Ts'o, linux-xfs, linux-btrfs, linux-integrity, Trond Myklebust Ack. Should I expect this in a future pull request, or take it directly? There's no hurry about this, since none of the existing users of that function actually do anything but test the return value against zero, and nobody saves it into anything but a "bool" (which has magical casting properties and does not lose upper bits). Linus ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iversion: make inode_cmp_iversion{+raw} return bool instead of s64 2018-01-30 20:53 ` Linus Torvalds @ 2018-01-31 12:29 ` Jeff Layton 2018-01-31 16:46 ` Linus Torvalds 0 siblings, 1 reply; 5+ messages in thread From: Jeff Layton @ 2018-01-31 12:29 UTC (permalink / raw) To: Linus Torvalds Cc: linux-fsdevel, Linux Kernel Mailing List, Al Viro, Linux NFS Mailing List, linux-ext4, Theodore Ts'o, linux-xfs, linux-btrfs, linux-integrity, Trond Myklebust On Tue, 2018-01-30 at 12:53 -0800, Linus Torvalds wrote: > Ack. Should I expect this in a future pull request, or take it directly? > > There's no hurry about this, since none of the existing users of that > function actually do anything but test the return value against zero, > and nobody saves it into anything but a "bool" (which has magical > casting properties and does not lose upper bits). > > Linus Do you mind just taking it directly? I don't have anything else queued up for this cycle. Thanks, -- Jeff Layton <jlayton@kernel.org> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iversion: make inode_cmp_iversion{+raw} return bool instead of s64 2018-01-31 12:29 ` Jeff Layton @ 2018-01-31 16:46 ` Linus Torvalds 2018-01-31 17:55 ` Jeff Layton 0 siblings, 1 reply; 5+ messages in thread From: Linus Torvalds @ 2018-01-31 16:46 UTC (permalink / raw) To: Jeff Layton Cc: linux-fsdevel, Linux Kernel Mailing List, Al Viro, Linux NFS Mailing List, linux-ext4, Theodore Ts'o, linux-xfs, linux-btrfs, linux-integrity, Trond Myklebust On Wed, Jan 31, 2018 at 4:29 AM, Jeff Layton <jlayton@kernel.org> wrote: > > Do you mind just taking it directly? I don't have anything else queued > up for this cycle. Done. I wonder if "false for same, true for different" calling convention makes much sense, but it matches the old "0 for same" so obviously makes for a smaller diff. If it ever ends up confusing people, maybe the sense of that function should be reversed, and the name changed to something like "same_inode_version()" or something. But at least for now the situation seems ok to me, Linus ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] iversion: make inode_cmp_iversion{+raw} return bool instead of s64 2018-01-31 16:46 ` Linus Torvalds @ 2018-01-31 17:55 ` Jeff Layton 0 siblings, 0 replies; 5+ messages in thread From: Jeff Layton @ 2018-01-31 17:55 UTC (permalink / raw) To: Linus Torvalds Cc: linux-fsdevel, Linux Kernel Mailing List, Al Viro, Linux NFS Mailing List, linux-ext4, Theodore Ts'o, linux-xfs, linux-btrfs, linux-integrity, Trond Myklebust, GoffredoBaroncelli On Wed, 2018-01-31 at 08:46 -0800, Linus Torvalds wrote: > On Wed, Jan 31, 2018 at 4:29 AM, Jeff Layton <jlayton@kernel.org> wrote: > > > > Do you mind just taking it directly? I don't have anything else queued > > up for this cycle. > > Done. > Thanks...and also many thanks for spotting the original issue. I agree that this makes it much harder for the callers to get things wrong (and is probably much more efficient on some arches, as Ted pointed out). > I wonder if "false for same, true for different" calling convention > makes much sense, but it matches the old "0 for same" so obviously > makes for a smaller diff. > > If it ever ends up confusing people, maybe the sense of that function > should be reversed, and the name changed to something like > "same_inode_version()" or something. > > But at least for now the situation seems ok to me, > G. Baroncelli suggested changing the name too, so maybe we should just go ahead and do it. Let me think on what the best approach is and I may try to send another patch or PR before the end of the merge window. Cheers, -- Jeff Layton <jlayton@kernel.org> ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-01-31 17:55 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <20180130173126.2806-1-jlayton@kernel.org> 2018-01-30 20:32 ` [PATCH v2] iversion: make inode_cmp_iversion{+raw} return bool instead of s64 Jeff Layton 2018-01-30 20:53 ` Linus Torvalds 2018-01-31 12:29 ` Jeff Layton 2018-01-31 16:46 ` Linus Torvalds 2018-01-31 17:55 ` Jeff Layton
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).