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
nexedi
linux
Commits
e32c91c0
Commit
e32c91c0
authored
Jan 07, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/davem/net-2.6
into home.osdl.org:/home/torvalds/v2.5/linux
parents
b9575611
d5991ced
Changes
19
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
197 additions
and
511 deletions
+197
-511
CREDITS
CREDITS
+1
-1
drivers/net/Space.c
drivers/net/Space.c
+1
-1
include/linux/ip.h
include/linux/ip.h
+4
-1
include/linux/ipv6.h
include/linux/ipv6.h
+9
-2
include/linux/netdevice.h
include/linux/netdevice.h
+1
-1
include/linux/netfilter_ipv4.h
include/linux/netfilter_ipv4.h
+2
-0
include/linux/netfilter_ipv6.h
include/linux/netfilter_ipv6.h
+2
-0
include/linux/skbuff.h
include/linux/skbuff.h
+1
-1
include/linux/udp.h
include/linux/udp.h
+4
-1
include/net/ipv6.h
include/net/ipv6.h
+0
-7
include/net/irda/ircomm_tty.h
include/net/irda/ircomm_tty.h
+6
-1
net/compat.c
net/compat.c
+11
-1
net/decnet/af_decnet.c
net/decnet/af_decnet.c
+8
-9
net/ipv6/addrconf.c
net/ipv6/addrconf.c
+52
-1
net/ipv6/ip6_output.c
net/ipv6/ip6_output.c
+0
-416
net/ipv6/ip6_tunnel.c
net/ipv6/ip6_tunnel.c
+2
-3
net/irda/ircomm/ircomm_tty.c
net/irda/ircomm/ircomm_tty.c
+21
-18
net/packet/af_packet.c
net/packet/af_packet.c
+70
-45
net/sched/sch_htb.c
net/sched/sch_htb.c
+2
-2
No files found.
CREDITS
View file @
e32c91c0
...
...
@@ -1567,7 +1567,7 @@ E: mk@linux-ipv6.org
E: mk@isl.rdc.toshiba.co.jp
E: mk@karaba.org
W: http://www.karaba.org/~mk/
P: 1024D/2EC7E30D
9A35 D378 F084 9EA4 EFBA 925B 1C93 B376 F0EF BE59
P: 1024D/2EC7E30D
4DC3 949B 5A6C F0D6 375F 4472 8888 A8E1 2EC7 E30D
D: IPsec, IPv6
D: USAGI/WIDE Project, TOSHIBA CORPORATION
S: 2-47-8, Takinogawa,
...
...
drivers/net/Space.c
View file @
e32c91c0
...
...
@@ -350,7 +350,7 @@ static int __init ethif_probe(int unit)
* Backwards compatibility - historically an I/O base of 1 was
* used to indicate not to probe for this ethN interface
*/
if
(
dev
->
base_addr
==
1
)
{
if
(
__dev_get_by_name
(
dev
->
name
)
||
dev
->
base_addr
==
1
)
{
free_netdev
(
dev
);
return
-
ENXIO
;
}
...
...
include/linux/ip.h
View file @
e32c91c0
...
...
@@ -159,7 +159,10 @@ struct inet_sock {
struct
inet_opt
inet
;
};
#define inet_sk(__sk) (&((struct inet_sock *)__sk)->inet)
static
inline
struct
inet_opt
*
inet_sk
(
const
struct
sock
*
__sk
)
{
return
&
((
struct
inet_sock
*
)
__sk
)
->
inet
;
}
#endif
...
...
include/linux/ipv6.h
View file @
e32c91c0
...
...
@@ -270,8 +270,15 @@ struct tcp6_sock {
struct
ipv6_pinfo
inet6
;
};
#define inet6_sk(__sk) ((struct raw6_sock *)__sk)->pinet6
#define raw6_sk(__sk) (&((struct raw6_sock *)__sk)->raw6)
static
inline
struct
ipv6_pinfo
*
inet6_sk
(
const
struct
sock
*
__sk
)
{
return
((
struct
raw6_sock
*
)
__sk
)
->
pinet6
;
}
static
inline
struct
raw6_opt
*
raw6_sk
(
const
struct
sock
*
__sk
)
{
return
&
((
struct
raw6_sock
*
)
__sk
)
->
raw6
;
}
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
#define __ipv6_only_sock(sk) (inet6_sk(sk)->ipv6only)
...
...
include/linux/netdevice.h
View file @
e32c91c0
...
...
@@ -634,7 +634,7 @@ static inline void dev_kfree_skb_irq(struct sk_buff *skb)
*/
static
inline
void
dev_kfree_skb_any
(
struct
sk_buff
*
skb
)
{
if
(
in_irq
())
if
(
in_irq
()
||
irqs_disabled
()
)
dev_kfree_skb_irq
(
skb
);
else
dev_kfree_skb
(
skb
);
...
...
include/linux/netfilter_ipv4.h
View file @
e32c91c0
...
...
@@ -51,6 +51,7 @@
enum
nf_ip_hook_priorities
{
NF_IP_PRI_FIRST
=
INT_MIN
,
NF_IP_PRI_SELINUX_FIRST
=
-
225
,
NF_IP_PRI_CONNTRACK
=
-
200
,
NF_IP_PRI_BRIDGE_SABOTAGE_FORWARD
=
-
175
,
NF_IP_PRI_MANGLE
=
-
150
,
...
...
@@ -58,6 +59,7 @@ enum nf_ip_hook_priorities {
NF_IP_PRI_BRIDGE_SABOTAGE_LOCAL_OUT
=
-
50
,
NF_IP_PRI_FILTER
=
0
,
NF_IP_PRI_NAT_SRC
=
100
,
NF_IP_PRI_SELINUX_LAST
=
225
,
NF_IP_PRI_LAST
=
INT_MAX
,
};
...
...
include/linux/netfilter_ipv6.h
View file @
e32c91c0
...
...
@@ -56,11 +56,13 @@
enum
nf_ip6_hook_priorities
{
NF_IP6_PRI_FIRST
=
INT_MIN
,
NF_IP6_PRI_SELINUX_FIRST
=
-
225
,
NF_IP6_PRI_CONNTRACK
=
-
200
,
NF_IP6_PRI_MANGLE
=
-
150
,
NF_IP6_PRI_NAT_DST
=
-
100
,
NF_IP6_PRI_FILTER
=
0
,
NF_IP6_PRI_NAT_SRC
=
100
,
NF_IP6_PRI_SELINUX_LAST
=
225
,
NF_IP6_PRI_LAST
=
INT_MAX
,
};
...
...
include/linux/skbuff.h
View file @
e32c91c0
...
...
@@ -1132,7 +1132,7 @@ static inline struct sk_buff *skb_padto(struct sk_buff *skb, unsigned int len)
* is returned and the old skb data released.
*/
extern
int
__skb_linearize
(
struct
sk_buff
*
skb
,
int
gfp
);
static
inline
int
__deprecated
skb_linearize
(
struct
sk_buff
*
skb
,
int
gfp
)
static
inline
int
skb_linearize
(
struct
sk_buff
*
skb
,
int
gfp
)
{
return
__skb_linearize
(
skb
,
gfp
);
}
...
...
include/linux/udp.h
View file @
e32c91c0
...
...
@@ -60,7 +60,10 @@ struct udp_sock {
struct
udp_opt
udp
;
};
#define udp_sk(__sk) (&((struct udp_sock *)__sk)->udp)
static
inline
struct
udp_opt
*
udp_sk
(
const
struct
sock
*
__sk
)
{
return
&
((
struct
udp_sock
*
)
__sk
)
->
udp
;
}
#endif
...
...
include/net/ipv6.h
View file @
e32c91c0
...
...
@@ -329,13 +329,6 @@ extern int ip6_nd_hdr(struct sock *sk,
struct
in6_addr
*
daddr
,
int
proto
,
int
len
);
extern
int
ip6_build_xmit
(
struct
sock
*
sk
,
inet_getfrag_t
getfrag
,
const
void
*
data
,
struct
flowi
*
fl
,
unsigned
length
,
struct
ipv6_txoptions
*
opt
,
int
hlimit
,
int
flags
);
extern
int
ip6_find_1stfragopt
(
struct
sk_buff
*
skb
,
u8
**
nexthdr
);
extern
int
ip6_append_data
(
struct
sock
*
sk
,
...
...
include/net/irda/ircomm_tty.h
View file @
e32c91c0
...
...
@@ -52,6 +52,11 @@
/* Same for payload size. See qos.c for the smallest max data size */
#define IRCOMM_TTY_DATA_UNINITIALISED (64 - IRCOMM_TTY_HDR_UNINITIALISED)
/* Those are really defined in include/linux/serial.h - Jean II */
#define ASYNC_B_INITIALIZED 31
/* Serial port was initialized */
#define ASYNC_B_NORMAL_ACTIVE 29
/* Normal device is active */
#define ASYNC_B_CLOSING 27
/* Serial port is closing */
/*
* IrCOMM TTY driver state
*/
...
...
@@ -75,7 +80,7 @@ struct ircomm_tty_cb {
LOCAL_FLOW
flow
;
/* IrTTP flow status */
int
line
;
__u32
flags
;
volatile
unsigned
long
flags
;
__u8
dlsap_sel
;
__u8
slsap_sel
;
...
...
net/compat.c
View file @
e32c91c0
...
...
@@ -215,15 +215,25 @@ int cmsghdr_from_user_compat_to_kern(struct msghdr *kmsg,
int
put_cmsg_compat
(
struct
msghdr
*
kmsg
,
int
level
,
int
type
,
int
len
,
void
*
data
)
{
struct
compat_timeval
ctv
;
struct
compat_cmsghdr
*
cm
=
(
struct
compat_cmsghdr
*
)
kmsg
->
msg_control
;
struct
compat_cmsghdr
cmhdr
;
int
cmlen
=
CMSG_COMPAT_LEN
(
len
)
;
int
cmlen
;
if
(
cm
==
NULL
||
kmsg
->
msg_controllen
<
sizeof
(
*
cm
))
{
kmsg
->
msg_flags
|=
MSG_CTRUNC
;
return
0
;
/* XXX: return error? check spec. */
}
if
(
level
==
SOL_SOCKET
&&
type
==
SO_TIMESTAMP
)
{
struct
timeval
*
tv
=
(
struct
timeval
*
)
data
;
ctv
.
tv_sec
=
tv
->
tv_sec
;
ctv
.
tv_usec
=
tv
->
tv_usec
;
data
=
&
ctv
;
len
=
sizeof
(
struct
compat_timeval
);
}
cmlen
=
CMSG_COMPAT_LEN
(
len
);
if
(
kmsg
->
msg_controllen
<
cmlen
)
{
kmsg
->
msg_flags
|=
MSG_CTRUNC
;
cmlen
=
kmsg
->
msg_controllen
;
...
...
net/decnet/af_decnet.c
View file @
e32c91c0
...
...
@@ -2376,17 +2376,17 @@ static int __init decnet_init(void)
dn_register_sysctl
();
/*
* Prevent DECnet module unloading until its fixed properly.
* Requires an audit of the code to check for memory leaks and
* initialisation problems etc.
*/
try_module_get
(
THIS_MODULE
);
return
0
;
}
module_init
(
decnet_init
);
/*
* Prevent DECnet module unloading until its fixed properly.
* Requires an audit of the code to check for memory leaks and
* initialisation problems etc.
*/
#if 0
static void __exit decnet_exit(void)
{
sock_unregister(AF_DECnet);
...
...
@@ -2405,6 +2405,5 @@ static void __exit decnet_exit(void)
kmem_cache_destroy(dn_sk_cachep);
}
module_init
(
decnet_init
);
module_exit(decnet_exit);
#endif
net/ipv6/addrconf.c
View file @
e32c91c0
...
...
@@ -1809,6 +1809,54 @@ static void addrconf_sit_config(struct net_device *dev)
sit_route_add
(
dev
);
}
static
inline
int
ipv6_inherit_linklocal
(
struct
inet6_dev
*
idev
,
struct
net_device
*
link_dev
)
{
struct
in6_addr
lladdr
;
if
(
!
ipv6_get_lladdr
(
link_dev
,
&
lladdr
))
{
addrconf_add_linklocal
(
idev
,
&
lladdr
);
return
0
;
}
return
-
1
;
}
static
void
ip6_tnl_add_linklocal
(
struct
inet6_dev
*
idev
)
{
struct
net_device
*
link_dev
;
/* first try to inherit the link-local address from the link device */
if
(
idev
->
dev
->
iflink
&&
(
link_dev
=
__dev_get_by_index
(
idev
->
dev
->
iflink
)))
{
if
(
!
ipv6_inherit_linklocal
(
idev
,
link_dev
))
return
;
}
/* then try to inherit it from any device */
for
(
link_dev
=
dev_base
;
link_dev
;
link_dev
=
link_dev
->
next
)
{
if
(
!
ipv6_inherit_linklocal
(
idev
,
link_dev
))
return
;
}
printk
(
KERN_DEBUG
"init ip6-ip6: add_linklocal failed
\n
"
);
}
/*
* Autoconfigure tunnel with a link-local address so routing protocols,
* DHCPv6, MLD etc. can be run over the virtual link
*/
static
void
addrconf_ip6_tnl_config
(
struct
net_device
*
dev
)
{
struct
inet6_dev
*
idev
;
ASSERT_RTNL
();
if
((
idev
=
addrconf_add_dev
(
dev
))
==
NULL
)
{
printk
(
KERN_DEBUG
"init ip6-ip6: add_dev failed
\n
"
);
return
;
}
ip6_tnl_add_linklocal
(
idev
);
addrconf_add_mroute
(
dev
);
}
int
addrconf_notify
(
struct
notifier_block
*
this
,
unsigned
long
event
,
void
*
data
)
...
...
@@ -1822,7 +1870,9 @@ int addrconf_notify(struct notifier_block *this, unsigned long event,
case
ARPHRD_SIT
:
addrconf_sit_config
(
dev
);
break
;
case
ARPHRD_TUNNEL6
:
addrconf_ip6_tnl_config
(
dev
);
break
;
case
ARPHRD_LOOPBACK
:
init_loopback
(
dev
);
break
;
...
...
@@ -2121,6 +2171,7 @@ static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
*/
if
(
ifp
->
idev
->
cnf
.
forwarding
==
0
&&
ifp
->
idev
->
cnf
.
rtr_solicits
>
0
&&
(
dev
->
flags
&
IFF_LOOPBACK
)
==
0
&&
(
ipv6_addr_type
(
&
ifp
->
addr
)
&
IPV6_ADDR_LINKLOCAL
))
{
struct
in6_addr
all_routers
;
...
...
net/ipv6/ip6_output.c
View file @
e32c91c0
This diff is collapsed.
Click to expand it.
net/ipv6/ip6_tunnel.c
View file @
e32c91c0
...
...
@@ -821,6 +821,8 @@ static void ip6ip6_tnl_link_config(struct ip6_tnl *t)
else
dev
->
flags
&=
~
IFF_POINTOPOINT
;
dev
->
iflink
=
p
->
link
;
if
(
p
->
flags
&
IP6_TNL_F_CAP_XMIT
)
{
struct
rt6_info
*
rt
=
rt6_lookup
(
&
p
->
raddr
,
&
p
->
laddr
,
p
->
link
,
0
);
...
...
@@ -829,8 +831,6 @@ static void ip6ip6_tnl_link_config(struct ip6_tnl *t)
return
;
if
(
rt
->
rt6i_dev
)
{
dev
->
iflink
=
rt
->
rt6i_dev
->
ifindex
;
dev
->
hard_header_len
=
rt
->
rt6i_dev
->
hard_header_len
+
sizeof
(
struct
ipv6hdr
);
...
...
@@ -1040,7 +1040,6 @@ static void ip6ip6_tnl_dev_setup(struct net_device *dev)
dev
->
hard_header_len
=
LL_MAX_HEADER
+
sizeof
(
struct
ipv6hdr
);
dev
->
mtu
=
ETH_DATA_LEN
-
sizeof
(
struct
ipv6hdr
);
dev
->
flags
|=
IFF_NOARP
;
dev
->
iflink
=
0
;
dev
->
addr_len
=
sizeof
(
struct
in6_addr
);
}
...
...
net/irda/ircomm/ircomm_tty.c
View file @
e32c91c0
...
...
@@ -181,15 +181,15 @@ void __exit ircomm_tty_cleanup(void)
static
int
ircomm_tty_startup
(
struct
ircomm_tty_cb
*
self
)
{
notify_t
notify
;
int
ret
;
int
ret
=
-
ENODEV
;
IRDA_DEBUG
(
2
,
"%s()
\n
"
,
__FUNCTION__
);
ASSERT
(
self
!=
NULL
,
return
-
1
;);
ASSERT
(
self
->
magic
==
IRCOMM_TTY_MAGIC
,
return
-
1
;);
/*
A
lready open */
if
(
self
->
flags
&
ASYNC_INITIALIZED
)
{
/*
Check if a
lready open */
if
(
test_and_set_bit
(
ASYNC_B_INITIALIZED
,
&
self
->
flags
)
)
{
IRDA_DEBUG
(
2
,
"%s(), already open so break out!
\n
"
,
__FUNCTION__
);
return
0
;
}
...
...
@@ -213,7 +213,7 @@ static int ircomm_tty_startup(struct ircomm_tty_cb *self)
self
->
line
);
}
if
(
!
self
->
ircomm
)
return
-
ENODEV
;
goto
err
;
self
->
slsap_sel
=
self
->
ircomm
->
slsap_sel
;
...
...
@@ -221,12 +221,13 @@ static int ircomm_tty_startup(struct ircomm_tty_cb *self)
ret
=
ircomm_tty_attach_cable
(
self
);
if
(
ret
<
0
)
{
ERROR
(
"%s(), error attaching cable!
\n
"
,
__FUNCTION__
);
return
ret
;
goto
err
;
}
self
->
flags
|=
ASYNC_INITIALIZED
;
return
0
;
err:
clear_bit
(
ASYNC_B_INITIALIZED
,
&
self
->
flags
);
return
ret
;
}
/*
...
...
@@ -299,7 +300,8 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
current
->
state
=
TASK_INTERRUPTIBLE
;
if
(
tty_hung_up_p
(
filp
)
||
!
(
self
->
flags
&
ASYNC_INITIALIZED
)){
if
(
tty_hung_up_p
(
filp
)
||
!
test_bit
(
ASYNC_B_INITIALIZED
,
&
self
->
flags
))
{
retval
=
(
self
->
flags
&
ASYNC_HUP_NOTIFY
)
?
-
EAGAIN
:
-
ERESTARTSYS
;
break
;
...
...
@@ -310,7 +312,7 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
* specified, we cannot return before the IrCOMM link is
* ready
*/
if
(
!
(
self
->
flags
&
ASYNC_CLOSING
)
&&
if
(
!
test_bit
(
ASYNC_B_CLOSING
,
&
self
->
flags
)
&&
(
do_clocal
||
(
self
->
settings
.
dce
&
IRCOMM_CD
))
&&
self
->
state
==
IRCOMM_TTY_READY
)
{
...
...
@@ -425,7 +427,7 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
* If the port is the middle of closing, bail out now
*/
if
(
tty_hung_up_p
(
filp
)
||
(
self
->
flags
&
ASYNC_CLOSING
))
{
test_bit
(
ASYNC_B_CLOSING
,
&
self
->
flags
))
{
/* Hm, why are we blocking on ASYNC_CLOSING if we
* do return -EAGAIN/-ERESTARTSYS below anyway?
...
...
@@ -435,7 +437,7 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
* probably better sleep uninterruptible?
*/
if
(
wait_event_interruptible
(
self
->
close_wait
,
!
(
self
->
flags
&
ASYNC_CLOSING
)))
{
if
(
wait_event_interruptible
(
self
->
close_wait
,
!
test_bit
(
ASYNC_B_CLOSING
,
&
self
->
flags
)))
{
WARNING
(
"%s - got signal while blocking on ASYNC_CLOSING!
\n
"
,
__FUNCTION__
);
return
-
ERESTARTSYS
;
...
...
@@ -530,11 +532,13 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
IRDA_DEBUG
(
0
,
"%s(), open count > 0
\n
"
,
__FUNCTION__
);
return
;
}
self
->
flags
|=
ASYNC_CLOSING
;
/* Hum... Should be test_and_set_bit ??? - Jean II */
set_bit
(
ASYNC_B_CLOSING
,
&
self
->
flags
);
/* We need to unlock here (we were unlocking at the end of this
* function), because tty_wait_until_sent() may schedule.
* I don't know if the rest should be
lock
ed somehow,
* I don't know if the rest should be
protect
ed somehow,
* so someone should check. - Jean II */
spin_unlock_irqrestore
(
&
self
->
spinlock
,
flags
);
...
...
@@ -978,10 +982,12 @@ static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
ASSERT
(
self
->
magic
==
IRCOMM_TTY_MAGIC
,
return
;);
IRDA_DEBUG
(
0
,
"%s()
\n
"
,
__FUNCTION__
);
if
(
!
(
self
->
flags
&
ASYNC_INITIALIZED
))
if
(
!
test_and_clear_bit
(
ASYNC_B_INITIALIZED
,
&
self
->
flags
))
return
;
ircomm_tty_detach_cable
(
self
);
spin_lock_irqsave
(
&
self
->
spinlock
,
flags
);
del_timer
(
&
self
->
watchdog_timer
);
...
...
@@ -998,13 +1004,10 @@ static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
self
->
tx_skb
=
NULL
;
}
ircomm_tty_detach_cable
(
self
);
if
(
self
->
ircomm
)
{
ircomm_close
(
self
->
ircomm
);
self
->
ircomm
=
NULL
;
}
self
->
flags
&=
~
ASYNC_INITIALIZED
;
spin_unlock_irqrestore
(
&
self
->
spinlock
,
flags
);
}
...
...
net/packet/af_packet.c
View file @
e32c91c0
...
...
@@ -64,6 +64,7 @@
#include <asm/uaccess.h>
#include <asm/ioctls.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/poll.h>
#include <linux/module.h>
#include <linux/init.h>
...
...
@@ -1767,61 +1768,86 @@ static struct notifier_block packet_netdev_notifier = {
};
#ifdef CONFIG_PROC_FS
static
int
packet_read_proc
(
char
*
buffer
,
char
**
start
,
off_t
offset
,
int
length
,
int
*
eof
,
void
*
data
)
static
inline
struct
sock
*
packet_seq_idx
(
loff_t
off
)
{
off_t
pos
=
0
;
off_t
begin
=
0
;
int
len
=
0
;
struct
sock
*
s
;
struct
hlist_node
*
node
;
len
+=
sprintf
(
buffer
,
"sk RefCnt Type Proto Iface R Rmem User Inode
\n
"
);
sk_for_each
(
s
,
node
,
&
packet_sklist
)
{
if
(
!
off
--
)
return
s
;
}
return
NULL
;
}
static
void
*
packet_seq_start
(
struct
seq_file
*
seq
,
loff_t
*
pos
)
{
read_lock
(
&
packet_sklist_lock
);
return
*
pos
?
packet_seq_idx
(
*
pos
-
1
)
:
SEQ_START_TOKEN
;
}
sk_for_each
(
s
,
node
,
&
packet_sklist
)
{
struct
packet_opt
*
po
=
pkt_sk
(
s
);
len
+=
sprintf
(
buffer
+
len
,
"%p %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu"
,
s
,
atomic_read
(
&
s
->
sk_refcnt
),
s
->
sk_type
,
ntohs
(
po
->
num
),
po
->
ifindex
,
po
->
running
,
atomic_read
(
&
s
->
sk_rmem_alloc
),
sock_i_uid
(
s
),
sock_i_ino
(
s
)
);
buffer
[
len
++
]
=
'\n'
;
pos
=
begin
+
len
;
if
(
pos
<
offset
)
{
len
=
0
;
begin
=
pos
;
}
if
(
pos
>
offset
+
length
)
goto
done
;
static
void
*
packet_seq_next
(
struct
seq_file
*
seq
,
void
*
v
,
loff_t
*
pos
)
{
++*
pos
;
return
(
v
==
SEQ_START_TOKEN
)
?
sk_head
(
&
packet_sklist
)
:
sk_next
((
struct
sock
*
)
v
)
;
}
static
void
packet_seq_stop
(
struct
seq_file
*
seq
,
void
*
v
)
{
read_unlock
(
&
packet_sklist_lock
);
}
static
int
packet_seq_show
(
struct
seq_file
*
seq
,
void
*
v
)
{
if
(
v
==
SEQ_START_TOKEN
)
seq_puts
(
seq
,
"sk RefCnt Type Proto Iface R Rmem User Inode
\n
"
);
else
{
struct
sock
*
s
=
v
;
const
struct
packet_opt
*
po
=
pkt_sk
(
s
);
seq_printf
(
seq
,
"%p %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu
\n
"
,
s
,
atomic_read
(
&
s
->
sk_refcnt
),
s
->
sk_type
,
ntohs
(
po
->
num
),
po
->
ifindex
,
po
->
running
,
atomic_read
(
&
s
->
sk_rmem_alloc
),
sock_i_uid
(
s
),
sock_i_ino
(
s
)
);
}
*
eof
=
1
;
done:
read_unlock
(
&
packet_sklist_lock
);
*
start
=
buffer
+
(
offset
-
begin
);
len
-=
(
offset
-
begin
);
if
(
len
>
length
)
len
=
length
;
if
(
len
<
0
)
len
=
0
;
return
len
;
return
0
;
}
static
struct
seq_operations
packet_seq_ops
=
{
.
start
=
packet_seq_start
,
.
next
=
packet_seq_next
,
.
stop
=
packet_seq_stop
,
.
show
=
packet_seq_show
,
};
static
int
packet_seq_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
seq_open
(
file
,
&
packet_seq_ops
);
}
static
struct
file_operations
packet_seq_fops
=
{
.
owner
=
THIS_MODULE
,
.
open
=
packet_seq_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
seq_release
,
};
#endif
static
void
__exit
packet_exit
(
void
)
{
remove_proc_entry
(
"net/packet"
,
0
);
proc_net_remove
(
"packet"
);
unregister_netdevice_notifier
(
&
packet_netdev_notifier
);
sock_unregister
(
PF_PACKET
);
return
;
...
...
@@ -1831,9 +1857,8 @@ static int __init packet_init(void)
{
sock_register
(
&
packet_family_ops
);
register_netdevice_notifier
(
&
packet_netdev_notifier
);
#ifdef CONFIG_PROC_FS
create_proc_read_entry
(
"net/packet"
,
0
,
0
,
packet_read_proc
,
NULL
);
#endif
proc_net_fops_create
(
"packet"
,
0
,
&
packet_seq_fops
);
return
0
;
}
...
...
net/sched/sch_htb.c
View file @
e32c91c0
...
...
@@ -74,7 +74,7 @@
#define HTB_HYSTERESIS 1
/* whether to use mode hysteresis for speedup */
#define HTB_QLOCK(S) spin_lock_bh(&(S)->dev->queue_lock)
#define HTB_QUNLOCK(S) spin_unlock_bh(&(S)->dev->queue_lock)
#define HTB_VER 0x3000
e
/* major must be matched with number suplied by TC as version */
#define HTB_VER 0x3000
f
/* major must be matched with number suplied by TC as version */
#if HTB_VER >> 16 != TC_HTB_PROTOVER
#error "Mismatched sch_htb.c and pkt_sch.h"
...
...
@@ -308,7 +308,7 @@ static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch)
rules in it */
if
(
skb
->
priority
==
sch
->
handle
)
return
HTB_DIRECT
;
/* X:0 (direct flow) selected */
if
((
cl
=
htb_find
(
skb
->
priority
,
sch
))
!=
NULL
)
if
((
cl
=
htb_find
(
skb
->
priority
,
sch
))
!=
NULL
&&
cl
->
level
==
0
)
return
cl
;
tcf
=
q
->
filter_list
;
...
...
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