From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 377AE1A681B for ; Tue, 28 Jul 2026 17:41:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785260518; cv=none; b=o58mFzc202e32rxuB4cE/nZW4mgXKR/z4HzJ2FXyeVc1isonatedSUmn/+EwLSIUa00r2qurZ9/RKrrOWYX+cdFZY84J8LVD4Srb+v3Xl1qGFwKvwYbaBur9KW5Ju/TwuB9JywG6ZO+wtOEcSztluoDt7vmtPAVnE50vUbEiDWM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785260518; c=relaxed/simple; bh=M4oMbb8ckPsdfb0HP5T4yNPqFAUT18rBc63s3A87AKU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=RGCFgouW/yEe9eGiT35QvoXdTErowt7uHo/q/5zAidko2YUI5jbaCosbKsMLy4gG1GbM6Tuz6yXpocEf9On9pDeu5MH36NofO0Bi7SIR/pW40TTMZdGtv8L+hrLJjiQ6JKZIEcmlO0W9cQ35DVjCBdrEWtin81/2qZmbZt9uOqo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=dthcuVVh; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="dthcuVVh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7443F1F000E9; Tue, 28 Jul 2026 17:41:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1785260516; bh=k8TesSH3bKrX8E4xIp3jx6Hc1Ou7h92YXc7rtITwjWs=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=dthcuVVhWa1tT7qwAeA8vlPp03ym0WtJP54qDqhhty+pq2PzQaSTXMDHgzS4F0GLI J3NJ0EhG9OuYhm05RZpbNy+5iJdhAuMOwRBnD1vGd98m0gdth/WYyejGsApcr2THnn Skeoc6rvPe7fmtC/Gdb3xVyc+Xg/61dagqJ2e2cUE5kCUA+lP2DFkhLdNTlhzf1uUe YwcwxJQ9UjIOAy4WwsQta53rORpF8X49wblSwoF1CE0IOuLBtrjqFo1W5kO+d1/709 D0MkDCC02ADDxF8LDtLNnDL0YW1G2FJYrchGz1R0N777tNSMRCXDp16G31Er+kLce9 aPIiboFCQT5jA== Date: Tue, 28 Jul 2026 11:41:55 -0600 From: Keith Busch To: Nilay Shroff Cc: linux-nvme@lists.infradead.org, linux-kernel@vger.kernel.org, hch@lst.de, elver@google.com, sagi@grimberg.me, axboe@fb.com, bvanassche@acm.org, gjoyce@linux.ibm.com Subject: Re: [PATCH v4 00/20] Support Clang context analysis for NVMe host drivers Message-ID: References: <20260713115444.465704-1-nilay@linux.ibm.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260713115444.465704-1-nilay@linux.ibm.com> On Mon, Jul 13, 2026 at 05:24:01PM +0530, Nilay Shroff wrote: > Marco Elver (1): > list: Permit context-unguarded access with list_empty_careful() > > Nilay Shroff (19): > list: introduce LIST_HEAD_GUARDED > nvme: update nvme_passthru_end() signature > nvme: add context annotations for nvme_passthru_{start|stop} > nvme: add context annotations for nvme_ns_head::srcu > nvme: remove redundant initialization of nvme_ns_head::requeue_list > nvme: add context annotations for nvme_ns_head::requeue_list > nvme: add context annotations for nvme_ns_head::current_path > nvme: add context annotations for nvme_dev::shutdown_lock > nvme: remove redundant initialization of delayed_removal_secs > nvme: add context annotations for nvme_subsystem::lock > nvme: add context annotations for nvme_ctrl::ana_lock > nvme: add context annotations for nvme_subsystems_lock > nvme: add context annotations in fabric.c > nvme: add context annotations for nvme_queue::sq_lock > nvme: add context annotations in rdma.c > nvme: fix context analysis warning in rdma.c > nvme: add context annotations in tcp.c > nvme: fix context analysis warning in tcp.c > nvme: enable context analysis support for nvme host driver > > drivers/nvme/host/Makefile | 1 + > drivers/nvme/host/core.c | 14 ++++++++--- > drivers/nvme/host/fabrics.c | 4 ++-- > drivers/nvme/host/ioctl.c | 2 +- > drivers/nvme/host/multipath.c | 9 +++++-- > drivers/nvme/host/nvme.h | 44 ++++++++++++++++++++++++----------- > drivers/nvme/host/pci.c | 22 ++++++++++++++---- > drivers/nvme/host/rdma.c | 25 ++++++++++++-------- > drivers/nvme/host/tcp.c | 15 ++++++++---- > include/linux/list.h | 9 +++++++ Looks good to me. It doesn't look like there's a single source for updating list.h, so any concern with taking this series through the nvme tree?