From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta1.formilux.org (mta1.formilux.org [51.159.59.229]) (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 C4F5840DFCD for ; Sun, 19 Apr 2026 15:33:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=51.159.59.229 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776612840; cv=none; b=DlllXmp9rnQDQutZ1aTCaRy+6iklDYIeE+OCgq0WO2rzx4OVYYSRZha2097U/4zEwnuEmXq6EIRhnh8fIbMhyM+dT8WS3XKFNNbuQR/bdRIcFf6nAaQUqYM/X9GXPF1g6VczQIBak4srToTMObiI83OWvduTCcy7vjnVkkWGHrY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776612840; c=relaxed/simple; bh=7/fDKiSgoWpG3xK/Xwo41eUq4vO4rySyOkuaNky/WQA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=uwc9t0EwaI+NEMgvZdsG1RyczPBCUfPZZwCm3zMxYjGKJ/L0pRHP3T84HNGfojLZQe0uaKMdrr9pHyV4k19YafKhG3ikbHDkPkgGgrhGmMSdVSNip4kms9t6yevDFUxx+RjXfssHvnQRfZahWlFiFagf7XIatU591jz4UZgHoo4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=1wt.eu; spf=pass smtp.mailfrom=1wt.eu; dkim=pass (1024-bit key) header.d=1wt.eu header.i=@1wt.eu header.b=iLqgnTjK; arc=none smtp.client-ip=51.159.59.229 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=1wt.eu Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=1wt.eu Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=1wt.eu header.i=@1wt.eu header.b="iLqgnTjK" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1wt.eu; s=mail; t=1776612838; bh=7/fDKiSgoWpG3xK/Xwo41eUq4vO4rySyOkuaNky/WQA=; h=From:Message-ID:From; b=iLqgnTjKFETciFB+KOhAhdHPTHyF4QrgJPfBQgsXgxcATehFUdKdl3Aqn2YdZh6Te YVrv3QIj1TPaoStkEdXqSFYpEuwvOHUN9UG0cunSuuJVlh3SCdPr36/C+ac/R0Kl/d zcjffoyxWC6Z1XrGiJACJtUrMqUIOwcnVCNheHu0= Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by mta1.formilux.org (Postfix) with ESMTP id 5A49FC09AE; Sun, 19 Apr 2026 17:33:58 +0200 (CEST) Date: Sun, 19 Apr 2026 17:33:58 +0200 From: Willy Tarreau To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/3] selftests/nolibc: drop unnecessary 'mode' argument to open() Message-ID: References: <20260419-nolibc-open-mode-v1-0-8dc5a960daa7@weissschuh.net> <20260419-nolibc-open-mode-v1-1-8dc5a960daa7@weissschuh.net> 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=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260419-nolibc-open-mode-v1-1-8dc5a960daa7@weissschuh.net> On Sun, Apr 19, 2026 at 05:29:03PM +0200, Thomas Weißschuh wrote: > The mode is unnecessary here, drop it. Indeed and it's even desirable *not* to have it since applications will generally not have it either and we'd prefer to detect bugs that affect them. > Signed-off-by: Thomas Weißschuh Acked-by: Willy Tarreau willy