patch-2.3.25 linux/drivers/block/loop.c
Next file: linux/drivers/block/md.c
Previous file: linux/drivers/block/ll_rw_blk.c
Back to the patch index
Back to the overall index
- Lines: 47
- Date:
Mon Nov 1 10:31:34 1999
- Orig file:
v2.3.24/linux/drivers/block/loop.c
- Orig date:
Tue Sep 7 12:14:06 1999
diff -u --recursive --new-file v2.3.24/linux/drivers/block/loop.c linux/drivers/block/loop.c
@@ -23,9 +23,12 @@
* Reed H. Petty, rhp@draper.net
*
* Maximum number of loop devices now dynamic via max_loop module parameter.
- * Still fixed at 8 devices when compiled into the kernel normally.
* Russell Kroll <rkroll@exploits.org> 19990701
*
+ * Maximum number of loop devices when compiled-in now selectable by passing
+ * max_loop=<1-255> to the kernel on boot.
+ * Erik I. Bolsų, <eriki@himolde.no>, Oct 31, 1999
+ *
* Still To Fix:
* - Advisory locking is ignored here.
* - Should use an own CAP_* category instead of CAP_SYS_ADMIN
@@ -723,15 +726,12 @@
}
if ((max_loop < 1) || (max_loop > 255)) {
- printk (KERN_WARNING "loop: max_loop must be between 1 and 255\n");
- return -EINVAL;
+ printk (KERN_WARNING "loop: invalid max_loop (must be between 1 and 255), using default (8)\n");
+ max_loop = 8;
}
-#ifndef MODULE
printk(KERN_INFO "loop: registered device at major %d\n", MAJOR_NR);
-#else
printk(KERN_INFO "loop: enabling %d loop devices\n", max_loop);
-#endif
loop_dev = kmalloc (max_loop * sizeof(struct loop_device), GFP_KERNEL);
if (!loop_dev) {
@@ -777,4 +777,14 @@
kfree (loop_sizes);
kfree (loop_blksizes);
}
+#endif
+
+#ifndef MODULE
+static int __init max_loop_setup(char *str)
+{
+ max_loop = simple_strtol(str,NULL,0);
+ return 1;
+}
+
+__setup("max_loop=", max_loop_setup);
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)