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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Mon, 11 Aug 2014 08:22:35 -0700 From: Stephen Hemminger <stephen@...workplumber.org> To: David Miller <davem@...emloft.net>, Paul Moore <paul@...l-moore.com> Cc: netdev@...r.kernel.org Subject: [PATCH net-next] netlabel: add missing inline to stub This stub like all the nearby stubs should be inline. This fixes a sparse warning about defined but never used. Signed-off-by: Stephen Hemminger <stephen@...workplumber.org> --- a/include/net/netlabel.h 2014-08-09 08:39:57.704179307 -0700 +++ b/include/net/netlabel.h 2014-08-11 07:54:01.058097452 -0700 @@ -524,10 +524,10 @@ static inline int netlbl_catmap_setrng(s { return 0; } -static int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap, - u32 offset, - unsigned long bitmap, - gfp_t flags) +static inline int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap, + u32 offset, + unsigned long bitmap, + gfp_t flags) { return 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