* [GIT PULL] SELinux/NetLabel fixes for 3.17
@ 2014-08-08 1:15 Paul Moore
2014-08-08 2:53 ` Stephen Rothwell
0 siblings, 1 reply; 3+ messages in thread
From: Paul Moore @ 2014-08-08 1:15 UTC (permalink / raw)
To: linux-kernel; +Cc: netdev, linux-security-module, selinux
Hello All,
Two small patches to fix a couple of build warnings in SELinux and NetLabel.
The patches are obvious enough that I don't think any additional explanation
is necessary, but it basically boils down to the usual: I was stupid, and
these patches fix some of the stupid.
Both patches were posted earlier this week to the SELinux list, and that is
where they sat as I didn't think there were noteworthy enough to go upstream
at this point in time, but DaveM would rather see them upstream now so who am
I to argue. As the patches are both very small, I'm including the combines
changes with this pull request in case anyone wants to scrutinize them any
further.
Enjoy,
-Paul
--
The following changes since commit 4fbe63d1c773cceef3fe1f6ed0c9c268f4f24760:
netlabel: shorter names for the NetLabel catmap funcs/structs
(2014-08-01 11:17:37 -0400)
are available in the git repository at:
git://git.infradead.org/users/pcmoore/selinux stable-3.17
for you to fetch changes up to 942ba3646543aeb3e5729c35d10ac43424bf0b68:
selinux: remove unused variabled in the netport, netnode, and netif
caches (2014-08-07 20:55:30 -0400)
----------------------------------------------------------------
Paul Moore (2):
netlabel: fix the netlbl_catmap_setlong() dummy function
selinux: remove unused variabled in the netport, netnode, and netif
caches
include/net/netlabel.h | 8 ++++----
security/selinux/netif.c | 4 ++--
security/selinux/netnode.c | 3 +--
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 a4fc39b..7b5a300 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,
{
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;
}
diff --git a/security/selinux/netif.c b/security/selinux/netif.c
index 3c3de4c..50ce177 100644
--- a/security/selinux/netif.c
+++ b/security/selinux/netif.c
@@ -272,7 +272,7 @@ static struct notifier_block sel_netif_netdev_notifier = {
static __init int sel_netif_init(void)
{
- int i, err;
+ int i;
if (!selinux_enabled)
return 0;
@@ -282,7 +282,7 @@ static __init int sel_netif_init(void)
register_netdevice_notifier(&sel_netif_netdev_notifier);
- return err;
+ return 0;
}
__initcall(sel_netif_init);
diff --git a/security/selinux/netnode.c b/security/selinux/netnode.c
index ddf3152..da923f8 100644
--- a/security/selinux/netnode.c
+++ b/security/selinux/netnode.c
@@ -303,7 +303,6 @@ void sel_netnode_flush(void)
static __init int sel_netnode_init(void)
{
int iter;
- int ret;
if (!selinux_enabled)
return 0;
@@ -313,7 +312,7 @@ static __init int sel_netnode_init(void)
sel_netnode_hash[iter].size = 0;
}
- return ret;
+ return 0;
}
__initcall(sel_netnode_init);
diff --git a/security/selinux/netport.c b/security/selinux/netport.c
index 73ac678..3311cc3 100644
--- a/security/selinux/netport.c
+++ b/security/selinux/netport.c
@@ -237,7 +237,6 @@ void sel_netport_flush(void)
static __init int sel_netport_init(void)
{
int iter;
- int ret;
if (!selinux_enabled)
return 0;
@@ -247,7 +246,7 @@ static __init int sel_netport_init(void)
sel_netport_hash[iter].size = 0;
}
- return ret;
+ return 0;
}
__initcall(sel_netport_init);
--
paul moore
security and virtualization @ redhat
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [GIT PULL] SELinux/NetLabel fixes for 3.17
2014-08-08 1:15 [GIT PULL] SELinux/NetLabel fixes for 3.17 Paul Moore
@ 2014-08-08 2:53 ` Stephen Rothwell
2014-08-08 13:03 ` Paul Moore
0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2014-08-08 2:53 UTC (permalink / raw)
To: Paul Moore; +Cc: linux-kernel, netdev, linux-security-module, selinux
[-- Attachment #1: Type: text/plain, Size: 230 bytes --]
Hi Paul,
I am not sure who this was directed at, but if you want Linus to pull
these (and that would be good) you need to send this to him explicitly.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GIT PULL] SELinux/NetLabel fixes for 3.17
2014-08-08 2:53 ` Stephen Rothwell
@ 2014-08-08 13:03 ` Paul Moore
0 siblings, 0 replies; 3+ messages in thread
From: Paul Moore @ 2014-08-08 13:03 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: linux-kernel, netdev, linux-security-module, selinux
On Friday, August 08, 2014 12:53:34 PM Stephen Rothwell wrote:
> Hi Paul,
>
> I am not sure who this was directed at, but if you want Linus to pull
> these (and that would be good) you need to send this to him explicitly.
Hi Stephen,
Thanks for the heads-up. I'll resend the request.
-Paul
--
paul moore
www.paul-moore.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-08-08 13:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-08 1:15 [GIT PULL] SELinux/NetLabel fixes for 3.17 Paul Moore
2014-08-08 2:53 ` Stephen Rothwell
2014-08-08 13:03 ` Paul Moore
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).