CISTI'2013 Doctoral Symposium - CFP, Lisbon; Deadline: February 15

2013-02-03 Thread Maria Lemos
*** CISTI'2013 DOCTORAL SYMPOSIUM 8th Iberian Conference on Information Systems and Technologies Lisbon, Portugal, June 19 - 23, 2013 http://www.aisti.eu/cisti2013/index.php?option=com_content&view=artic

Re: [PATCH][trivial] virtio-mmio: fix wrong comment about register offset

2013-02-03 Thread Rusty Russell
Pawel Moll writes: > On Sat, 2013-01-26 at 08:54 +, Ryota Ozaki wrote: >> The register offset of InterruptACK is 0x064, not 0x060. >> Fix it. >> >> Signed-off-by: Ryota Ozaki >> CC: Pawel Moll >> CC: Rusty Russell >> CC: Jiri Kosina >> --- >> drivers/virtio/virtio_mmio.c | 2 +- >> 1 fil

Re: [PATCH] virtio_console: Don't access uninitialized data.

2013-02-03 Thread Rusty Russell
Amit Shah writes: > On (Thu) 17 Jan 2013 [13:21:32], sjur.brandel...@stericsson.com wrote: >> From: Sjur Brændeland >> >> Don't access uninitialized work-queue when removing device. >> The work queue is initialized only if the device multi-queue. >> So don't call cancel_work unless this is a mul

[PATCH 0/8] drivers/net: Remove unnecessary alloc/OOM messages

2013-02-03 Thread Joe Perches
Remove all the OOM messages that follow kernel alloc failures as there is already a generic equivalent to these messages in the mm subsystem. Joe Perches (8): caif: Remove unnecessary alloc/OOM messages can: Remove unnecessary alloc/OOM messages ethernet: Remove unnecessary alloc/OOM message

[PATCH 8/8] drivers:net:misc: Remove unnecessary alloc/OOM messages

2013-02-03 Thread Joe Perches
alloc failures already get standardized OOM messages and a dump_stack. Signed-off-by: Joe Perches --- drivers/net/hamradio/dmascc.c | 7 +-- drivers/net/phy/spi_ks8995.c | 4 +--- drivers/net/virtio_net.c | 4 +--- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/drivers

Re: [PATCH] virtio_console: Don't access uninitialized data.

2013-02-03 Thread Amit Shah
On (Mon) 04 Feb 2013 [10:09:05], Rusty Russell wrote: > Amit Shah writes: > > On (Thu) 17 Jan 2013 [13:21:32], sjur.brandel...@stericsson.com wrote: > >> From: Sjur Brændeland > >> > >> Don't access uninitialized work-queue when removing device. > >> The work queue is initialized only if the dev