diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2008-07-25 13:06:13 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-07-24 22:06:14 -0400 |
commit | e34f87256794b87e7f4a8f1812538be7b7b5214c (patch) | |
tree | b91ffb6df4ac13ace269bef60ae16a1048b1fa73 /drivers/lguest | |
parent | c624896e488ba2bff5ae497782cfb265c8b00646 (diff) |
virtio: Add transport feature handling stub for virtio_ring.
To prepare for virtio_ring transport feature bits, hook in a call in
all the users to manipulate them. This currently just clears all the
bits, since it doesn't understand any features.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest')
-rw-r--r-- | drivers/lguest/lguest_device.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/lguest/lguest_device.c b/drivers/lguest/lguest_device.c index 54fdc2aa4806..37344aaee22f 100644 --- a/drivers/lguest/lguest_device.c +++ b/drivers/lguest/lguest_device.c | |||
@@ -105,6 +105,9 @@ static void lg_finalize_features(struct virtio_device *vdev) | |||
105 | /* Second half of bitmap is features we accept. */ | 105 | /* Second half of bitmap is features we accept. */ |
106 | u8 *out_features = lg_features(desc) + desc->feature_len; | 106 | u8 *out_features = lg_features(desc) + desc->feature_len; |
107 | 107 | ||
108 | /* Give virtio_ring a chance to accept features. */ | ||
109 | vring_transport_features(vdev); | ||
110 | |||
108 | memset(out_features, 0, desc->feature_len); | 111 | memset(out_features, 0, desc->feature_len); |
109 | bits = min_t(unsigned, desc->feature_len, sizeof(vdev->features)) * 8; | 112 | bits = min_t(unsigned, desc->feature_len, sizeof(vdev->features)) * 8; |
110 | for (i = 0; i < bits; i++) { | 113 | for (i = 0; i < bits; i++) { |