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 85C7F1E4BE for ; Wed, 24 Jun 2026 00:19:27 +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=1782260368; cv=none; b=lt3KnkcuElXPbDrD+wc7S8Le2IVNnG2iNGiH97tmRaAh7IKqeco2/PHoQyXp/MeMNZT7iekrIuCZBFzUtU1jfRD9SzZa0iFNS2kn/r+rJ28yM3vrXNgL3puv8BcOdbCFFxDxtywjLMXSsOaF8G5CDl6pnUUQvBVrlqeTiilLl0M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782260368; c=relaxed/simple; bh=dBQyPVbqKPLTt0weeY3MRp8tOQjJg+qjK2T/KtgbdTg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=d6zGn1sgiFmcX8T5xemdzl85urqHD+DhRMfmnKc/kmLvO+EczGzm2jkjcllaV35mVizjluSOuswGVaGBVk4GEYUSPLS2Aa3jA3UYgQhRUVpf1BIL5Ra/HurjoFLFVyp42rEaiDEg7tPfs2L0/R7YUattka3+KyYPH411w6eWIb4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=WN6LjFO/; 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="WN6LjFO/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1106A1F000E9; Wed, 24 Jun 2026 00:19:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782260367; bh=mCzkIn1Rve748otyKAzYdv6wrefG3cqLC7ZgTsMh0Ww=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=WN6LjFO/uhwj0LRfTYUzHdjaYyyTAvL4aMYJkh0qS7/Xc8YUEYTi/HueS7SkS62ah EeRod9UUp0EshEhszB7Dk/oyI/6xaa0+sGLI+vBbF++NoPCda8pbVOjOkH2keKD7vl Y9icHJSXQasKI33yLb8BmvBsckMVCO9boZ4JseLTi2KyswJZIzB5TeMVi/PmUjDYm3 pZXeuswBMKX7jVINHZyICWYvr06UoONIrhwF/DBlydtcLnpiqr+qUVjkojbLRcKQx8 Qy4uRUod1cdB6Di32YKd69abaIYRE0dpkzwZfrp+yR1gZGyd5u06uhAmKNVjjFrMgZ Wzt52tzI/+pSg== From: SeongJae Park To: Igor Putko Cc: SeongJae Park , ryabinin.a.a@gmail.com, glider@google.com, andreyknvl@gmail.com, dvyukov@google.com, vincenzo.frascino@arm.com, linmiaohe@huawei.com, nao.horiguchi@gmail.com, akpm@linux-foundation.org, kasan-dev@googlegroups.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] mm/kasan: remove redundant initialization for kasan_flag_write_only Date: Tue, 23 Jun 2026 17:19:11 -0700 Message-ID: <20260624001911.77632-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260623114743.4565-2-igorpetindev@gmail.com> References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit On Tue, 23 Jun 2026 14:47:42 +0300 Igor Putko wrote: > The static variable 'kasan_flag_write_only' is implicitly initialized > to false. Remove the explicit initialization to follow the Linux > kernel coding style. > > Signed-off-by: Igor Putko Reviewed-by: SeongJae Park Thanks, SJ [...]