Commit 2a628511 authored by David Hildenbrand's avatar David Hildenbrand Committed by Michael S. Tsirkin

virtio-mem: use "unsigned long" for nr_pages when fake onlining/offlining

No harm done, but let's be consistent.
Reviewed-by: default avatarPankaj Gupta <pankaj.gupta.linux@gmail.com>
Reviewed-by: default avatarWei Yang <richard.weiyang@linux.alibaba.com>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
Link: https://lore.kernel.org/r/20201112133815.13332-6-david@redhat.comSigned-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent d76944f8
...@@ -717,7 +717,7 @@ static int virtio_mem_memory_notifier_cb(struct notifier_block *nb, ...@@ -717,7 +717,7 @@ static int virtio_mem_memory_notifier_cb(struct notifier_block *nb,
* (via generic_online_page()) using PageDirty(). * (via generic_online_page()) using PageDirty().
*/ */
static void virtio_mem_set_fake_offline(unsigned long pfn, static void virtio_mem_set_fake_offline(unsigned long pfn,
unsigned int nr_pages, bool onlined) unsigned long nr_pages, bool onlined)
{ {
for (; nr_pages--; pfn++) { for (; nr_pages--; pfn++) {
struct page *page = pfn_to_page(pfn); struct page *page = pfn_to_page(pfn);
...@@ -736,7 +736,7 @@ static void virtio_mem_set_fake_offline(unsigned long pfn, ...@@ -736,7 +736,7 @@ static void virtio_mem_set_fake_offline(unsigned long pfn,
* (via generic_online_page()), clear PageDirty(). * (via generic_online_page()), clear PageDirty().
*/ */
static void virtio_mem_clear_fake_offline(unsigned long pfn, static void virtio_mem_clear_fake_offline(unsigned long pfn,
unsigned int nr_pages, bool onlined) unsigned long nr_pages, bool onlined)
{ {
for (; nr_pages--; pfn++) { for (; nr_pages--; pfn++) {
struct page *page = pfn_to_page(pfn); struct page *page = pfn_to_page(pfn);
...@@ -751,10 +751,10 @@ static void virtio_mem_clear_fake_offline(unsigned long pfn, ...@@ -751,10 +751,10 @@ static void virtio_mem_clear_fake_offline(unsigned long pfn,
* Release a range of fake-offline pages to the buddy, effectively * Release a range of fake-offline pages to the buddy, effectively
* fake-onlining them. * fake-onlining them.
*/ */
static void virtio_mem_fake_online(unsigned long pfn, unsigned int nr_pages) static void virtio_mem_fake_online(unsigned long pfn, unsigned long nr_pages)
{ {
const unsigned long max_nr_pages = MAX_ORDER_NR_PAGES; const unsigned long max_nr_pages = MAX_ORDER_NR_PAGES;
int i; unsigned long i;
/* /*
* We are always called at least with MAX_ORDER_NR_PAGES * We are always called at least with MAX_ORDER_NR_PAGES
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment