mirror of
https://github.com/opnsense/src.git
synced 2026-06-07 15:52:40 -04:00
Allow the LUN number to be specified as the key for a LUN instead
of requiring it as a "number" field. If a key is used, permit
a simple string value to be used for non-anymous LUNs. This permits
replacing:
lun = [
{ number = 0, name = zvol_lun },
{
number = 1
backend = ramdisk
size = 1GB
}
]
with:
lun = {
0 = zvol_lun
1 {
backend = ramdisk
size = 1GB
}
}
Sponsored by: Chelsio Communications
Differential Revision: https://reviews.freebsd.org/D48939
|
||
|---|---|---|
| .. | ||
| conf.c | ||
| conf.h | ||
| ctl.conf.5 | ||
| ctld.8 | ||
| ctld.c | ||
| ctld.h | ||
| discovery.c | ||
| isns.c | ||
| isns.h | ||
| kernel.c | ||
| login.c | ||
| Makefile | ||
| Makefile.depend | ||
| parse.y | ||
| token.l | ||
| uclparse.c | ||