From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-182.mta1.migadu.com (out-182.mta1.migadu.com [95.215.58.182]) (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 41E5732AAB5 for ; Wed, 24 Jun 2026 05:56:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.182 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782280599; cv=none; b=ebOp3ykox598ATUpocatHS1rrxbsISkHWzS69TuXQVe4n9HBg1yfJHzWtotpPjefjQElBEXym95p6XcjxVxZQVLVTu72ExhYNWKVZ3yE+n5XUDFVCdKbL4axWQqHyLTXX51hi0y4mykVV42wilLgT+hdW8mqNqIEoRiyXH3Ph5I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782280599; c=relaxed/simple; bh=/ijWaurZ18Sx6SXLxiKD8dCVm6hSjutFy/lKdsp1CTY=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=Hc2GjwjWHy1jYjK43tAJnJMYPBNn8gLZCRo987GiVy2I1ScGn5cFSHQgOHP3H7wqCVQlmJCPD1+5od/iq5XOngxmmgSaDbdTG4kXmkdx40IYh0/xsnf+Uzm1M8MxF9rYyikISTFd3UfS7GD/R14ZFM3wIK4Gvn/HDjoz4/7pR64= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=FoChaAaS; arc=none smtp.client-ip=95.215.58.182 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="FoChaAaS" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1782280596; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/ijWaurZ18Sx6SXLxiKD8dCVm6hSjutFy/lKdsp1CTY=; b=FoChaAaSGpbsLWThiO/Cqw0MNafyNBYo8O3Pag1Dm59Won177Qxbmhge/H0D5Kv9FGJfMY 4eL3p0v/vgoX3cqO9ocdc31Ah4g43sGkC+fSy7WZVvBvyOTW2dyX4TWvpZdkKk119T/XgY vyDoSl7sXw7EVj0Dur2kVNtScmc1Pts= From: Lance Yang To: igorpetindev@gmail.com Cc: 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, Lance Yang Subject: Re: [PATCH 2/2] mm/memory-failure: remove redundant initialization for hw_memory_failure Date: Wed, 24 Jun 2026 13:56:24 +0800 Message-Id: <20260624055624.7339-1-lance.yang@linux.dev> In-Reply-To: <20260623114743.4565-3-igorpetindev@gmail.com> References: <20260623114743.4565-3-igorpetindev@gmail.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=UTF-8 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT On Tue, Jun 23, 2026 at 02:47:43PM +0300, Igor Putko wrote: >The static variable 'hw_memory_failure' is implicitly initialized >to false. Remove the explicit initialization to follow the Linux >kernel coding style. > >Signed-off-by: Igor Putko >--- Thanks. Reviewed-by: Lance Yang