public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -mm 1/5] nbd: printk format warning
@ 2006-08-07 22:47 Randy.Dunlap
  2006-08-07 22:50 ` [PATCH -mm 2/5] cachefiles: " Randy.Dunlap
  2006-08-07 23:07 ` [PATCH -mm 1/5] nbd: " Pavel Machek
  0 siblings, 2 replies; 12+ messages in thread
From: Randy.Dunlap @ 2006-08-07 22:47 UTC (permalink / raw)
  To: lkml; +Cc: pavel, akpm

From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning(s):
drivers/block/nbd.c:410: warning: long unsigned int format, different type arg (arg 4)

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---
 drivers/block/nbd.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2618-rc3mm2.orig/drivers/block/nbd.c
+++ linux-2618-rc3mm2/drivers/block/nbd.c
@@ -407,7 +407,7 @@ static void do_nbd_request(request_queue
 		struct nbd_device *lo;
 
 		blkdev_dequeue_request(req);
-		dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%lx)\n",
+		dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%x)\n",
 				req->rq_disk->disk_name, req, req->cmd_type);
 
 		if (!blk_fs_request(req))


---

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH -mm 2/5] cachefiles: printk format warning
  2006-08-07 22:47 [PATCH -mm 1/5] nbd: printk format warning Randy.Dunlap
@ 2006-08-07 22:50 ` Randy.Dunlap
  2006-08-07 22:52   ` [PATCH -mm 3/5] MTD: " Randy.Dunlap
  2006-08-08  9:01   ` [PATCH -mm 2/5] cachefiles: " David Howells
  2006-08-07 23:07 ` [PATCH -mm 1/5] nbd: " Pavel Machek
  1 sibling, 2 replies; 12+ messages in thread
From: Randy.Dunlap @ 2006-08-07 22:50 UTC (permalink / raw)
  To: lkml; +Cc: akpm, dhowells

From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning(s):
fs/cachefiles/cf-proc.c:247: warning: int format, different type arg (arg 4)

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---
 fs/cachefiles/cf-proc.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2618-rc3mm2.orig/fs/cachefiles/cf-proc.c
+++ linux-2618-rc3mm2/fs/cachefiles/cf-proc.c
@@ -244,7 +244,7 @@ static ssize_t cachefiles_proc_write(str
 
 error:
 	kfree(data);
-	_leave(" = %d", ret);
+	_leave(" = %Zd", ret);
 	return ret;
 
 found_command:


---

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH -mm 3/5] MTD: printk format warning
  2006-08-07 22:50 ` [PATCH -mm 2/5] cachefiles: " Randy.Dunlap
@ 2006-08-07 22:52   ` Randy.Dunlap
  2006-08-07 22:54     ` [PATCH -mm 4/5] scsi-target: printk format warnings Randy.Dunlap
  2006-08-08  9:01   ` [PATCH -mm 2/5] cachefiles: " David Howells
  1 sibling, 1 reply; 12+ messages in thread
From: Randy.Dunlap @ 2006-08-07 22:52 UTC (permalink / raw)
  To: lkml; +Cc: akpm, dwmw2

From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning(s):
drivers/mtd/mtd_blkdevs.c:72: warning: long int format, different type arg (arg 2)

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---
 drivers/mtd/mtd_blkdevs.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2618-rc3mm2.orig/drivers/mtd/mtd_blkdevs.c
+++ linux-2618-rc3mm2/drivers/mtd/mtd_blkdevs.c
@@ -69,7 +69,7 @@ static int do_blktrans_request(struct mt
 		return 1;
 
 	default:
-		printk(KERN_NOTICE "Unknown request %ld\n", rq_data_dir(req));
+		printk(KERN_NOTICE "Unknown request %d\n", rq_data_dir(req));
 		return 0;
 	}
 }


