Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
e5e7ad44
Commit
e5e7ad44
authored
Oct 30, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.infradead.org/users/pcmoore/lblnet-2.6
parents
61e57448
47b676c0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
4 deletions
+29
-4
net/ipv4/cipso_ipv4.c
net/ipv4/cipso_ipv4.c
+4
-3
net/netlabel/netlabel_addrlist.c
net/netlabel/netlabel_addrlist.c
+2
-0
net/netlabel/netlabel_addrlist.h
net/netlabel/netlabel_addrlist.h
+22
-0
net/netlabel/netlabel_mgmt.c
net/netlabel/netlabel_mgmt.c
+1
-1
No files found.
net/ipv4/cipso_ipv4.c
View file @
e5e7ad44
...
@@ -2063,9 +2063,10 @@ int cipso_v4_skbuff_setattr(struct sk_buff *skb,
...
@@ -2063,9 +2063,10 @@ int cipso_v4_skbuff_setattr(struct sk_buff *skb,
u32
opt_len
;
u32
opt_len
;
int
len_delta
;
int
len_delta
;
buf_len
=
cipso_v4_genopt
(
buf
,
buf_len
,
doi_def
,
secattr
);
ret_val
=
cipso_v4_genopt
(
buf
,
buf_len
,
doi_def
,
secattr
);
if
(
buf_len
<
0
)
if
(
ret_val
<
0
)
return
buf_len
;
return
ret_val
;
buf_len
=
ret_val
;
opt_len
=
(
buf_len
+
3
)
&
~
3
;
opt_len
=
(
buf_len
+
3
)
&
~
3
;
/* we overwrite any existing options to ensure that we have enough
/* we overwrite any existing options to ensure that we have enough
...
...
net/netlabel/netlabel_addrlist.c
View file @
e5e7ad44
...
@@ -315,6 +315,7 @@ struct netlbl_af6list *netlbl_af6list_remove(const struct in6_addr *addr,
...
@@ -315,6 +315,7 @@ struct netlbl_af6list *netlbl_af6list_remove(const struct in6_addr *addr,
* Audit Helper Functions
* Audit Helper Functions
*/
*/
#ifdef CONFIG_AUDIT
/**
/**
* netlbl_af4list_audit_addr - Audit an IPv4 address
* netlbl_af4list_audit_addr - Audit an IPv4 address
* @audit_buf: audit buffer
* @audit_buf: audit buffer
...
@@ -386,3 +387,4 @@ void netlbl_af6list_audit_addr(struct audit_buffer *audit_buf,
...
@@ -386,3 +387,4 @@ void netlbl_af6list_audit_addr(struct audit_buffer *audit_buf,
}
}
}
}
#endif
/* IPv6 */
#endif
/* IPv6 */
#endif
/* CONFIG_AUDIT */
net/netlabel/netlabel_addrlist.h
View file @
e5e7ad44
...
@@ -120,9 +120,19 @@ struct netlbl_af4list *netlbl_af4list_search(__be32 addr,
...
@@ -120,9 +120,19 @@ struct netlbl_af4list *netlbl_af4list_search(__be32 addr,
struct
netlbl_af4list
*
netlbl_af4list_search_exact
(
__be32
addr
,
struct
netlbl_af4list
*
netlbl_af4list_search_exact
(
__be32
addr
,
__be32
mask
,
__be32
mask
,
struct
list_head
*
head
);
struct
list_head
*
head
);
#ifdef CONFIG_AUDIT
void
netlbl_af4list_audit_addr
(
struct
audit_buffer
*
audit_buf
,
void
netlbl_af4list_audit_addr
(
struct
audit_buffer
*
audit_buf
,
int
src
,
const
char
*
dev
,
int
src
,
const
char
*
dev
,
__be32
addr
,
__be32
mask
);
__be32
addr
,
__be32
mask
);
#else
static
inline
void
netlbl_af4list_audit_addr
(
struct
audit_buffer
*
audit_buf
,
int
src
,
const
char
*
dev
,
__be32
addr
,
__be32
mask
)
{
return
;
}
#endif
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
...
@@ -179,11 +189,23 @@ struct netlbl_af6list *netlbl_af6list_search(const struct in6_addr *addr,
...
@@ -179,11 +189,23 @@ struct netlbl_af6list *netlbl_af6list_search(const struct in6_addr *addr,
struct
netlbl_af6list
*
netlbl_af6list_search_exact
(
const
struct
in6_addr
*
addr
,
struct
netlbl_af6list
*
netlbl_af6list_search_exact
(
const
struct
in6_addr
*
addr
,
const
struct
in6_addr
*
mask
,
const
struct
in6_addr
*
mask
,
struct
list_head
*
head
);
struct
list_head
*
head
);
#ifdef CONFIG_AUDIT
void
netlbl_af6list_audit_addr
(
struct
audit_buffer
*
audit_buf
,
void
netlbl_af6list_audit_addr
(
struct
audit_buffer
*
audit_buf
,
int
src
,
int
src
,
const
char
*
dev
,
const
char
*
dev
,
const
struct
in6_addr
*
addr
,
const
struct
in6_addr
*
addr
,
const
struct
in6_addr
*
mask
);
const
struct
in6_addr
*
mask
);
#else
static
inline
void
netlbl_af6list_audit_addr
(
struct
audit_buffer
*
audit_buf
,
int
src
,
const
char
*
dev
,
const
struct
in6_addr
*
addr
,
const
struct
in6_addr
*
mask
)
{
return
;
}
#endif
#endif
/* IPV6 */
#endif
/* IPV6 */
#endif
#endif
net/netlabel/netlabel_mgmt.c
View file @
e5e7ad44
...
@@ -265,7 +265,7 @@ static int netlbl_mgmt_add_common(struct genl_info *info,
...
@@ -265,7 +265,7 @@ static int netlbl_mgmt_add_common(struct genl_info *info,
static
int
netlbl_mgmt_listentry
(
struct
sk_buff
*
skb
,
static
int
netlbl_mgmt_listentry
(
struct
sk_buff
*
skb
,
struct
netlbl_dom_map
*
entry
)
struct
netlbl_dom_map
*
entry
)
{
{
int
ret_val
;
int
ret_val
=
0
;
struct
nlattr
*
nla_a
;
struct
nlattr
*
nla_a
;
struct
nlattr
*
nla_b
;
struct
nlattr
*
nla_b
;
struct
netlbl_af4list
*
iter4
;
struct
netlbl_af4list
*
iter4
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment