diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-21 23:20:23 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-21 23:20:23 -0400 |
commit | 99262a3dafa3290866512ddfb32609198f8973e9 (patch) | |
tree | 6f74764150cd9c38d9ffacbeb5054b696537e154 /Documentation/kernel-parameters.txt | |
parent | bf67f3a5c456a18f2e8d062f7e88506ef2cd9837 (diff) | |
parent | c6190804f1dc5357b57825f0491eb31fc9ccf130 (diff) |
Merge tag 'virtio-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
Pull virtio updates from Rusty Russell.
* tag 'virtio-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus:
virtio: fix typo in comment
virtio-mmio: Devices parameter parsing
virtio_blk: Drop unused request tracking list
virtio-blk: Fix hot-unplug race in remove method
virtio: Use ida to allocate virtio index
virtio: balloon: separate out common code between remove and freeze functions
virtio: balloon: drop restore_common()
9p: disconnect channel when PCI device is removed
virtio: update documentation to v0.9.5 of spec
Diffstat (limited to 'Documentation/kernel-parameters.txt')
-rw-r--r-- | Documentation/kernel-parameters.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 0e90453e4acb..e275432ef2c7 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -110,6 +110,7 @@ parameter is applicable: | |||
110 | USB USB support is enabled. | 110 | USB USB support is enabled. |
111 | USBHID USB Human Interface Device support is enabled. | 111 | USBHID USB Human Interface Device support is enabled. |
112 | V4L Video For Linux support is enabled. | 112 | V4L Video For Linux support is enabled. |
113 | VMMIO Driver for memory mapped virtio devices is enabled. | ||
113 | VGA The VGA console has been enabled. | 114 | VGA The VGA console has been enabled. |
114 | VT Virtual terminal support is enabled. | 115 | VT Virtual terminal support is enabled. |
115 | WDT Watchdog support is enabled. | 116 | WDT Watchdog support is enabled. |
@@ -2932,6 +2933,22 @@ bytes respectively. Such letter suffixes can also be entirely omitted. | |||
2932 | video= [FB] Frame buffer configuration | 2933 | video= [FB] Frame buffer configuration |
2933 | See Documentation/fb/modedb.txt. | 2934 | See Documentation/fb/modedb.txt. |
2934 | 2935 | ||
2936 | virtio_mmio.device= | ||
2937 | [VMMIO] Memory mapped virtio (platform) device. | ||
2938 | |||
2939 | <size>@<baseaddr>:<irq>[:<id>] | ||
2940 | where: | ||
2941 | <size> := size (can use standard suffixes | ||
2942 | like K, M and G) | ||
2943 | <baseaddr> := physical base address | ||
2944 | <irq> := interrupt number (as passed to | ||
2945 | request_irq()) | ||
2946 | <id> := (optional) platform device id | ||
2947 | example: | ||
2948 | virtio_mmio.device=1K@0x100b0000:48:7 | ||
2949 | |||
2950 | Can be used multiple times for multiple devices. | ||
2951 | |||
2935 | vga= [BOOT,X86-32] Select a particular video mode | 2952 | vga= [BOOT,X86-32] Select a particular video mode |
2936 | See Documentation/x86/boot.txt and | 2953 | See Documentation/x86/boot.txt and |
2937 | Documentation/svga.txt. | 2954 | Documentation/svga.txt. |