lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1423050064-25087-1-git-send-email-sassmann@kpanic.de> Date: Wed, 4 Feb 2015 12:41:04 +0100 From: Stefan Assmann <sassmann@...nic.de> To: netdev@...r.kernel.org Cc: davem@...emloft.net, e1000-devel@...ts.sourceforge.net, jeffrey.t.kirsher@...el.com, sassmann@...nic.de Subject: [PATCH net-next] i40e: mark constant as ULL This avoids a compile error on 32bit. Signed-off-by: Stefan Assmann <sassmann@...nic.de> --- drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c b/drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c index 4627588..f221ace 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c +++ b/drivers/net/ethernet/intel/i40e/i40e_lan_hmc.c @@ -908,7 +908,7 @@ static void i40e_write_qword(u8 *hmc_bits, if (ce_info->width < 64) mask = ((u64)1 << ce_info->width) - 1; else - mask = 0xFFFFFFFFFFFFFFFF; + mask = 0xFFFFFFFFFFFFFFFFULL; /* don't swizzle the bits until after the mask because the mask bits * will be in a different bit position on big endian machines -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists