CIFS: remove endian related sparse warning
Recent patch had an endian warning ie cifs: return ENAMETOOLONG for overlong names in cifs_open()/cifs_lookup() Signed-off-by: Steve French <smfrench@gmail.com> CC: Ronnie Sahlberg <lsahlber@redhat.com> CC: Stable <stable@vger.kernel.org> Acked-by: Pavel Shilovsky <pshilov@microsoft.com>
This commit is contained in:
parent
9e37b1784f
commit
6e3c1529c3
|
@ -205,7 +205,7 @@ check_name(struct dentry *direntry, struct cifs_tcon *tcon)
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (unlikely(direntry->d_name.len >
|
if (unlikely(direntry->d_name.len >
|
||||||
tcon->fsAttrInfo.MaxPathNameComponentLength))
|
le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength)))
|
||||||
return -ENAMETOOLONG;
|
return -ENAMETOOLONG;
|
||||||
|
|
||||||
if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) {
|
if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)) {
|
||||||
|
|
Loading…
Reference in New Issue