From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 BCDAD5FF18 for ; Wed, 13 Dec 2023 19:57:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="mlPmjWfp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E57C6C433C8; Wed, 13 Dec 2023 19:57:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702497449; bh=S+s9WiqhFrQqzTa37glB4EKXWjxpjTJ1+yD+u+AfsXQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=mlPmjWfp1Bgbrdo16JSX6di7M3RQ/kcbltbPJ8cLeZEuyYUHkGAeeQtcu0OylPfET o/2s/jdr84tX5NByLx3RMbHHzY6VH2KLfK+jlS7MaYH4+GNwqAmG71SMj+eXUQBv98 7GvYrTQty4gzyFO+LWhVRhwaN8DdHKg6IBO5bltHF7vGaibElluhCin2zKKFu/npdu LY6H+2wZP1QmEURpPIgLqPE6YxaDpo6Az+OOByzJbcWtfu/NByUDhwgpQ8smvcq5/9 9W30uA794ykQ9oJjDkpKq2g06hB2WAmWDbAmpnc0zLcwQE7Tfy212u8K+IxW+gOkgq JX8mb+VOI09Jg== Date: Wed, 13 Dec 2023 11:57:27 -0800 From: Keith Busch To: Bart Van Assche Cc: Jens Axboe , linux-block@vger.kernel.org, Christoph Hellwig , Luis Chamberlain , Ming Lei Subject: Re: [PATCH] block: Use pr_info() instead of printk(KERN_INFO ...) Message-ID: References: <20231213194702.90381-1-bvanassche@acm.org> Precedence: bulk X-Mailing-List: linux-block@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: <20231213194702.90381-1-bvanassche@acm.org> On Wed, Dec 13, 2023 at 11:47:02AM -0800, Bart Van Assche wrote: > Switch to the modern style of printing kernel messages. Use %u instead > of %d to print unsigned integers. Looks good. Reviewed-by: Keith Busch