---

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH -mm 4/5] scsi-target: printk format warnings
  2006-08-07 22:52   ` [PATCH -mm 3/5] MTD: " Randy.Dunlap
@ 2006-08-07 22:54     ` Randy.Dunlap
  2006-08-07 22:56       ` [PATCH -mm 5/5] usbnet: printk format warning Randy.Dunlap
  0 siblings, 1 reply; 12+ messages in thread
From: Randy.Dunlap @ 2006-08-07 22:54 UTC (permalink / raw)
  To: lkml; +Cc: akpm, jejb, michaelc

From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning(s):
drivers/scsi/scsi_tgt_lib.c:96: warning: long unsigned int format, different type arg (arg 6)
drivers/scsi/scsi_tgt_lib.c:293: warning: long unsigned int format, different type arg (arg 5)
drivers/scsi/scsi_tgt_lib.c:305: warning: long unsigned int format, different type arg (arg 5)
drivers/scsi/scsi_tgt_lib.c:344: warning: long unsigned int format, different type arg (arg 7)
drivers/scsi/scsi_tgt_lib.c:553: warning: long unsigned int format, different type arg (arg 8

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---
 drivers/scsi/scsi_tgt_lib.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

--- linux-2618-rc3mm2.orig/drivers/scsi/scsi_tgt_lib.c
+++ linux-2618-rc3mm2/drivers/scsi/scsi_tgt_lib.c
@@ -93,7 +93,7 @@ static void scsi_tgt_cmd_destroy(void *d
 	struct scsi_tgt_queuedata *qdata = cmd->request->q->queuedata;
 	unsigned long flags;
 
-	dprintk("cmd %p %d %lu\n", cmd, cmd->sc_data_direction,
+	dprintk("cmd %p %d %u\n", cmd, cmd->sc_data_direction,
 		rq_data_dir(cmd->request));
 
 	spin_lock_irqsave(&qdata->cmd_hash_lock, flags);
@@ -290,7 +290,7 @@ static void scsi_tgt_cmd_done(struct scs
 {
 	struct scsi_tgt_cmd *tcmd = cmd->request->end_io_data;
 
-	dprintk("cmd %p %lu\n", cmd, rq_data_dir(cmd->request));
+	dprintk("cmd %p %u\n", cmd, rq_data_dir(cmd->request));
 
 	scsi_tgt_uspace_send_status(cmd, GFP_ATOMIC);
 	INIT_WORK(&tcmd->work, scsi_tgt_cmd_destroy, cmd);
@@ -302,7 +302,7 @@ static int __scsi_tgt_transfer_response(
 	struct Scsi_Host *shost = scsi_tgt_cmd_to_host(cmd);
 	int err;
 
-	dprintk("cmd %p %lu\n", cmd, rq_data_dir(cmd->request));
+	dprintk("cmd %p %u\n", cmd, rq_data_dir(cmd->request));
 
 	err = shost->hostt->transfer_response(cmd, scsi_tgt_cmd_done);
 	switch (err) {
@@ -341,7 +341,7 @@ static int scsi_tgt_init_cmd(struct scsi
 
 	cmd->request_bufflen = rq->data_len;
 
-	dprintk("cmd %p addr %p cnt %d %lu\n", cmd, tcmd->buffer, cmd->use_sg,
+	dprintk("cmd %p addr %p cnt %d %u\n", cmd, tcmd->buffer, cmd->use_sg,
 		rq_data_dir(rq));
 	count = blk_rq_map_sg(rq->q, rq, cmd->request_buffer);
 	if (likely(count <= cmd->use_sg)) {
@@ -550,7 +550,7 @@ int scsi_tgt_kspace_exec(int host_no, u3
 	}
 	cmd = rq->special;
 
-	dprintk("cmd %p result %d len %d bufflen %u %lu %x\n", cmd,
+	dprintk("cmd %p result %d len %d bufflen %u %u %x\n", cmd,
 		result, len, cmd->request_bufflen, rq_data_dir(rq), cmd->cmnd[0]);
 
 	if (result == TASK_ABORTED) {


---

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH -mm 5/5] usbnet: printk format warning
  2006-08-07 22:54     ` [PATCH -mm 4/5] scsi-target: printk format warnings Randy.Dunlap
@ 2006-08-07 22:56       ` Randy.Dunlap
  2006-08-08  0:23         ` patch usbnet-printk-format-warning.patch added to gregkh-2.6 tree gregkh
  2006-08-08  3:29         ` [PATCH -mm 5/5] usbnet: printk format warning Andrew Morton
  0 siblings, 2 replies; 12+ messages in thread
From: Randy.Dunlap @ 2006-08-07 22:56 UTC (permalink / raw)
  To: lkml; +Cc: akpm, gregkh

From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning(s):
drivers/usb/net/usbnet.c:654: warning: int format, different type arg (arg 3)

Can't say that I understand this one...

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---
 drivers/usb/net/usbnet.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2618-rc3mm2.orig/drivers/usb/net/usbnet.c
+++ linux-2618-rc3mm2/drivers/usb/net/usbnet.c
@@ -652,7 +652,7 @@ static int usbnet_open (struct net_devic
 			framing = "simple";
 
 		devinfo (dev, "open: enable queueing "
-				"(rx %d, tx %d) mtu %d %s framing",
+				"(rx %ld, tx %d) mtu %u %s framing",
 			RX_QLEN (dev), TX_QLEN (dev), dev->net->mtu,
 			framing);
 	}


---

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH -mm 1/5] nbd: printk format warning
  2006-08-07 22:47 [PATCH -mm 1/5] nbd: printk format warning Randy.Dunlap
  2006-08-07 22:50 ` [PATCH -mm 2/5] cachefiles: " Randy.Dunlap
