lkml.org 
[lkml]   [2004]   [Sep]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] UML - Fix fencepost errors in printks
Date
From
Simple corrections to some error messages, which list wrong limits for UBD
devices and such.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Jeff Dike <jdike@addtoit.com>

Index: linux-2.6.9-rc2-mm1-orig/arch/um/drivers/line.c
===================================================================
--- linux-2.6.9-rc2-mm1-orig.orig/arch/um/drivers/line.c 2004-09-22 19:51:02.000000000 -0400
+++ linux-2.6.9-rc2-mm1-orig/arch/um/drivers/line.c 2004-09-22 20:39:58.000000000 -0400
@@ -332,7 +332,7 @@
init++;
if((n >= 0) && (n >= num)){
printk("line_setup - %d out of range ((0 ... %d) allowed)\n",
- n, num);
+ n, num - 1);
return(0);
}
else if(n >= 0){
Index: linux-2.6.9-rc2-mm1-orig/arch/um/drivers/ubd_kern.c
===================================================================
--- linux-2.6.9-rc2-mm1-orig.orig/arch/um/drivers/ubd_kern.c 2004-09-22 19:51:02.000000000 -0400
+++ linux-2.6.9-rc2-mm1-orig/arch/um/drivers/ubd_kern.c 2004-09-22 20:39:58.000000000 -0400
@@ -299,7 +299,7 @@
}
if(n >= MAX_DEV){
printk(KERN_ERR "ubd_setup : index %d out of range "
- "(%d devices)\n", n, MAX_DEV);
+ "(%d devices, from 0 to %d)\n", n, MAX_DEV, MAX_DEV - 1);
return(1);
}

More recent patches modify files in message-off-by-one.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:06    [W:0.060 / U:0.196 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site