diff mbox series

loop: remove the unused inode variable in loop_configure

Message ID 20240705053114.2042976-1-hch@lst.de (mailing list archive)
State New, archived
Headers show
Series loop: remove the unused inode variable in loop_configure | expand

Commit Message

Christoph Hellwig July 5, 2024, 5:31 a.m. UTC
Remove the inode variable now that the last user is gone.

Fixes: a17ece76bcfe ("loop: regularize upgrading the block size for direct I/O")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/block/loop.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Jens Axboe July 5, 2024, 6:42 a.m. UTC | #1
On Fri, 05 Jul 2024 07:31:14 +0200, Christoph Hellwig wrote:
> Remove the inode variable now that the last user is gone.
> 
> 

Applied, thanks!

[1/1] loop: remove the unused inode variable in loop_configure
      commit: dd54fd4e1780b349043f2d74784b8b702dbd84e9

Best regards,
diff mbox series

Patch

diff --git a/drivers/block/loop.c b/drivers/block/loop.c
index bba4c920508f88..1580327dbc1e15 100644
--- a/drivers/block/loop.c
+++ b/drivers/block/loop.c
@@ -1019,7 +1019,6 @@  static int loop_configure(struct loop_device *lo, blk_mode_t mode,
 			  const struct loop_config *config)
 {
 	struct file *file = fget(config->fd);
-	struct inode *inode;
 	struct address_space *mapping;
 	int error;
 	loff_t size;
@@ -1056,7 +1055,6 @@  static int loop_configure(struct loop_device *lo, blk_mode_t mode,
 		goto out_unlock;
 
 	mapping = file->f_mapping;
-	inode = mapping->host;
 
 	if ((config->info.lo_flags & ~LOOP_CONFIGURE_SETTABLE_FLAGS) != 0) {
 		error = -EINVAL;