@ 2006-08-07 23:07 ` Pavel Machek
  2006-08-07 23:31   ` Randy.Dunlap
  1 sibling, 1 reply; 12+ messages in thread
From: Pavel Machek @ 2006-08-07 23:07 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: lkml, akpm, Paul.Clements

Hi!

> Fix printk format warning(s):
> drivers/block/nbd.c:410: warning: long unsigned int format, different type arg (arg 4)
> 

ACK, but notice that we have new nbd maintainer... for a few years
now.

							Pavel

> Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
> ---
>  drivers/block/nbd.c |    2 +-
>  1 files changed, 1 insertion(+), 1 deletion(-)
> 
> --- linux-2618-rc3mm2.orig/drivers/block/nbd.c
> +++ linux-2618-rc3mm2/drivers/block/nbd.c
> @@ -407,7 +407,7 @@ static void do_nbd_request(request_queue
>  		struct nbd_device *lo;
>  
>  		blkdev_dequeue_request(req);
> -		dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%lx)\n",
> +		dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%x)\n",
>  				req->rq_disk->disk_name, req, req->cmd_type);
>  
>  		if (!blk_fs_request(req))
> 
> 
> ---

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH -mm 1/5] nbd: printk format warning
  2006-08-07 23:07 ` [PATCH -mm 1/5] nbd: " Pavel Machek
@ 2006-08-07 23:31   ` Randy.Dunlap
  2006-08-07 23:31     ` Pavel Machek
  0 siblings, 1 reply; 12+ messages in thread
From: Randy.Dunlap @ 2006-08-07 23:31 UTC (permalink / raw)
  To: Pavel Machek; +Cc: lkml, akpm, Paul.Clements

On Tue, 8 Aug 2006 01:07:26 +0200 Pavel Machek wrote:

> Hi!
> 
> > Fix printk format warning(s):
> > drivers/block/nbd.c:410: warning: long unsigned int format, different type arg (arg 4)
> > 
> 
> ACK, but notice that we have new nbd maintainer... for a few years
> now.

Please notice that I could not find that info in either of
MAINTAINERS or CREDITS.... :(

Please have him/her send a patch.

> 							Pavel
> 
> > Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
> > ---
> >  drivers/block/nbd.c |    2 +-
> >  1 files changed, 1 insertion(+), 1 deletion(-)
> > 
> > --- linux-2618-rc3mm2.orig/drivers/block/nbd.c
> > +++ linux-2618-rc3mm2/drivers/block/nbd.c
> > @@ -407,7 +407,7 @@ static void do_nbd_request(request_queue
> >  		struct nbd_device *lo;
> >  
> >  		blkdev_dequeue_request(req);
> > -		dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%lx)\n",
> > +		dprintk(DBG_BLKDEV, "%s: request %p: dequeued (flags=%x)\n",
> >  				req->rq_disk->disk_name, req, req->cmd_type);
> >  
> >  		if (!blk_fs_request(req))
> > 
> > 
> > ---


---
~Randy

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH -mm 1/5] nbd: printk format warning
  2006-08-07 23:31   ` Randy.Dunlap
@ 2006-08-07 23:31     ` Pavel Machek
  2006-08-07 23:43       ` Randy.Dunlap
  0 siblings, 1 reply; 12+ messages in thread
From: Pavel Machek @ 2006-08-07 23:31 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: lkml, akpm, Paul.Clements

