Skip to content

Commit da08f35

Browse files
committed
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
Pull virtio fixes and cleanups from Michael Tsirkin: "Fixes some minor issues all over the codebase" * tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost: virtio-net: fix module unloading virtio-balloon: coding format cleanup virtio-balloon: deflate via a page list virtio_blk: Use sysfs_match_string() helper
2 parents fd2b2c5 + cfa0ebc commit da08f35

File tree

3 files changed

+15
-22
lines changed

3 files changed

+15
-22
lines changed

drivers/block/virtio_blk.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -541,12 +541,9 @@ virtblk_cache_type_store(struct device *dev, struct device_attribute *attr,
541541
int i;
542542

543543
BUG_ON(!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_CONFIG_WCE));
544-
for (i = ARRAY_SIZE(virtblk_cache_types); --i >= 0; )
545-
if (sysfs_streq(buf, virtblk_cache_types[i]))
546-
break;
547-
544+
i = sysfs_match_string(virtblk_cache_types, buf);
548545
if (i < 0)
549-
return -EINVAL;
546+
return i;
550547

551548
virtio_cwrite8(vdev, offsetof(struct virtio_blk_config, wce), i);
552549
virtblk_update_cache_mode(vdev);

drivers/net/virtio_net.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2743,9 +2743,9 @@ module_init(virtio_net_driver_init);
27432743

27442744
static __exit void virtio_net_driver_exit(void)
27452745
{
2746+
unregister_virtio_driver(&virtio_net_driver);
27462747
cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
27472748
cpuhp_remove_multi_state(virtionet_online);
2748-
unregister_virtio_driver(&virtio_net_driver);
27492749
}
27502750
module_exit(virtio_net_driver_exit);
27512751

drivers/virtio/virtio_balloon.c

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,6 @@ static u32 page_to_balloon_pfn(struct page *page)
104104
return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
105105
}
106106

107-
static struct page *balloon_pfn_to_page(u32 pfn)
108-
{
109-
BUG_ON(pfn % VIRTIO_BALLOON_PAGES_PER_PAGE);
110-
return pfn_to_page(pfn / VIRTIO_BALLOON_PAGES_PER_PAGE);
111-
}
112-
113107
static void balloon_ack(struct virtqueue *vq)
114108
{
115109
struct virtio_balloon *vb = vq->vdev->priv;
@@ -138,8 +132,10 @@ static void set_page_pfns(struct virtio_balloon *vb,
138132
{
139133
unsigned int i;
140134

141-
/* Set balloon pfns pointing at this page.
142-
* Note that the first pfn points at start of the page. */
135+
/*
136+
* Set balloon pfns pointing at this page.
137+
* Note that the first pfn points at start of the page.
138+
*/
143139
for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
144140
pfns[i] = cpu_to_virtio32(vb->vdev,
145141
page_to_balloon_pfn(page) + i);
@@ -182,18 +178,16 @@ static unsigned fill_balloon(struct virtio_balloon *vb, size_t num)
182178
return num_allocated_pages;
183179
}
184180

185-
static void release_pages_balloon(struct virtio_balloon *vb)
181+
static void release_pages_balloon(struct virtio_balloon *vb,
182+
struct list_head *pages)
186183
{
187-
unsigned int i;
188-
struct page *page;
184+
struct page *page, *next;
189185

190-
/* Find pfns pointing at start of each page, get pages and free them. */
191-
for (i = 0; i < vb->num_pfns; i += VIRTIO_BALLOON_PAGES_PER_PAGE) {
192-
page = balloon_pfn_to_page(virtio32_to_cpu(vb->vdev,
193-
vb->pfns[i]));
186+
list_for_each_entry_safe(page, next, pages, lru) {
194187
if (!virtio_has_feature(vb->vdev,
195188
VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
196189
adjust_managed_page_count(page, 1);
190+
list_del(&page->lru);
197191
put_page(page); /* balloon reference */
198192
}
199193
}
@@ -203,6 +197,7 @@ static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
203197
unsigned num_freed_pages;
204198
struct page *page;
205199
struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
200+
LIST_HEAD(pages);
206201

207202
/* We can only do one array worth at a time. */
208203
num = min(num, ARRAY_SIZE(vb->pfns));
@@ -216,6 +211,7 @@ static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
216211
if (!page)
217212
break;
218213
set_page_pfns(vb, vb->pfns + vb->num_pfns, page);
214+
list_add(&page->lru, &pages);
219215
vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
220216
}
221217

@@ -227,7 +223,7 @@ static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
227223
*/
228224
if (vb->num_pfns != 0)
229225
tell_host(vb, vb->deflate_vq);
230-
release_pages_balloon(vb);
226+
release_pages_balloon(vb, &pages);
231227
mutex_unlock(&vb->balloon_lock);
232228
return num_freed_pages;
233229
}

0 commit comments

Comments
 (0)