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
dfb9c436
Commit
dfb9c436
authored
Apr 18, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/home/davem/BK/net-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
299b664a
987793dc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
3 deletions
+6
-3
drivers/net/wan/pc300_drv.c
drivers/net/wan/pc300_drv.c
+1
-1
include/linux/pfkeyv2.h
include/linux/pfkeyv2.h
+1
-1
net/atm/lec.h
net/atm/lec.h
+1
-0
net/ipv6/netfilter/Kconfig
net/ipv6/netfilter/Kconfig
+1
-1
net/key/af_key.c
net/key/af_key.c
+2
-0
No files found.
drivers/net/wan/pc300_drv.c
View file @
dfb9c436
...
...
@@ -370,7 +370,7 @@ static void tx_dma_buf_check(pc300_t * card, int ch)
ucshort
first_bd
=
card
->
chan
[
ch
].
tx_first_bd
;
ucshort
next_bd
=
card
->
chan
[
ch
].
tx_next_bd
;
printk
(
"#CH%d: f_bd = %d(0x%08
x), n_bd = %d(0x%08
x)
\n
"
,
ch
,
printk
(
"#CH%d: f_bd = %d(0x%08
zx), n_bd = %d(0x%08z
x)
\n
"
,
ch
,
first_bd
,
TX_BD_ADDR
(
ch
,
first_bd
),
next_bd
,
TX_BD_ADDR
(
ch
,
next_bd
));
for
(
i
=
first_bd
,
...
...
include/linux/pfkeyv2.h
View file @
dfb9c436
...
...
@@ -181,7 +181,7 @@ struct sadb_x_policy {
uint8_t
sadb_x_policy_dir
;
uint8_t
sadb_x_policy_reserved
;
uint32_t
sadb_x_policy_id
;
uint32_t
sadb_x_policy_
reserved2
;
uint32_t
sadb_x_policy_
priority
;
}
__attribute__
((
packed
));
/* sizeof(struct sadb_x_policy) == 16 */
...
...
net/atm/lec.h
View file @
dfb9c436
...
...
@@ -16,6 +16,7 @@
#if defined (CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
#include <linux/if_bridge.h>
struct
net_bridge
;
extern
struct
net_bridge_fdb_entry
*
(
*
br_fdb_get_hook
)(
struct
net_bridge
*
br
,
unsigned
char
*
addr
);
extern
void
(
*
br_fdb_put_hook
)(
struct
net_bridge_fdb_entry
*
ent
);
...
...
net/ipv6/netfilter/Kconfig
View file @
dfb9c436
...
...
@@ -3,7 +3,7 @@
#
menu "IPv6: Netfilter Configuration"
depends on INET && IPV6
!=n
&& NETFILTER
depends on INET && IPV6 && NETFILTER
#tristate 'Connection tracking (required for masq/NAT)' CONFIG_IP6_NF_CONNTRACK
#if [ "$CONFIG_IP6_NF_CONNTRACK" != "n" ]; then
...
...
net/key/af_key.c
View file @
dfb9c436
...
...
@@ -1780,6 +1780,7 @@ static void pfkey_xfrm_policy2msg(struct sk_buff *skb, struct xfrm_policy *xp, i
}
pol
->
sadb_x_policy_dir
=
dir
+
1
;
pol
->
sadb_x_policy_id
=
xp
->
index
;
pol
->
sadb_x_policy_priority
=
xp
->
priority
;
for
(
i
=
0
;
i
<
xp
->
xfrm_nr
;
i
++
)
{
struct
sadb_x_ipsecrequest
*
rq
;
...
...
@@ -1872,6 +1873,7 @@ static int pfkey_spdadd(struct sock *sk, struct sk_buff *skb, struct sadb_msg *h
xp
->
action
=
(
pol
->
sadb_x_policy_type
==
IPSEC_POLICY_DISCARD
?
XFRM_POLICY_BLOCK
:
XFRM_POLICY_ALLOW
);
xp
->
priority
=
pol
->
sadb_x_policy_priority
;
sa
=
ext_hdrs
[
SADB_EXT_ADDRESS_SRC
-
1
],
xp
->
family
=
pfkey_sadb_addr2xfrm_addr
(
sa
,
&
xp
->
selector
.
saddr
);
...
...
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