On Mon 2006-08-07 16:31:47, Randy.Dunlap wrote:
> On Tue, 8 Aug 2006 01:07:26 +0200 Pavel Machek wrote:
> 
> > Hi!
> > 
> > > Fix printk format warning(s):
> > > drivers/block/nbd.c:410: warning: long unsigned int format, different type arg (arg 4)
> > > 
> > 
> > ACK, but notice that we have new nbd maintainer... for a few years
> > now.
> 
> Please notice that I could not find that info in either of
> MAINTAINERS or CREDITS.... :(
> 
> Please have him/her send a patch.

No, I think you can push the patch, or make it go through akpm.

It is in maintainers, but perhaps we need to add (NBD) there to help
grep?

NETWORK BLOCK DEVICE
P:      Paul Clements
M:      Paul.Clements@steeleye.com
S:      Maintained


								Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH -mm 1/5] nbd: printk format warning
  2006-08-07 23:31     ` Pavel Machek
@ 2006-08-07 23:43       ` Randy.Dunlap
  0 siblings, 0 replies; 12+ messages in thread
From: Randy.Dunlap @ 2006-08-07 23:43 UTC (permalink / raw)
  To: Pavel Machek; +Cc: lkml, akpm, Paul.Clements

On Tue, 8 Aug 2006 01:31:51 +0200 Pavel Machek wrote:

> On Mon 2006-08-07 16:31:47, Randy.Dunlap wrote:
> > On Tue, 8 Aug 2006 01:07:26 +0200 Pavel Machek wrote:
> > 
> > > Hi!
> > > 
> > > > Fix printk format warning(s):
> > > > drivers/block/nbd.c:410: warning: long unsigned int format, different type arg (arg 4)
> > > > 
> > > 
> > > ACK, but notice that we have new nbd maintainer... for a few years
> > > now.
> > 
> > Please notice that I could not find that info in either of
> > MAINTAINERS or CREDITS.... :(
> > 
> > Please have him/her send a patch.
> 
> No, I think you can push the patch, or make it go through akpm.
> 
> It is in maintainers, but perhaps we need to add (NBD) there to help
> grep?

OK, yes, sorry about that.  I did grep for /NBD/.  :)

> NETWORK BLOCK DEVICE
> P:      Paul Clements
> M:      Paul.Clements@steeleye.com
> S:      Maintained


---
~Randy

^ permalink raw reply	[flat|nested] 12+ messages in thread

* patch usbnet-printk-format-warning.patch added to gregkh-2.6 tree
  2006-08-07 22:56       ` [PATCH -mm 5/5] usbnet: printk format warning Randy.Dunlap
@ 2006-08-08  0:23         ` gregkh
  2006-08-08  3:29         ` [PATCH -mm 5/5] usbnet: printk format warning Andrew Morton
  1 sibling, 0 replies; 12+ messages in thread
From: gregkh @ 2006-08-08  0:23 UTC (permalink / raw)
  To: rdunlap, akpm, greg, gregkh, linux-kernel


This is a note to let you know that I've just added the patch titled

     Subject: usbnet: printk format warning

to my gregkh-2.6 tree.  Its filename is

     usbnet-printk-format-warning.patch

This tree can be found at 
    http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/


>From rdunlap@xenotime.net Mon Aug  7 15:56:22 2006
Date: Mon, 7 Aug 2006 15:56:40 -0700
From: "Randy.Dunlap" <rdunlap@xenotime.net>
To: lkml <linux-kernel@vger.kernel.org>
Cc: akpm <akpm@osdl.org>, gregkh <greg@kroah.com>
Subject: usbnet: printk format warning
Message-Id: <20060807155640.63e59e6b.rdunlap@xenotime.net>

From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning(s):
drivers/usb/net/usbnet.c:654: warning: int format, different type arg (arg 3)

Can't say that I understand this one...

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

---
 drivers/usb/net/usbnet.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- gregkh-2.6.orig/drivers/usb/net/usbnet.c
+++ gregkh-2.6/drivers/usb/net/usbnet.c
@@ -652,7 +652,7 @@ static int usbnet_open (struct net_devic
 			framing = "simple";
 
 		devinfo (dev, "open: enable queueing "
-				"(rx %d, tx %d) mtu %d %s framing",
+				"(rx %ld, tx %d) mtu %u %s framing",
 			RX_QLEN (dev), TX_QLEN (dev), dev->net->mtu,
 			framing);
 	}


Patches currently in gregkh-2.6 which might be from rdunlap@xenotime.net are

driver/driver-core-fix-driver-core-kernel-doc.patch
driver/debugfs-kernel-doc-fixes-for-debugfs.patch
usb/usbnet-printk-format-warning.patch

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH -mm 5/5] usbnet: printk format warning
  2006-08-07 22:56       ` [PATCH -mm 5/5] usbnet: printk format warning Randy.Dunlap
  2006-08-08  0:23         ` patch usbnet-printk-format-warning.patch added to gregkh-2.6 tree gregkh
@ 2006-08-08  3:29         ` Andrew Morton
  1 sibling, 0 replies; 12+ messages in thread
