[PATCH] nbd: fix device names

From: Paul Clements
Date: Tue Jun 01 2004 - 09:08:37 EST


It seems more appropriate to call the devices "nbX" rather than "nbdX",
since that's what the device nodes are actually named.

--
Paul




--- linux/drivers/block/nbd.c.PRISTINE Thu Apr 15 13:40:18 2004
+++ linux/drivers/block/nbd.c Thu Apr 15 13:53:18 2004
@@ -713,7 +753,7 @@ static int __init nbd_init(void)
disk->fops = &nbd_fops;
disk->private_data = &nbd_dev[i];
disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
- sprintf(disk->disk_name, "nbd%d", i);
+ sprintf(disk->disk_name, "nb%d", i);
sprintf(disk->devfs_name, "nbd/%d", i);
set_capacity(disk, 0x7ffffc00ULL << 1); /* 2 TB */
add_disk(disk);