Re: [PATCH 1/2] LSM-IPSec Networking Hooks

2005-07-07 Thread Herbert Xu
On Thu, Jul 07, 2005 at 09:30:12AM +1000, herbert wrote: This might be a silly question as I probably don't understand this fully. There seems to be an apparent asymmetry in the implementation. The outbound packets are looked up with their originating socket, i.e., for TCP packets it's the

[patch 1/8] drivers/net/ne2.c : Use of time_after() macro

2005-07-07 Thread domen
From: Marcelo Feitoza Parisi [EMAIL PROTECTED] Use of time_after() macro, defined at linux/jiffies.h, which deal with wrapping correctly and are nicer to read. --- ne2.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) Index: quilt/drivers/net/ne2.c

[patch 3/8] drivers/net/ne-h8300.c : Use of time_after() macro

2005-07-07 Thread domen
From: Marcelo Feitoza Parisi [EMAIL PROTECTED] Use of time_after() macro, defined at linux/jiffies.h, which deal with wrapping correctly and are nicer to read. Signed-off-by: Marcelo Feitoza Parisi [EMAIL PROTECTED] Signed-off-by: Domen Puncer [EMAIL PROTECTED] --- ne-h8300.c |5 +++-- 1

[PATCH 1/2] net: add a top-level Networking menu to *config

2005-07-07 Thread Sam Ravnborg
Create a new top-level menu named Networking thus moving net related options and protocol selection way from the drivers menu and up on the top-level where they belong. To implement this all architectures has to source net/Kconfig before drivers/*/Kconfig in their Kconfig file. This change has

Re: [patch 1/1] net: fix sparse warnings

2005-07-07 Thread David S. Miller
From: [EMAIL PROTECTED] Date: Thu, 07 Jul 2005 23:30:26 +0200 From: Victor Fusco [EMAIL PROTECTED] Fix the sparse warning implicit cast to nocast type Signed-off-by: Victor Fusco [EMAIL PROTECTED] Signed-off-by: Domen Puncer [EMAIL PROTECTED] Applied, thanks a lot. - To unsubscribe from

Re: [PATCH 2.6.12.1 5/12] S2io: Performance improvements

2005-07-07 Thread Arthur Kepner
On Thu, 7 Jul 2005 [EMAIL PROTECTED] wrote: ... 2. Removed unnecessary PIOs(read/write of tx_traffic_int and rx_traffic_int) from interrupt handler and removed read of general_int_status register from xmit routine. .. @@ -2891,6 +2869,8 @@ int

Re: tg3 polling extension

2005-07-07 Thread Qinghua(Kevin) Ye
Thanks, David. Some questions are as following: It depends, the locking changed significantly in the current 2.6.13-rcX version of the driver. But before that: 1) -hard_start_xmit() needs to hold the tx_lock with hard IRQs disabled, as does tg3_tx(). It uses NETIF_F_LLTX locking,