From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) (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 002B538F620; Sun, 26 Apr 2026 20:44:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=90.155.50.34 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777236297; cv=none; b=IvE32w302fzl0vQZ3fFvGivnWFoyMalACRoI1qr3mBSfQ0p9wLKaNqKY4fhSF5PLkjKGaGDi8QraKnBD4klRrPe51xPUCONHTyIQBCNOgy3zfksmyDe2zrpzkC6cgDKTMg2uvuyd5b0LwgvHr9vXOq+pu/mUXK6X10Qtv5ETEdQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777236297; c=relaxed/simple; bh=A4cX4SCoQqheLqNNtb4gR1vv39pWcfx9UbYePfIDCiU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=WmQusQCtFnF6XU4vGnaPgtymaPxFtCf/orpBqkd14NGjmuYnGSmnx4QSyZZ72Mpyj9vHibkWosuWkGt5hbKTdmuE9y+zeWPybodoL3xQqVL3awkxNGtD9byVRcSG2HbW6p1nm94AJU3cArO0dk53BiDVidcjAoUbbnDgZIWONCo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=S4pLnzvZ; arc=none smtp.client-ip=90.155.50.34 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="S4pLnzvZ" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=I/fTyPP7bqTqt5fNYUoxgKpJh1vpEuR3aFaCVhySFZA=; b=S4pLnzvZn8wrgvL75yH/njOHFS qi3So9o5mDIDheJ6DeCD+gLAKuPaApFP2a8iw+bbRYYCoD/CnPn4F/8/qF9X0VR82yMqoVLxjrGXD TJeQqJOfcmOUSNfU3NU4CENu6sp4ZXRaXpZAhne0g/1iAKHtEthPIWv7t8ZaiUYqynOAJAElxhNWZ xEfa8BbC6KdRILxUzJq1iyPFoHLd/DVKd4aDMy+TQq7ZRG161vtP/TDWWUAV4n7Q/AaBcDJxsR6C8 LjDHkjlkKkPE5BdVjJlG2EGpbcUcbDhERYKOxZ5FbtGCS/ZPdO1ogRAMxRRB8lLq9Vn0ntAHBRU81 GOxj8lHw==; Received: from willy by casper.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1wH6LD-00000000zSI-3g9m; Sun, 26 Apr 2026 20:44:35 +0000 Date: Sun, 26 Apr 2026 21:44:35 +0100 From: Matthew Wilcox To: Jeff Layton Cc: Alexander Viro , Christian Brauner , Jan Kara , Andrew Morton , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Mike Snitzer , Jens Axboe , Ritesh Harjani , Christoph Hellwig , Kairui Song , Qi Zheng , Shakeel Butt , Barry Song , Axel Rasmussen , Yuanchu Xie , Wei Xu , Steven Rostedt , Masami Hiramatsu , Mathieu Desnoyers , Chuck Lever , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-nfs@vger.kernel.org, linux-mm@kvack.org, linux-trace-kernel@vger.kernel.org Subject: Re: [PATCH v3 2/4] mm: kick writeback flusher for IOCB_DONTCACHE with targeted dirty tracking Message-ID: References: <20260426-dontcache-v3-0-79eb37da9547@kernel.org> <20260426-dontcache-v3-2-79eb37da9547@kernel.org> Precedence: bulk X-Mailing-List: linux-trace-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: <20260426-dontcache-v3-2-79eb37da9547@kernel.org> On Sun, Apr 26, 2026 at 07:56:08AM -0400, Jeff Layton wrote: > Mixed-mode noisy neighbor (dontcache writer + buffered readers): > baseline patched change > writer (MB/s) 1297.6 1471.1 +13.4% > readers avg (MB/s) 855.0 462.4 -45.9% hm. This wasn't what I thought of when I thought of "noisy neighbour". I'd have process A doing DONTCACHE writes to file A and process B doing normal buffered writes to file B.