On Mon, Jul 20, 2015 at 09:57:46AM -0400, Jan Tulak wrote: > Hi all, > > I found these useless bits of code in xfsprogs: > > repair/incore_ino.c:575-576: > if (ino_rec->ino_startnum == 0) > ino_rec = ino_rec; > > This one is pretty clear. It is there since 2001 (commit 2bd0ea187 > by nathans@xxxxxxx, who didn't wrote here since 2006, so I find nathans@xxxxxxxxxx will get you that same person ;) > CC-ing him useless). It looks like a forgotten code which doesn't > do anything, but I ask in case it is a hidden bug. Who knows? It came from the Irix code base by the look of it, so maybe it was just working around a compiler bug? > And: > > db/check.c:3035, 3037: Always true expression, as be32_to_cpu() > translates to __u32 type and unsigned can't be less than zero. > > be32_to_cpu(free->hdr.nvalid) < 0 || The old endian conversion stuff in userspace needed that. When we converted it to the same as the kernel macros, we didn't change any of the logic. gcc isn't warning about this on x86-64, so in general signed/unsigned stuff goes unnoticed. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs