linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] block: Switch to using refcount_t for zone write plugs
@ 2024-11-07  6:54 Damien Le Moal
  2024-11-07  7:27 ` Christoph Hellwig
  2024-11-07 18:28 ` Jens Axboe
  0 siblings, 2 replies; 5+ messages in thread
From: Damien Le Moal @ 2024-11-07  6:54 UTC (permalink / raw)
  To: Jens Axboe, linux-block; +Cc: Christoph Hellwig

Replace the raw atomic_t reference counting of zone write plugs with a
refcount_t.  No functional changes.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202411050650.ilIZa8S7-lkp@intel.com/
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
---
 block/blk-zoned.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/block/blk-zoned.c b/block/blk-zoned.c
index 797a5d30ac01..70211751df16 100644
--- a/block/blk-zoned.c
+++ b/block/blk-zoned.c
@@ -18,7 +18,7 @@
 #include <linux/vmalloc.h>
 #include <linux/sched/mm.h>
 #include <linux/spinlock.h>
-#include <linux/atomic.h>
+#include <linux/refcount.h>
 #include <linux/mempool.h>
 
 #include "blk.h"
@@ -64,7 +64,7 @@ static const char *const zone_cond_name[] = {
 struct blk_zone_wplug {
 	struct hlist_node	node;
 	struct list_head	link;
-	atomic_t		ref;
+	refcount_t		ref;
 	spinlock_t		lock;
 	unsigned int		flags;
 	unsigned int		zone_no;
@@ -404,7 +404,7 @@ static struct blk_zone_wplug *disk_get_zone_wplug(struct gendisk *disk,
 
 	hlist_for_each_entry_rcu(zwplug, &disk->zone_wplugs_hash[idx], node) {
 		if (zwplug->zone_no == zno &&
-		    atomic_inc_not_zero(&zwplug->ref)) {
+		    refcount_inc_not_zero(&zwplug->ref)) {
 			rcu_read_unlock();
 			return zwplug;
 		}
@@ -425,7 +425,7 @@ static void disk_free_zone_wplug_rcu(struct rcu_head *rcu_head)
 
 static inline void disk_put_zone_wplug(struct blk_zone_wplug *zwplug)
 {
-	if (atomic_dec_and_test(&zwplug->ref)) {
+	if (refcount_dec_and_test(&zwplug->ref)) {
 		WARN_ON_ONCE(!bio_list_empty(&zwplug->bio_list));
 		WARN_ON_ONCE(!list_empty(&zwplug->link));
 		WARN_ON_ONCE(!(zwplug->flags & BLK_ZONE_WPLUG_UNHASHED));
@@ -456,7 +456,7 @@ static inline bool disk_should_remove_zone_wplug(struct gendisk *disk,
 	 * taken when the plug was allocated and another reference taken by the
 	 * caller context).
 	 */
-	if (atomic_read(&zwplug->ref) > 2)
+	if (refcount_read(&zwplug->ref) > 2)
 		return false;
 
 	/* We can remove zone write plugs for zones that are empty or full. */
@@ -526,7 +526,7 @@ static struct blk_zone_wplug *disk_get_and_lock_zone_wplug(struct gendisk *disk,
 
 	INIT_HLIST_NODE(&zwplug->node);
 	INIT_LIST_HEAD(&zwplug->link);
-	atomic_set(&zwplug->ref, 2);
+	refcount_set(&zwplug->ref, 2);
 	spin_lock_init(&zwplug->lock);
 	zwplug->flags = 0;
 	zwplug->zone_no = zno;
@@ -617,7 +617,7 @@ static inline void disk_zone_wplug_set_error(struct gendisk *disk,
 	 * finished.
 	 */
 	zwplug->flags |= BLK_ZONE_WPLUG_ERROR;
-	atomic_inc(&zwplug->ref);
+	refcount_inc(&zwplug->ref);
 
 	spin_lock_irqsave(&disk->zone_wplugs_lock, flags);
 	list_add_tail(&zwplug->link, &disk->zone_wplugs_err_list);
@@ -1092,7 +1092,7 @@ static void disk_zone_wplug_schedule_bio_work(struct gendisk *disk,
 	 * reference we take here.
 	 */
 	WARN_ON_ONCE(!(zwplug->flags & BLK_ZONE_WPLUG_PLUGGED));
-	atomic_inc(&zwplug->ref);
+	refcount_inc(&zwplug->ref);
 	queue_work(disk->zone_wplugs_wq, &zwplug->bio_work);
 }
 
@@ -1437,7 +1437,7 @@ static void disk_destroy_zone_wplugs_hash_table(struct gendisk *disk)
 		while (!hlist_empty(&disk->zone_wplugs_hash[i])) {
 			zwplug = hlist_entry(disk->zone_wplugs_hash[i].first,
 					     struct blk_zone_wplug, node);
-			atomic_inc(&zwplug->ref);
+			refcount_inc(&zwplug->ref);
 			disk_remove_zone_wplug(disk, zwplug);
 			disk_put_zone_wplug(zwplug);
 		}
@@ -1851,7 +1851,7 @@ int queue_zone_wplugs_show(void *data, struct seq_file *m)
 			spin_lock_irqsave(&zwplug->lock, flags);
 			zwp_zone_no = zwplug->zone_no;
 			zwp_flags = zwplug->flags;
-			zwp_ref = atomic_read(&zwplug->ref);
+			zwp_ref = refcount_read(&zwplug->ref);
 			zwp_wp_offset = zwplug->wp_offset;
 			zwp_bio_list_size = bio_list_size(&zwplug->bio_list);
 			spin_unlock_irqrestore(&zwplug->lock, flags);
-- 
2.47.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Switch to using refcount_t for zone write plugs
  2024-11-07  6:54 [PATCH] block: Switch to using refcount_t for zone write plugs Damien Le Moal
@ 2024-11-07  7:27 ` Christoph Hellwig
  2024-11-07 12:07   ` Damien Le Moal
  2024-11-07 18:28 ` Jens Axboe
  1 sibling, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2024-11-07  7:27 UTC (permalink / raw)
  To: Damien Le Moal; +Cc: Jens Axboe, linux-block, Christoph Hellwig

On Thu, Nov 07, 2024 at 03:54:38PM +0900, Damien Le Moal wrote:
> Replace the raw atomic_t reference counting of zone write plugs with a
> refcount_t.  No functional changes.

I don't quite see the point, but if Jens wants to take it the code
changes look correct to me:

Reviewed-by: Christoph Hellwig <hch@lst.de>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Switch to using refcount_t for zone write plugs
  2024-11-07  7:27 ` Christoph Hellwig
@ 2024-11-07 12:07   ` Damien Le Moal
  2024-11-07 18:16     ` Bart Van Assche
  0 siblings, 1 reply; 5+ messages in thread
From: Damien Le Moal @ 2024-11-07 12:07 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Jens Axboe, linux-block

On 11/7/24 16:27, Christoph Hellwig wrote:
> On Thu, Nov 07, 2024 at 03:54:38PM +0900, Damien Le Moal wrote:
>> Replace the raw atomic_t reference counting of zone write plugs with a
>> refcount_t.  No functional changes.
> 
> I don't quite see the point, but if Jens wants to take it the code
> changes look correct to me:

The point is only to avoid kernel bots screaming about the use of atomic for
refcounting. Nothing more than that.

> Reviewed-by: Christoph Hellwig <hch@lst.de>

Thanks.

-- 
Damien Le Moal
Western Digital Research

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Switch to using refcount_t for zone write plugs
  2024-11-07 12:07   ` Damien Le Moal
@ 2024-11-07 18:16     ` Bart Van Assche
  0 siblings, 0 replies; 5+ messages in thread
From: Bart Van Assche @ 2024-11-07 18:16 UTC (permalink / raw)
  To: Damien Le Moal, Christoph Hellwig; +Cc: Jens Axboe, linux-block

On 11/7/24 4:07 AM, Damien Le Moal wrote:
> On 11/7/24 16:27, Christoph Hellwig wrote:
>> On Thu, Nov 07, 2024 at 03:54:38PM +0900, Damien Le Moal wrote:
>>> Replace the raw atomic_t reference counting of zone write plugs with a
>>> refcount_t.  No functional changes.
>>
>> I don't quite see the point, but if Jens wants to take it the code
>> changes look correct to me:
> 
> The point is only to avoid kernel bots screaming about the use of atomic for
> refcounting. Nothing more than that.

There may be better approaches to achieve this goal, e.g. introducing an
annotation scheme that makes these bots ignore zwplug->ref. I prefer the
annotation approach because I'm concerned that this patch will have a
negative performance for ZNS and ZUFS devices.

Thanks,

Bart.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Switch to using refcount_t for zone write plugs
  2024-11-07  6:54 [PATCH] block: Switch to using refcount_t for zone write plugs Damien Le Moal
  2024-11-07  7:27 ` Christoph Hellwig
@ 2024-11-07 18:28 ` Jens Axboe
  1 sibling, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2024-11-07 18:28 UTC (permalink / raw)
  To: linux-block, Damien Le Moal; +Cc: Christoph Hellwig


On Thu, 07 Nov 2024 15:54:38 +0900, Damien Le Moal wrote:
> Replace the raw atomic_t reference counting of zone write plugs with a
> refcount_t.  No functional changes.
> 
> 

Applied, thanks!

[1/1] block: Switch to using refcount_t for zone write plugs
      commit: 4122fef16b172f7c1838fcf74340268c86ed96db

Best regards,
-- 
Jens Axboe




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-11-07 18:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-07  6:54 [PATCH] block: Switch to using refcount_t for zone write plugs Damien Le Moal
2024-11-07  7:27 ` Christoph Hellwig
2024-11-07 12:07   ` Damien Le Moal
2024-11-07 18:16     ` Bart Van Assche
2024-11-07 18:28 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).