diff options
author | Paul Clements <paul.clements@steeleye.com> | 2008-02-08 04:21:51 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 09:22:41 -0800 |
commit | 20a8143eaa3300a58326156eaf43e03db0fd2cb6 (patch) | |
tree | ee12300f417f0ecbaa4879b62a19a09423de76b3 /include/linux | |
parent | Char: applicom, use pci_match_id (diff) | |
download | linux-dev-20a8143eaa3300a58326156eaf43e03db0fd2cb6.tar.xz linux-dev-20a8143eaa3300a58326156eaf43e03db0fd2cb6.zip |
NBD: remove limit on max number of nbd devices
Remove the arbitrary 128 device limit for NBD. nbds_max can now be set to
any number. In certain scenarios where devices are used sparsely we have
run into the 128 device limit.
Signed-off-by: Paul Clements <paul.clements@steeleye.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/nbd.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/nbd.h b/include/linux/nbd.h index cc2b47240a8f..986572081e19 100644 --- a/include/linux/nbd.h +++ b/include/linux/nbd.h @@ -35,7 +35,6 @@ enum { }; #define nbd_cmd(req) ((req)->cmd[0]) -#define MAX_NBD 128 /* userspace doesn't need the nbd_device structure */ #ifdef __KERNEL__ |