Re: [PATCH] s390x: fix condition to choose correct function

2016-02-28 Thread Steve French
merged into cifs-2.6.git Looks like alpha has a similar problem though On Wed, Feb 24, 2016 at 12:45 AM, Yadan Fan wrote: > This issue is involved from commit 02323db17e3a7 ("cifs: fix > cifs_uniqueid_to_ino_t not to ever return 0"), when BITS_PER_LONG > is 64 on s390x, the corresponding cifs_un

[PATCH] s390x: fix condition to choose correct function

2016-02-23 Thread Yadan Fan
This issue is involved from commit 02323db17e3a7 ("cifs: fix cifs_uniqueid_to_ino_t not to ever return 0"), when BITS_PER_LONG is 64 on s390x, the corresponding cifs_uniqueid_to_ino_t() function will cast 64-bit fileid to 32-bit by using (ino_t)fileid, because ino_t (typdefed __kernel_ino_t) is int