All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Hellwig <hch@lst.de>
To: Jens Axboe <axboe@kernel.dk>
Cc: Tejun Heo <tj@kernel.org>, Josef Bacik <josef@toxicpanda.com>,
	Coly Li <colyli@suse.de>, Mike Snitzer <snitzer@redhat.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jan Kara <jack@suse.cz>,
	Johannes Thumshirn <johannes.thumshirn@wdc.com>,
	dm-devel@redhat.com, Jan Kara <jack@suse.com>,
	linux-block@vger.kernel.org, linux-bcache@vger.kernel.org,
	linux-mtd@lists.infradead.org, linux-fsdevel@vger.kernel.org,
	linux-mm@kvack.org
Subject: [PATCH 05/45] mtip32xx: remove the call to fsync_bdev on removal
Date: Sat, 28 Nov 2020 17:14:30 +0100	[thread overview]
Message-ID: <20201128161510.347752-6-hch@lst.de> (raw)
In-Reply-To: <20201128161510.347752-1-hch@lst.de>

del_gendisk already calls fsync_bdev for every partition, no need
to do this twice.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
---
 drivers/block/mtip32xx/mtip32xx.c | 15 ---------------
 drivers/block/mtip32xx/mtip32xx.h |  2 --
 2 files changed, 17 deletions(-)

diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c
index 153e2cdecb4d40..53ac59d19ae530 100644
--- a/drivers/block/mtip32xx/mtip32xx.c
+++ b/drivers/block/mtip32xx/mtip32xx.c
@@ -3687,7 +3687,6 @@ static int mtip_block_initialize(struct driver_data *dd)
 	/* Enable the block device and add it to /dev */
 	device_add_disk(&dd->pdev->dev, dd->disk, NULL);
 
-	dd->bdev = bdget_disk(dd->disk, 0);
 	/*
 	 * Now that the disk is active, initialize any sysfs attributes
 	 * managed by the protocol layer.
@@ -3721,9 +3720,6 @@ static int mtip_block_initialize(struct driver_data *dd)
 	return rv;
 
 kthread_run_error:
-	bdput(dd->bdev);
-	dd->bdev = NULL;
-
 	/* Delete our gendisk. This also removes the device from /dev */
 	del_gendisk(dd->disk);
 
@@ -3804,14 +3800,6 @@ static int mtip_block_remove(struct driver_data *dd)
 	blk_mq_tagset_busy_iter(&dd->tags, mtip_no_dev_cleanup, dd);
 	blk_mq_unquiesce_queue(dd->queue);
 
-	/*
-	 * Delete our gendisk structure. This also removes the device
-	 * from /dev
-	 */
-	if (dd->bdev) {
-		bdput(dd->bdev);
-		dd->bdev = NULL;
-	}
 	if (dd->disk) {
 		if (test_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag))
 			del_gendisk(dd->disk);
@@ -4206,9 +4194,6 @@ static void mtip_pci_remove(struct pci_dev *pdev)
 	} while (atomic_read(&dd->irq_workers_active) != 0 &&
 		time_before(jiffies, to));
 