From: Andrew Morton @ 2006-08-08  3:29 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: lkml, gregkh

On Mon, 7 Aug 2006 15:56:40 -0700
"Randy.Dunlap" <rdunlap@xenotime.net> wrote:

> Fix printk format warning(s):
> drivers/usb/net/usbnet.c:654: warning: int format, different type arg (arg 3)
> 
> Can't say that I understand this one...
> 
> Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
> ---
>  drivers/usb/net/usbnet.c |    2 +-
>  1 files changed, 1 insertion(+), 1 deletion(-)
> 
> --- linux-2618-rc3mm2.orig/drivers/usb/net/usbnet.c
> +++ linux-2618-rc3mm2/drivers/usb/net/usbnet.c
> @@ -652,7 +652,7 @@ static int usbnet_open (struct net_devic
>  			framing = "simple";
>  
>  		devinfo (dev, "open: enable queueing "
> -				"(rx %d, tx %d) mtu %d %s framing",
> +				"(rx %ld, tx %d) mtu %u %s framing",
>  			RX_QLEN (dev), TX_QLEN (dev), dev->net->mtu,
>  			framing);

Your compiler wasn't very helpful.  Or maybe we get better diagnostics with
a 64-bit compiler:



From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning(s):

drivers/usb/net/usbnet.c: In function 'usbnet_open':
drivers/usb/net/usbnet.c:654: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'

The fact that rx_urb_size happens to be a size_t has propagated all the way
back to this printk.  It's fragile to be using %z in this case - let's just
typecast the args instead.

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 drivers/usb/net/usbnet.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN drivers/usb/net/usbnet.c~usbnet-printk-format-warning drivers/usb/net/usbnet.c
--- a/drivers/usb/net/usbnet.c~usbnet-printk-format-warning
+++ a/drivers/usb/net/usbnet.c
@@ -653,7 +653,7 @@ static int usbnet_open (struct net_devic
 
 		devinfo (dev, "open: enable queueing "
 				"(rx %d, tx %d) mtu %d %s framing",
-			RX_QLEN (dev), TX_QLEN (dev), dev->net->mtu,
+			(int)RX_QLEN(dev), (int)TX_QLEN(dev), dev->net->mtu,
 			framing);
 	}
 
_


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH -mm 2/5] cachefiles: printk format warning
  2006-08-07 22:50 ` [PATCH -mm 2/5] cachefiles: " Randy.Dunlap
  2006-08-07 22:52   ` [PATCH -mm 3/5] MTD: " Randy.Dunlap
@ 2006-08-08  9:01   ` David Howells
  1 sibling, 0 replies; 12+ messages in thread
From: David Howells @ 2006-08-08  9:01 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: lkml, akpm, dhowells

Randy.Dunlap <rdunlap@xenotime.net> wrote:

> Fix printk format warning(s):
> fs/cachefiles/cf-proc.c:247: warning: int format, different type arg (arg 4)

Applied, thanks.

David

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2006-08-08  9:01 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-07 22:47 [PATCH -mm 1/5] nbd: printk format warning Randy.Dunlap
2006-08-07 22:50 ` [PATCH -mm 2/5] cachefiles: " Randy.Dunlap
2006-08-07 22:52   ` [PATCH -mm 3/5] MTD: " Randy.Dunlap
2006-08-07 22:54     ` [PATCH -mm 4/5] scsi-target: printk format warnings Randy.Dunlap
2006-08-07 22:56       ` [PATCH -mm 5/5] usbnet: printk format warning Randy.Dunlap
2006-08-08  0:23         ` patch usbnet-printk-format-warning.patch added to gregkh-2.6 tree gregkh
2006-08-08  3:29         ` [PATCH -mm 5/5] usbnet: printk format warning Andrew Morton
2006-08-08  9:01   ` [PATCH -mm 2/5] cachefiles: " David Howells
2006-08-07 23:07 ` [PATCH -mm 1/5] nbd: " Pavel Machek
2006-08-07 23:31   ` Randy.Dunlap
2006-08-07 23:31     ` Pavel Machek
2006-08-07 23:43       ` Randy.Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox