Re: [PATCH] vfs: simply the code logic

From: Matthew Wilcox
Date: Sat Jul 21 2012 - 12:34:50 EST


On Sat, Jul 21, 2012 at 11:38:19PM +0800, zwu.kernel@xxxxxxxxx wrote:
> if (offset >= 0 && offset <= size) {
> - if (offset != file->f_pos) {
> - file->f_pos = offset;
> - }
> - retval = offset;
> + retval = file->f_pos = offset;
> }

But now you're writing to f_pos unconditionally. That may cause
cacheline bouncing. NAK.

Plus, you're now using a less-well-known feature of C, so while it's fewer
lines of code, it's not necessarily a simplification.

--
Matthew Wilcox Intel Open Source Technology Centre
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours. We can't possibly take such
a retrograde step."
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/