diff options
| -rw-r--r-- | include/net/netlabel.h | 8 | ||||
| -rw-r--r-- | security/selinux/netif.c | 4 | ||||
| -rw-r--r-- | security/selinux/netnode.c | 3 | ||||
| -rw-r--r-- | security/selinux/netport.c | 3 |
4 files changed, 8 insertions, 10 deletions
diff --git a/include/net/netlabel.h b/include/net/netlabel.h index a4fc39bb3e4f..7b5a300de7f5 100644 --- a/include/net/netlabel.h +++ b/include/net/netlabel.h | |||
| @@ -524,10 +524,10 @@ static inline int netlbl_catmap_setrng(struct netlbl_lsm_catmap **catmap, | |||
| 524 | { | 524 | { |
| 525 | return 0; | 525 | return 0; |
| 526 | } | 526 | } |
| 527 | static int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap, | 527 | static inline int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap, |
| 528 | u32 offset, | 528 | u32 offset, |
| 529 | unsigned long bitmap, | 529 | unsigned long bitmap, |
| 530 | gfp_t flags) | 530 | gfp_t flags) |
| 531 | { | 531 | { |
| 532 | return 0; | 532 | return 0; |
| 533 | } | 533 | } |
diff --git a/security/selinux/netif.c b/security/selinux/netif.c index 3c3de4ca0ebc..50ce177d71a0 100644 --- a/security/selinux/netif.c +++ b/security/selinux/netif.c | |||
| @@ -272,7 +272,7 @@ static struct notifier_block sel_netif_netdev_notifier = { | |||
| 272 | 272 | ||
| 273 | static __init int sel_netif_init(void) | 273 | static __init int sel_netif_init(void) |
| 274 | { | 274 | { |
| 275 | int i, err; | 275 | int i; |
| 276 | 276 | ||
| 277 | if (!selinux_enabled) | 277 | if (!selinux_enabled) |
| 278 | return 0; | 278 | return 0; |
| @@ -282,7 +282,7 @@ static __init int sel_netif_init(void) | |||
| 282 | 282 | ||
| 283 | register_netdevice_notifier(&sel_netif_netdev_notifier); | 283 | register_netdevice_notifier(&sel_netif_netdev_notifier); |
| 284 | 284 | ||
| 285 | return err; | 285 | return 0; |
| 286 | } | 286 | } |
| 287 | 287 | ||
| 288 | __initcall(sel_netif_init); | 288 | __initcall(sel_netif_init); |
diff --git a/security/selinux/netnode.c b/security/selinux/netnode.c index ddf315260839..da923f89d2a9 100644 --- a/security/selinux/netnode.c +++ b/security/selinux/netnode.c | |||
| @@ -303,7 +303,6 @@ void sel_netnode_flush(void) | |||
| 303 | static __init int sel_netnode_init(void) | 303 | static __init int sel_netnode_init(void) |
| 304 | { | 304 | { |
| 305 | int iter; | 305 | int iter; |
| 306 | int ret; | ||
| 307 | 306 | ||
| 308 | if (!selinux_enabled) | 307 | if (!selinux_enabled) |
| 309 | return 0; | 308 | return 0; |
| @@ -313,7 +312,7 @@ static __init int sel_netnode_init(void) | |||
| 313 | sel_netnode_hash[iter].size = 0; | 312 | sel_netnode_hash[iter].size = 0; |
| 314 | } | 313 | } |
| 315 | 314 | ||
| 316 | return ret; | 315 | return 0; |
| 317 | } | 316 | } |
| 318 | 317 | ||
| 319 | __initcall(sel_netnode_init); | 318 | __initcall(sel_netnode_init); |
diff --git a/security/selinux/netport.c b/security/selinux/netport.c index 73ac6784d091..3311cc393cb4 100644 --- a/security/selinux/netport.c +++ b/security/selinux/netport.c | |||
| @@ -237,7 +237,6 @@ void sel_netport_flush(void) | |||
| 237 | static __init int sel_netport_init(void) | 237 | static __init int sel_netport_init(void) |
| 238 | { | 238 | { |
| 239 | int iter; | 239 | int iter; |
| 240 | int ret; | ||
| 241 | 240 | ||
| 242 | if (!selinux_enabled) | 241 | if (!selinux_enabled) |
| 243 | return 0; | 242 | return 0; |
| @@ -247,7 +246,7 @@ static __init int sel_netport_init(void) | |||
| 247 | sel_netport_hash[iter].size = 0; | 246 | sel_netport_hash[iter].size = 0; |
| 248 | } | 247 | } |
| 249 | 248 | ||
| 250 | return ret; | 249 | return 0; |
| 251 | } | 250 | } |
| 252 | 251 | ||
| 253 | __initcall(sel_netport_init); | 252 | __initcall(sel_netport_init); |
