aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netlabel.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-08-09 18:09:52 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-08-09 18:09:52 -0400
commit96784de59fb35077c2bb33c39328992b836d87d3 (patch)
treeeba46707fce39a89130872c58781630d745e356a /include/net/netlabel.h
parent0d10c2c170e3384dd63f40216d7af4673d5ebb50 (diff)
parent942ba3646543aeb3e5729c35d10ac43424bf0b68 (diff)
Merge branch 'stable-3.17' of git://git.infradead.org/users/pcmoore/selinux
Pull SElinux fixes from Paul Moore: "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" * 'stable-3.17' of git://git.infradead.org/users/pcmoore/selinux: selinux: remove unused variabled in the netport, netnode, and netif caches netlabel: fix the netlbl_catmap_setlong() dummy function
Diffstat (limited to 'include/net/netlabel.h')
-rw-r--r--include/net/netlabel.h8
1 files changed, 4 insertions, 4 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}
527static int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap, 527static 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}