Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp22563imm; Tue, 3 Jul 2018 13:08:01 -0700 (PDT) X-Google-Smtp-Source: ADUXVKLl33EYFRBZJewfElnXoTS779SRk9vMgPUEPoegdJySKj8l2gRDneVDiTKJOkbSMw8ahqr+ X-Received: by 2002:a17:902:8:: with SMTP id 8-v6mr32154641pla.287.1530648481443; Tue, 03 Jul 2018 13:08:01 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1530648481; cv=none; d=google.com; s=arc-20160816; b=g157LcuIkreST30JhdH9/emMLv3+jH3P7ZAWifDGJ9YjMWYQne4k21nNs5W/gaXMD/ Bmho3URUvyWmTWP96PbIMFvqA7+skwQCRiZb3k5Du1nFyoI4RA1Th52gR7KeERPoaYCQ AimrCGPS+l0MJ/r0zoNiDhqvrf3XbMESJ46b6tIaQJHRLpqmBs89E5KyRl++cJUzGdk4 tL0BWRU5LRucgnzl5RhofF/5Qdk+iHYV+j9OGmPnrGqbVTuJWrudpel+5d7ktzqQYhoB gxvzhjjL3eQuGH8MPpdl7jVvshQnIIsq9zPFSZ2Y+dCEkACk54pyWQD0lJr7k/ZiPkvd oZxA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=1AjRxU9aYejEC3VeKKDOPukbSqF0pzPmp604UvJGrz0=; b=0rV7j6m6/yKZMxbBCOKTDz5qEYP0hn4GZsnFGo6/2O0LRMUg/8l4KwCosJ9tZnD2cp lwlOfS8Zfoagah2MmZ4tA0FtpwYULEtuu14Ha5lrESZI5aD+JwYFLnzCSjk/LwNiisZi 5ztXoMRGf68JjuGPMYi4j2N9zWY86IEewr/dNl8k1/wGmG9SPFxXtQPF1FC7JQ9I9D7Y fVCGugFF6lyBahwvfC2Q5KAtBMaCqOl00hxR4i2H9abp7BHfA/J5blRPJNzQ2Sd6CBcW MqsTGdltziOYrGq3AYvPa7anVC4W+EsdeyU8NqN7KNYTwA2akiK+bOCDeS3aQSigA+vK Rq2w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id t6-v6si1681784plo.508.2018.07.03.13.07.46; Tue, 03 Jul 2018 13:08:01 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753086AbeGCUE5 (ORCPT + 99 others); Tue, 3 Jul 2018 16:04:57 -0400 Received: from Galois.linutronix.de ([146.0.238.70]:45343 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753121AbeGCUCI (ORCPT ); Tue, 3 Jul 2018 16:02:08 -0400 Received: from localhost ([127.0.0.1] helo=bazinga.breakpoint.cc) by Galois.linutronix.de with esmtp (Exim 4.80) (envelope-from ) id 1faRUu-0001tM-9L; Tue, 03 Jul 2018 22:02:00 +0200 From: Sebastian Andrzej Siewior To: linux-kernel@vger.kernel.org Cc: tglx@linutronix.de, Peter Zijlstra , Ingo Molnar , Sebastian Andrzej Siewior , linux-mm@kvack.org, Andrew Morton Subject: [PATCH 3/6] bdi: Use refcount_t for reference counting instead atomic_t Date: Tue, 3 Jul 2018 22:01:38 +0200 Message-Id: <20180703200141.28415-4-bigeasy@linutronix.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180703200141.28415-1-bigeasy@linutronix.de> References: <20180703200141.28415-1-bigeasy@linutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org refcount_t type and corresponding API should be used instead of atomic_t wh= en the variable is used as a reference counter. This allows to avoid accidental refcounter overflows that might lead to use-after-free situations. Cc: linux-mm@kvack.org Cc: Andrew Morton Suggested-by: Peter Zijlstra Acked-by: Peter Zijlstra (Intel) Signed-off-by: Sebastian Andrzej Siewior --- include/linux/backing-dev-defs.h | 3 ++- include/linux/backing-dev.h | 4 ++-- mm/backing-dev.c | 12 ++++++------ 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/include/linux/backing-dev-defs.h b/include/linux/backing-dev-d= efs.h index 24251762c20c..9a6bc0951cfa 100644 --- a/include/linux/backing-dev-defs.h +++ b/include/linux/backing-dev-defs.h @@ -12,6 +12,7 @@ #include #include #include +#include =20 struct page; struct device; @@ -75,7 +76,7 @@ enum wb_reason { */ struct bdi_writeback_congested { unsigned long state; /* WB_[a]sync_congested flags */ - atomic_t refcnt; /* nr of attached wb's and blkg */ + refcount_t refcnt; /* nr of attached wb's and blkg */ =20 #ifdef CONFIG_CGROUP_WRITEBACK struct backing_dev_info *__bdi; /* the associated bdi, set to NULL diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index 72ca0f3d39f3..c28a47cbe355 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h @@ -404,13 +404,13 @@ static inline bool inode_cgwb_enabled(struct inode *i= node) static inline struct bdi_writeback_congested * wb_congested_get_create(struct backing_dev_info *bdi, int blkcg_id, gfp_t = gfp) { - atomic_inc(&bdi->wb_congested->refcnt); + refcount_inc(&bdi->wb_congested->refcnt); return bdi->wb_congested; } =20 static inline void wb_congested_put(struct bdi_writeback_congested *conges= ted) { - if (atomic_dec_and_test(&congested->refcnt)) + if (refcount_dec_and_test(&congested->refcnt)) kfree(congested); } =20 diff --git a/mm/backing-dev.c b/mm/backing-dev.c index 2e5d3df0853d..55a233d75f39 100644 --- a/mm/backing-dev.c +++ b/mm/backing-dev.c @@ -438,10 +438,10 @@ wb_congested_get_create(struct backing_dev_info *bdi,= int blkcg_id, gfp_t gfp) if (new_congested) { /* !found and storage for new one already allocated, insert */ congested =3D new_congested; - new_congested =3D NULL; rb_link_node(&congested->rb_node, parent, node); rb_insert_color(&congested->rb_node, &bdi->cgwb_congested_tree); - goto found; + spin_unlock_irqrestore(&cgwb_lock, flags); + return congested; } =20 spin_unlock_irqrestore(&cgwb_lock, flags); @@ -451,13 +451,13 @@ wb_congested_get_create(struct backing_dev_info *bdi,= int blkcg_id, gfp_t gfp) if (!new_congested) return NULL; =20 - atomic_set(&new_congested->refcnt, 0); + refcount_set(&new_congested->refcnt, 1); new_congested->__bdi =3D bdi; new_congested->blkcg_id =3D blkcg_id; goto retry; =20 found: - atomic_inc(&congested->refcnt); + refcount_inc(&congested->refcnt); spin_unlock_irqrestore(&cgwb_lock, flags); kfree(new_congested); return congested; @@ -474,7 +474,7 @@ void wb_congested_put(struct bdi_writeback_congested *c= ongested) unsigned long flags; =20 local_irq_save(flags); - if (!atomic_dec_and_lock(&congested->refcnt, &cgwb_lock)) { + if (!refcount_dec_and_lock(&congested->refcnt, &cgwb_lock)) { local_irq_restore(flags); return; } @@ -804,7 +804,7 @@ static int cgwb_bdi_init(struct backing_dev_info *bdi) if (!bdi->wb_congested) return -ENOMEM; =20 - atomic_set(&bdi->wb_congested->refcnt, 1); + refcount_set(&bdi->wb_congested->refcnt, 1); =20 err =3D wb_init(&bdi->wb, bdi, 1, GFP_KERNEL); if (err) { --=20 2.18.0