-	if (!dd->sr)
-		fsync_bdev(dd->bdev);
-
 	if (atomic_read(&dd->irq_workers_active) != 0) {
 		dev_warn(&dd->pdev->dev,
 			"Completion workers still active!\n");
diff --git a/drivers/block/mtip32xx/mtip32xx.h b/drivers/block/mtip32xx/mtip32xx.h
index e22a7f0523bf30..88f4206310e4c8 100644
--- a/drivers/block/mtip32xx/mtip32xx.h
+++ b/drivers/block/mtip32xx/mtip32xx.h
@@ -463,8 +463,6 @@ struct driver_data {
 
 	int isr_binding;
 
-	struct block_device *bdev;
-
 	struct list_head online_list; /* linkage for online list */
 
 	struct list_head remove_list; /* linkage for removing list */
-- 
2.29.2


WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@lst.de>
To: Jens Axboe <axboe@kernel.dk>
Cc: linux-bcache@vger.kernel.org, Jan Kara <jack@suse.cz>,
	Mike Snitzer <snitzer@redhat.com>,
	linux-mm@kvack.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jan Kara <jack@suse.com>, Josef Bacik <josef@toxicpanda.com>,
	Coly Li <colyli@suse.de>,
	linux-block@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	dm-devel@redhat.com, linux-mtd@lists.infradead.org,
	Johannes Thumshirn <johannes.thumshirn@wdc.com>,
	Tejun Heo <tj@kernel.org>
Subject: [PATCH 05/45] mtip32xx: remove the call to fsync_bdev on removal
Date: Sat, 28 Nov 2020 17:14:30 +0100	[thread overview]
Message-ID: <20201128161510.347752-6-hch@lst.de> (raw)
In-Reply-To: <20201128161510.347752-1-hch@lst.de>

del_gendisk already calls fsync_bdev for every partition, no need
to do this twice.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
---
 drivers/block/mtip32xx/mtip32xx.c | 15 ---------------
 drivers/block/mtip32xx/mtip32xx.h |  2 --
 2 files changed, 17 deletions(-)

diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c
index 153e2cdecb4d40..53ac59d19ae530 100644
--- a/drivers/block/mtip32xx/mtip32xx.c
+++ b/drivers/block/mtip32xx/mtip32xx.c
@@ -3687,7 +3687,6 @@ static int mtip_block_initialize(struct driver_data *dd)
 	/* Enable the block device and add it to /dev */
 	device_add_disk(&dd->pdev->dev, dd->disk, NULL);
 
-	dd->bdev = bdget_disk(dd->disk, 0);
 	/*
 	 * Now that the disk is active, initialize any sysfs attributes
 	 * managed by the protocol layer.
@@ -3721,9 +3720,6 @@ static int mtip_block_initialize(struct driver_data *dd)
 	return rv;
 
 kthread_run_error:
-	bdput(dd->bdev);
-	dd->bdev = NULL;
-
 	/* Delete our gendisk. This also removes the device from /dev */
 	del_gendisk(dd->disk);
 
@@ -3804,14 +3800,6 @@ static int mtip_block_remove(struct driver_data *dd)
 	blk_mq_tagset_busy_iter(&dd->tags, mtip_no_dev_cleanup, dd);
 	blk_mq_unquiesce_queue(dd->queue);
 
-	/*
-	 * Delete our gendisk structure. This also removes the device
-	 * from /dev
-	 */
-	if (dd->bdev) {
-		bdput(dd->bdev);
-		dd->bdev = NULL;
-	}
 	if (dd->disk) {
 		if (test_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag))
 			del_gendisk(dd->disk);
@@ -4206,9 +4194,6 @@ static void mtip_pci_remove(struct pci_dev *pdev)
 	} while (atomic_read(&dd->irq_workers_active) != 0 &&
 		time_before(jiffies, to));
 
-	if (!dd->sr)
-		fsync_bdev(dd->bdev);
-
 	if (atomic_read(&dd->irq_workers_active) != 0) {
 		dev_warn(&dd->pdev->dev,
 			"Completion workers still active!\n");
diff --git a/drivers/block/mtip32xx/mtip32xx.h b/drivers/block/mtip32xx/mtip32xx.h
index e22a7f0523bf30..88f4206310e4c8 100644
--- a/drivers/block/mtip32xx/mtip32xx.h
+++ b/drivers/block/mtip32xx/mtip32xx.h
@@ -463,8 +463,6 @@ struct driver_data {
 
 	int isr_binding;
 
-	struct block_device *bdev;
-
 	struct list_head online_list; /* linkage for online list */
 
 	struct list_head remove_list; /* linkage for removing list */
-- 
2.29.2


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Hellwig <hch@lst.de>
To: Jens Axboe <axboe@kernel.dk>
Cc: linux-bcache@vger.kernel.org, Jan Kara <jack@suse.cz>,
	Mike Snitzer <snitzer@redhat.com>,
	linux-mm@kvack.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jan Kara <jack@suse.com>, Josef Bacik <josef@toxicpanda.com>,
	Coly Li <colyli@suse.de>,
	linux-block@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	dm-devel@redhat.com, linux-mtd@lists.infradead.org,
	Johannes Thumshirn <johannes.thumshirn@wdc.com>,
	Tejun Heo <tj@kernel.org>
Subject: [dm-devel] [PATCH 05/45] mtip32xx: remove the call to fsync_bdev on removal
Date: Sat, 28 Nov 2020 17:14:30 +0100	[thread overview]
Message-ID: <20201128161510.347752-6-hch@lst.de> (raw)
In-Reply-To: <20201128161510.347752-1-hch@lst.de>

del_gendisk already calls fsync_bdev for every partition, no need
to do this twice.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
---
 drivers/block/mtip32xx/mtip32xx.c | 15 ---------------
 drivers/block/mtip32xx/mtip32xx.h |  2 --
 2 files changed, 17 deletions(-)

diff --git a/drivers/block/mtip32xx/mtip32xx.c b/drivers/block/mtip32xx/mtip32xx.c
index 153e2cdecb4d40..53ac59d19ae530 100644
--- a/drivers/block/mtip32xx/mtip32xx.c
+++ b/drivers/block/mtip32xx/mtip32xx.c
@@ -3687,7 +3687,6 @@ static int mtip_block_initialize(struct driver_data *dd)
 	/* Enable the block device and add it to /dev */
 	device_add_disk(&dd->pdev->dev, dd->disk, NULL);
 
-	dd->bdev = bdget_disk(dd->disk, 0);
 	/*
 	 * Now that the disk is active, initialize any sysfs attributes
 	 * managed by the protocol layer.
@@ -3721,9 +3720,6 @@ static int mtip_block_initialize(struct driver_data *dd)
 	return rv;
 
 kthread_run_error:
-	bdput(dd->bdev);
-	dd->bdev = NULL;
-
 	/* Delete our gendisk. This also removes the device from /dev */
 	del_gendisk(dd->disk);
 
@@ -3804,14 +3800,6 @@ static int mtip_block_remove(struct driver_data *dd)
 	blk_mq_tagset_busy_iter(&dd->tags, mtip_no_dev_cleanup, dd);
 	blk_mq_unquiesce_queue(dd->queue);
 
-	/*
-	 * Delete our gendisk structure. This also removes the device
-	 * from /dev
-	 */
-	if (dd->bdev) {
-		bdput(dd->bdev);
-		dd->bdev = NULL;
-	}
 	if (dd->disk) {
 		if (test_bit(MTIP_DDF_INIT_DONE_BIT, &dd->dd_flag))
 			del_gendisk(dd->disk);
@@ -4206,9 +4194,6 @@ static void mtip_pci_remove(struct pci_dev *pdev)
 	} while (atomic_read(&dd->irq_workers_active) != 0 &&
 		time_before(jiffies, to));
 
-	if (!dd->sr)
-		fsync_bdev(dd->bdev);
-
 	if (atomic_read(&dd->irq_workers_active) != 0) {
 		dev_warn(&dd->pdev->dev,
 			"Completion workers still active!\n");
diff --git a/drivers/block/mtip32xx/mtip32xx.h b/drivers/block/mtip32xx/mtip32xx.h
index e22a7f0523bf30..88f4206310e4c8 100644
--- a/drivers/block/mtip32xx/mtip32xx.h
+++ b/drivers/block/mtip32xx/mtip32xx.h
@@ -463,8 +463,6 @@ struct driver_data {
 
 	int isr_binding;
 
-	struct block_device *bdev;
-
 	struct list_head online_list; /* linkage for online list */
 
 	struct list_head remove_list; /* linkage for removing list */
-- 
2.29.2

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel


  parent reply	other threads:[~2020-11-28 22:12 UTC|newest]

Thread overview: 298+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-28 16:14 merge struct block_device and struct hd_struct v4 Christoph Hellwig
2020-11-28 16:14 ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14 ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 01/45] blk-cgroup: fix a hd_struct leak in blkcg_fill_root_iostats Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 02/45] filemap: consistently use ->f_mapping over ->i_mapping Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  9:20   ` Johannes Thumshirn
2020-11-30  9:20     ` [dm-devel] " Johannes Thumshirn
2020-11-30  9:20     ` Johannes Thumshirn
2020-11-28 16:14 ` [PATCH 03/45] fs: remove get_super_thawed and get_super_exclusive_thawed Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 04/45] fs: simplify freeze_bdev/thaw_bdev Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30 17:55   ` Darrick J. Wong
2020-11-30 17:55     ` [dm-devel] " Darrick J. Wong
2020-11-30 17:55     ` Darrick J. Wong
2020-11-28 16:14 ` Christoph Hellwig [this message]
2020-11-28 16:14   ` [dm-devel] [PATCH 05/45] mtip32xx: remove the call to fsync_bdev on removal Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:07   ` Hannes Reinecke
2020-11-30  7:07     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:07     ` Hannes Reinecke
2020-11-30 14:48   ` Johannes Thumshirn
2020-11-30 14:48     ` [dm-devel] " Johannes Thumshirn
2020-11-30 14:48     ` Johannes Thumshirn
2020-11-28 16:14 ` [PATCH 06/45] zram: do not call set_blocksize Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 07/45] loop: " Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:07   ` Hannes Reinecke
2020-11-30  7:07     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:07     ` Hannes Reinecke
2020-11-30 11:26   ` Johannes Thumshirn
2020-11-30 11:26     ` [dm-devel] " Johannes Thumshirn
2020-11-30 11:26     ` Johannes Thumshirn
2020-11-28 16:14 ` [PATCH 08/45] dm: simplify flush_bio initialization in __send_empty_flush Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:08   ` Hannes Reinecke
2020-11-30  7:08     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:08     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 09/45] dm: remove the block_device reference in struct mapped_device Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 10/45] block: remove a duplicate __disk_get_part prototype Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 11/45] block: remove a superflous check in blkpg_do_ioctl Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  9:20   ` Johannes Thumshirn
2020-11-30  9:20     ` [dm-devel] " Johannes Thumshirn
2020-11-30  9:20     ` Johannes Thumshirn
2020-11-28 16:14 ` [PATCH 12/45] block: add a bdev_kobj helper Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 13/45] block: use disk_part_iter_exit in disk_part_iter_next Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-28 16:14 ` [PATCH 14/45] block: use put_device in put_disk Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:09   ` Hannes Reinecke
2020-11-30  7:09     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:09     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 15/45] block: change the hash used for looking up block devices Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:10   ` Hannes Reinecke
2020-11-30  7:10     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:10     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 16/45] block: switch bdgrab to use igrab Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:14   ` Hannes Reinecke
2020-11-30  7:14     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:14     ` Hannes Reinecke
2020-11-30  9:09   ` Jan Kara
2020-11-30  9:09     ` [dm-devel] " Jan Kara
2020-11-30  9:09     ` Jan Kara
2020-11-30 14:52   ` Johannes Thumshirn
2020-11-30 14:52     ` [dm-devel] " Johannes Thumshirn
2020-11-30 14:52     ` Johannes Thumshirn
2020-11-28 16:14 ` [PATCH 17/45] init: refactor name_to_dev_t Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:15   ` Hannes Reinecke
2020-11-30  7:15     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:15     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 18/45] init: refactor devt_from_partuuid Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:16   ` Hannes Reinecke
2020-11-30  7:16     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:16     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 19/45] init: cleanup match_dev_by_uuid and match_dev_by_label Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:17   ` Hannes Reinecke
2020-11-30  7:17     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:17     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 20/45] block: refactor __blkdev_put Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:17   ` Hannes Reinecke
2020-11-30  7:17     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:17     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 21/45] block: refactor blkdev_get Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:28   ` Hannes Reinecke
2020-11-30  7:28     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:28     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 22/45] block: move bdput() to the callers of __blkdev_get Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:29   ` Hannes Reinecke
2020-11-30  7:29     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:29     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 23/45] block: opencode devcgroup_inode_permission Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:30   ` Hannes Reinecke
2020-11-30  7:30     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:30     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 24/45] block: remove i_bdev Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:31   ` Hannes Reinecke
2020-11-30  7:31     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:31     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 25/45] block: simplify bdev/disk lookup in blkdev_get Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:36   ` Hannes Reinecke
2020-11-30  7:36     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:36     ` Hannes Reinecke
2020-11-30  9:24   ` Jan Kara
2020-11-30  9:24     ` [dm-devel] " Jan Kara
2020-11-30  9:24     ` Jan Kara
2020-12-02 21:52   ` Tejun Heo
2020-12-02 21:52     ` [dm-devel] " Tejun Heo
2020-12-02 21:52     ` Tejun Heo
2020-11-28 16:14 ` [PATCH 26/45] block: remove ->bd_contains Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:37   ` Hannes Reinecke
2020-11-30  7:37     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:37     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 27/45] block: simplify the block device claiming interface Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:37   ` Hannes Reinecke
2020-11-30  7:37     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:37     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 28/45] block: simplify part_to_disk Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:38   ` Hannes Reinecke
2020-11-30  7:38     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:38     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 29/45] block: initialize struct block_device in bdev_alloc Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:38   ` Hannes Reinecke
2020-11-30  7:38     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:38     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 30/45] block: remove the nr_sects field in struct hd_struct Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:39   ` Hannes Reinecke
2020-11-30  7:39     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:39     ` Hannes Reinecke
2020-11-30  9:44   ` Jan Kara
2020-11-30  9:44     ` [dm-devel] " Jan Kara
2020-11-30  9:44     ` Jan Kara
2020-11-30 14:51     ` Christoph Hellwig
2020-11-30 14:51       ` [dm-devel] " Christoph Hellwig
2020-11-30 14:51       ` Christoph Hellwig
2020-11-30 15:17       ` Jan Kara
2020-11-30 15:17         ` [dm-devel] " Jan Kara
2020-11-30 15:17         ` Jan Kara
2020-11-28 16:14 ` [PATCH 31/45] block: move disk stat accounting to struct block_device Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:40   ` Hannes Reinecke
2020-11-30  7:40     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:40     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 32/45] block: move the start_sect field " Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:41   ` Hannes Reinecke
2020-11-30  7:41     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:41     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 33/45] block: move the partition_meta_info " Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:41   ` Hannes Reinecke
2020-11-30  7:41     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:41     ` Hannes Reinecke
2020-11-28 16:14 ` [PATCH 34/45] block: move holder_dir " Christoph Hellwig
2020-11-28 16:14   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:14   ` Christoph Hellwig
2020-11-30  7:42   ` Hannes Reinecke
2020-11-30  7:42     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:42     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 35/45] block: move make_it_fail " Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:43   ` Hannes Reinecke
2020-11-30  7:43     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:43     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 36/45] block: move the policy field " Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:44   ` Hannes Reinecke
2020-11-30  7:44     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:44     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 37/45] block: allocate struct hd_struct as part of struct bdev_inode Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:46   ` Hannes Reinecke
2020-11-30  7:46     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:46     ` Hannes Reinecke
2020-11-30  9:53   ` Jan Kara
2020-11-30  9:53     ` [dm-devel] " Jan Kara
2020-11-30  9:53     ` Jan Kara
2020-11-28 16:15 ` [PATCH 38/45] block: switch partition lookup to use struct block_device Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:47   ` Hannes Reinecke
2020-11-30  7:47     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:47     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 39/45] block: remove the partno field from struct hd_struct Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:47   ` Hannes Reinecke
2020-11-30  7:47     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:47     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 40/45] block: pass a block_device to blk_alloc_devt Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:48   ` Hannes Reinecke
2020-11-30  7:48     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:48     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 41/45] block: pass a block_device to invalidate_partition Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:49   ` Hannes Reinecke
2020-11-30  7:49     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:49     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 42/45] block: switch disk_part_iter_* to use a struct block_device Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:50   ` Hannes Reinecke
2020-11-30  7:50     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:50     ` Hannes Reinecke
2020-11-30 10:20   ` Jan Kara
2020-11-30 10:20     ` [dm-devel] " Jan Kara
2020-11-30 10:20     ` Jan Kara
2020-11-28 16:15 ` [PATCH 43/45] f2fs: remove a few bd_part checks Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:50   ` Hannes Reinecke
2020-11-30  7:50     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:50     ` Hannes Reinecke
2020-11-28 16:15 ` [PATCH 44/45] block: merge struct block_device and struct hd_struct Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:51   ` Hannes Reinecke
2020-11-30  7:51     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:51     ` Hannes Reinecke
2020-11-30 10:29   ` Jan Kara
2020-11-30 10:29     ` [dm-devel] " Jan Kara
2020-11-30 10:29     ` Jan Kara
2020-11-28 16:15 ` [PATCH 45/45] block: stop using bdget_disk for partition 0 Christoph Hellwig
2020-11-28 16:15   ` [dm-devel] " Christoph Hellwig
2020-11-28 16:15   ` Christoph Hellwig
2020-11-30  7:51   ` Hannes Reinecke
2020-11-30  7:51     ` [dm-devel] " Hannes Reinecke
2020-11-30  7:51     ` Hannes Reinecke
2020-11-30 17:19 ` merge struct block_device and struct hd_struct v4 Christoph Hellwig
2020-11-30 17:19   ` [dm-devel] " Christoph Hellwig
2020-11-30 17:19   ` Christoph Hellwig
2020-11-30 17:51   ` Jens Axboe
2020-11-30 17:51     ` [dm-devel] " Jens Axboe
2020-11-30 17:51     ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2020-11-24 13:27 merge struct block_device and struct hd_struct v2 Christoph Hellwig
2020-11-24 13:27 ` [PATCH 05/45] mtip32xx: remove the call to fsync_bdev on removal Christoph Hellwig
2020-11-24 13:27   ` Christoph Hellwig
2020-11-25 12:31   ` Jan Kara
2020-11-25 12:31     ` Jan Kara

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201128161510.347752-6-hch@lst.de \
    --to=hch@lst.de \
    --cc=axboe@kernel.dk \
    --cc=colyli@suse.de \
    --cc=dm-devel@redhat.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jack@suse.com \
    --cc=jack@suse.cz \
    --cc=johannes.thumshirn@wdc.com \
    --cc=josef@toxicpanda.com \
    --cc=linux-bcache@vger.kernel.org \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=snitzer@redhat.com \
    --cc=tj@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.