mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-11 15:40:50 +00:00
cifs: Use ULL suffix for 64-bit constant
On 32-bit (e.g. with m68k-linux-gnu-gcc-4.1): fs/cifs/inode.c: In function ‘simple_hashstr’: fs/cifs/inode.c:713: warning: integer constant is too large for ‘long’ type Fixes: 7ea884c77e5c97f1 ("smb3: Fix root directory when server returns inode number of zero") Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Steve French <stfrench@microsoft.com> Reviewed-by: Aurelien Aptel <aaptel@suse.com>
This commit is contained in:
parent
c318e6c26c
commit
3995bbf53b
@ -710,7 +710,7 @@ cgfi_exit:
|
|||||||
/* Simple function to return a 64 bit hash of string. Rarely called */
|
/* Simple function to return a 64 bit hash of string. Rarely called */
|
||||||
static __u64 simple_hashstr(const char *str)
|
static __u64 simple_hashstr(const char *str)
|
||||||
{
|
{
|
||||||
const __u64 hash_mult = 1125899906842597L; /* a big enough prime */
|
const __u64 hash_mult = 1125899906842597ULL; /* a big enough prime */
|
||||||
__u64 hash = 0;
|
__u64 hash = 0;
|
||||||
|
|
||||||
while (*str)
|
while (*str)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user