Re: [PATCH v1 08/29] virtio-mem: drop last_mb_id

2020-10-15 Thread Pankaj Gupta
> No longer used, let's drop it.
>
> Cc: "Michael S. Tsirkin" 
> Cc: Jason Wang 
> Cc: Pankaj Gupta 
> Signed-off-by: David Hildenbrand 
> ---
>  drivers/virtio/virtio_mem.c | 4 
>  1 file changed, 4 deletions(-)
>
> diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
> index 37a0e338ae4a..5c93f8a65eba 100644
> --- a/drivers/virtio/virtio_mem.c
> +++ b/drivers/virtio/virtio_mem.c
> @@ -84,8 +84,6 @@ struct virtio_mem {
>
> /* Id of the first memory block of this device. */
> unsigned long first_mb_id;
> -   /* Id of the last memory block of this device. */
> -   unsigned long last_mb_id;
> /* Id of the last usable memory block of this device. */
> unsigned long last_usable_mb_id;
> /* Id of the next memory bock to prepare when needed. */
> @@ -1689,8 +1687,6 @@ static int virtio_mem_init(struct virtio_mem *vm)
> vm->first_mb_id = virtio_mem_phys_to_mb_id(vm->addr - 1 +
>memory_block_size_bytes());
> vm->next_mb_id = vm->first_mb_id;
> -   vm->last_mb_id = virtio_mem_phys_to_mb_id(vm->addr +
> -vm->region_size) - 1;
>
> dev_info(&vm->vdev->dev, "start address: 0x%llx", vm->addr);
> dev_info(&vm->vdev->dev, "region size: 0x%llx", vm->region_size);

Reviewed-by: Pankaj Gupta 


Re: [PATCH v1 08/29] virtio-mem: drop last_mb_id

2020-10-15 Thread Wei Yang
On Mon, Oct 12, 2020 at 02:53:02PM +0200, David Hildenbrand wrote:
>No longer used, let's drop it.
>
>Cc: "Michael S. Tsirkin" 
>Cc: Jason Wang 
>Cc: Pankaj Gupta 
>Signed-off-by: David Hildenbrand 

If above two patches are merged.

Reviewed-by: Wei Yang 

>---
> drivers/virtio/virtio_mem.c | 4 
> 1 file changed, 4 deletions(-)
>
>diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
>index 37a0e338ae4a..5c93f8a65eba 100644
>--- a/drivers/virtio/virtio_mem.c
>+++ b/drivers/virtio/virtio_mem.c
>@@ -84,8 +84,6 @@ struct virtio_mem {
> 
>   /* Id of the first memory block of this device. */
>   unsigned long first_mb_id;
>-  /* Id of the last memory block of this device. */
>-  unsigned long last_mb_id;
>   /* Id of the last usable memory block of this device. */
>   unsigned long last_usable_mb_id;
>   /* Id of the next memory bock to prepare when needed. */
>@@ -1689,8 +1687,6 @@ static int virtio_mem_init(struct virtio_mem *vm)
>   vm->first_mb_id = virtio_mem_phys_to_mb_id(vm->addr - 1 +
>  memory_block_size_bytes());
>   vm->next_mb_id = vm->first_mb_id;
>-  vm->last_mb_id = virtio_mem_phys_to_mb_id(vm->addr +
>-   vm->region_size) - 1;
> 
>   dev_info(&vm->vdev->dev, "start address: 0x%llx", vm->addr);
>   dev_info(&vm->vdev->dev, "region size: 0x%llx", vm->region_size);
>-- 
>2.26.2

-- 
Wei Yang
Help you, Help me


[PATCH v1 08/29] virtio-mem: drop last_mb_id

2020-10-12 Thread David Hildenbrand
No longer used, let's drop it.

Cc: "Michael S. Tsirkin" 
Cc: Jason Wang 
Cc: Pankaj Gupta 
Signed-off-by: David Hildenbrand 
---
 drivers/virtio/virtio_mem.c | 4 
 1 file changed, 4 deletions(-)

diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
index 37a0e338ae4a..5c93f8a65eba 100644
--- a/drivers/virtio/virtio_mem.c
+++ b/drivers/virtio/virtio_mem.c
@@ -84,8 +84,6 @@ struct virtio_mem {
 
/* Id of the first memory block of this device. */
unsigned long first_mb_id;
-   /* Id of the last memory block of this device. */
-   unsigned long last_mb_id;
/* Id of the last usable memory block of this device. */
unsigned long last_usable_mb_id;
/* Id of the next memory bock to prepare when needed. */
@@ -1689,8 +1687,6 @@ static int virtio_mem_init(struct virtio_mem *vm)
vm->first_mb_id = virtio_mem_phys_to_mb_id(vm->addr - 1 +
   memory_block_size_bytes());
vm->next_mb_id = vm->first_mb_id;
-   vm->last_mb_id = virtio_mem_phys_to_mb_id(vm->addr +
-vm->region_size) - 1;
 
dev_info(&vm->vdev->dev, "start address: 0x%llx", vm->addr);
dev_info(&vm->vdev->dev, "region size: 0x%llx", vm->region_size);
-- 
2.26.2