On Mon, Feb 08, 2016 at 02:45:54PM -0500, Trond Myklebust wrote: > I'll bet it's this: > > static inline loff_t nfs_size_to_loff_t(__u64 size) > { > if (size > (__u64) OFFSET_MAX - 1) > return OFFSET_MAX - 1; > return (loff_t) size; > } > > Should be "return OFFSET_MAX", no? Yes. That (or rather a slighty nicer version using min_t) fixes the test case for me. -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html