From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.smtpout.orange.fr (smtp-24.smtpout.orange.fr [80.12.242.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EC0B6219E8 for ; Thu, 4 Jan 2024 15:36:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=wanadoo.fr Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=wanadoo.fr Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=wanadoo.fr header.i=@wanadoo.fr header.b="qMvLBmwe" Received: from [192.168.1.18] ([92.140.202.140]) by smtp.orange.fr with ESMTPA id LPlKrqxpy9TFdLPlKrksRV; Thu, 04 Jan 2024 16:36:03 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=wanadoo.fr; s=t20230301; t=1704382563; bh=m/73VPI7SQbIGru8DsYnoCGvDgBHipomOllqcMV7BhM=; h=Date:Subject:To:Cc:References:From:In-Reply-To; b=qMvLBmwewUDSfZ85F12hloX9gXDpLOZFtg0DcsQBqT2/1V8lvWf1yfDFI9xzDxicR wYp7aRkv9z1yb8pbNOpr93IK0a/PJOG7y2dIPBb+rniyoln9OfYYBY5w9/DY74/QhB j7hAWOCv6L5l2pIq4ERxK07Xo9JV2Zkc34B6MWaHx5X8IT6NRMlnp9PVuhvsWu1eJq JaELC/yuWm/5+6Bggn8iIg62uBNcetCxu5Q9Yi2eSVsaVdiCa/QRGVj1SzH/ysqIAh 9IIt292wmhZkWKaZU8z0H9PAw9r2A5DGU4XcPyym26gDl+ezNCqye/7wdOkIMambzd 4rSj3KTbBAE2Q== X-ME-Helo: [192.168.1.18] X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Thu, 04 Jan 2024 16:36:03 +0100 X-ME-IP: 92.140.202.140 Message-ID: Date: Thu, 4 Jan 2024 16:36:00 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] android: removed asm-generic/errno-base.h Content-Language: fr To: Tanzir Hasan , Greg Kroah-Hartman , =?UTF-8?Q?Arve_Hj=C3=B8nnev=C3=A5g?= , Todd Kjos , Martijn Coenen , Joel Fernandes , Christian Brauner , Carlos Llamas , Suren Baghdasaryan Cc: linux-kernel@vger.kernel.org, Nick Desaulniers , Al Viro References: <20231226-binderfs-v1-1-66829e92b523@google.com> From: Christophe JAILLET In-Reply-To: <20231226-binderfs-v1-1-66829e92b523@google.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Le 26/12/2023 à 18:09, Tanzir Hasan a écrit : > asm-generic/errno-base.h can be replaced by linux/errno.h and the file > will still build correctly. It is an asm-generic file which should be > avoided if possible. > > Suggested-by: Al Viro > Signed-off-by: Tanzir Hasan > --- > drivers/android/binderfs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/android/binderfs.c b/drivers/android/binderfs.c > index 1224ab7aa070..d04ff6029480 100644 > --- a/drivers/android/binderfs.c > +++ b/drivers/android/binderfs.c > @@ -29,7 +29,7 @@ > #include > #include > #include > -#include > +#include linux/errno.h is already included a few lines above. CJ > #include > #include > > > --- > base-commit: 606d9c29e71fbf52fcfd3fcc3ad92e444c8e1d47 > change-id: 20231218-binderfs-a758e162e0ba > > Best regards,