[PATCH 2/2] netfilter: idletimers - add send_nl_msg field

2013-04-21 Thread dmitry pervushin
: beb914e987cbbd368988d2b94a6661cb907c4d5a with uevent support instead of a new netlink message type. Cc: JP Abgrall Cc: Ashish Sharma Cc: Peter P Waskiewicz Jr Signed-off-by: Ashish Sharma Signed-off-by: JP Abgrall Signed-off-by: John Stultz Signed-off-by: dmitry pervushin --- include/uapi/linux

[PATCH 1/2] netfilter: idletimers - fix the case of already expired timer

2013-04-21 Thread dmitry pervushin
From: dmitry pervushin Fix the case in which timer has expired and we refresh it without sending the notification Signed-off-by: Ashish Sharma Signed-off-by: JP Abgrall Signed-off-by: John Stultz Signed-off-by: dmitry pervushin --- net/netfilter/xt_IDLETIMER.c | 18 -- 1

[PATCH 0/2] netfilter: idletimers

2013-04-21 Thread dmitry pervushin
Hello all, [PATCH 1/2] netfilter: idletimers - fix the case of already expired timer [PATCH 2/2] netfilter: idletimers - add send_nl_msg field These two patches fix the case of already expired timer and add capability to send netlink message notifications in addition to sysfs notifications (prev

Android netfilter patches (xt_IDLETIMER) [0/3]

2013-03-25 Thread dmitry pervushin
Hello all, I would like to return to the Android netfilter patches that were posted in the thread here -- http://article.gmane.org/gmane.linux.kernel/1362838. These patches were updated according to feedback that John Stultz had received from the list. So, the first serie of patches is for xt_IDL

Android netfilter patches (xt_IDLETIMER) [1/3]

2013-03-25 Thread dmitry pervushin
Fix the case in which timer has expired and we refresh it without sending the notification Signed-off-by: Ashish Sharma Signed-off-by: JP Abgrall Signed-off-by: John Stultz Signed-off-by: dmitry pervushin diff --git a/net/netfilter/xt_IDLETIMER.c b/net/netfilter/xt_IDLETIMER.c index f407ebc1

Re: How to structure an SPI UART driver?

2007-04-19 Thread dmitry pervushin
On Чтв, 2007-04-19 at 17:45 +1000, Zik Saleeba wrote: > I'm looking for a little advice on writing a driver for the Phillips > sc16is752 SPI UART chip. I've written drivers before but I'm having a > problem with this one. Since this driver is both an SPI driver and a > UART driver I'm unclear on wh

Re: [PATCH] spi

2005-08-08 Thread dmitry pervushin
l +++ linux-2.6.10/drivers/spi/spipnx.c @@ -0,0 +1,581 @@ +/* + * drivers/spi/spi-pnx.c + * + * SPI support for PNX 010x/4008 boards. + * + * Author: dmitry pervushin <[EMAIL PROTECTED]> + * Based on Dennis Kovalev's <[EMAIL PROTECTED]> bus driver for pnx010x + * + * 2004 (c) Mon

[PATCH] spi

2005-08-08 Thread dmitry pervushin
good starting point for people who does not want anything but simple character device access. The new abstraction is the spi bus, which functionality was represented by spi_device structure. Especially for Greg K-H: yes, I ran this code through sparse :), thank you. Signed-off-by: dmitry pervushin