Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1512913

Re: [PATCH 1/4] loop: Remove unused 'bdev' argument from loop_set_capacity

From Ming Lei <tom.leiming@gmail.com>
Newsgroups linux.kernel
Subject Re: [PATCH 1/4] loop: Remove unused 'bdev' argument from loop_set_capacity
Date 2016-10-31 22:30 +0100
Message-ID <sysjv-7Pf-13@gated-at.bofh.it> (permalink)
References <syqB3-6Fs-5@gated-at.bofh.it> <syqB3-6Fs-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Nov 1, 2016 at 3:37 AM, Hannes Reinecke <hare@suse.de> wrote:
> Signed-off-by: Hannes Reinecke <hare@suse.de>
> Reviewed-by: Christoph Hellwig <hch@lst.de>
> ---
>  drivers/block/loop.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/block/loop.c b/drivers/block/loop.c
> index fa1b7a9..3008dec 100644
> --- a/drivers/block/loop.c
> +++ b/drivers/block/loop.c
> @@ -1298,7 +1298,7 @@ loop_get_status64(struct loop_device *lo, struct loop_info64 __user *arg) {
>         return err;
>  }
>
> -static int loop_set_capacity(struct loop_device *lo, struct block_device *bdev)
> +static int loop_set_capacity(struct loop_device *lo)
>  {
>         if (unlikely(lo->lo_state != Lo_bound))
>                 return -ENXIO;
> @@ -1361,7 +1361,7 @@ static int lo_ioctl(struct block_device *bdev, fmode_t mode,
>         case LOOP_SET_CAPACITY:
>                 err = -EPERM;
>                 if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN))
> -                       err = loop_set_capacity(lo, bdev);
> +                       err = loop_set_capacity(lo);
>                 break;
>         case LOOP_SET_DIRECT_IO:
>                 err = -EPERM;

Reviewed-by: Ming Lei <tom.leiming@gmail.com>


thanks,
Ming Lei

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH 1/4] loop: Remove unused 'bdev' argument from loop_set_capacity Hannes Reinecke <hare@suse.de> - 2016-10-31 20:40 +0100
  Re: [PATCH 1/4] loop: Remove unused 'bdev' argument from loop_set_capacity Ming Lei <tom.leiming@gmail.com> - 2016-10-31 22:30 +0100

csiph-web