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 A6A1F3A1DB for ; Sun, 19 Apr 2026 15:31:47 +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=1776612709; cv=none; b=PCiXJ/nzgzqC3STmHRwoKMPnaW8hrD+pHlhEAjOne90l3V/klkn+K9WC1pJ6Vux5ZP2irtW5IhNBPZxNTGXyorQymvMm/BT4v5hENlvqu0DsERfNBnQeGhZVYSwpFE5pg8jfwFLWcOiS+w/Jx33EmMHnClGDdB/u1FSTMllx9OU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776612709; c=relaxed/simple; bh=0+eRbbYxAkRGaq5Hqt+HoFIjtZWrg6m4twtJQBnYHvA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=fX4IRiky33LG6E2xBF2W3llIomH1jGXW45NDkOSW9zz943ZEeDp5cj/ClWYFQ9bJ4kR4E/EkWNfg2VkHbLNiYSkuZaaT2i0Rz0zumxiWqowfinNeFC8QGfY73CLriSeAo4n/dBVu0JMdBpdrcNvrGWMGUmiVs02ym7Vyg2g+wyE= 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=Pbt/DNIQ; 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="Pbt/DNIQ" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1wt.eu; s=mail; t=1776612706; bh=V5feKI361LA0C1RZHFCYDftXRXeZRTj0TrY2p6ihAR4=; h=From:Message-ID:From; b=Pbt/DNIQ8KvyoTUv+MLByWit3gN9zgR95zlHUJWiRkabcKe8G8E2y3+wSt1CRgu4b P4+lHs7X0WDHDl0vXe15DVS3bxloEpZUf9Xilh9NjCA+lz2f6hziiZoPrgsGC1+G/D li0pFT3b33ACNzMraGWdk3El6y2lmiXVAOLVwiJE= Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by mta1.formilux.org (Postfix) with ESMTP id EAA06C09A5; Sun, 19 Apr 2026 17:31:45 +0200 (CEST) Date: Sun, 19 Apr 2026 17:31:45 +0200 From: Willy Tarreau To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Daniel Palmer , linux-kernel@vger.kernel.org Subject: Re: [PATCH 0/7] tools/nolibc: large file support Message-ID: References: <20260418-nolibc-largefile-v1-0-b91f0775bac3@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: <20260418-nolibc-largefile-v1-0-b91f0775bac3@weissschuh.net> Hi Thomas, On Sat, Apr 18, 2026 at 12:19:55PM +0200, Thomas Weißschuh wrote: > Signed-off-by: Thomas Weißschuh > --- > Thomas Weißschuh (7): > tools/nolibc: also handle _llseek system call > tools/nolibc: add __nolibc_arg_to_reg() > tools/nolibc: cast pointers returned from system calls through integers > tools/nolibc: handle 64-bit system call arguments on x32 > tools/nolibc: handle 64-bit system call arguments on MIPS N32 > tools/nolibc: open files with O_LARGEFILE > selftests/nolibc: test large file support > > tools/include/nolibc/arch-mips.h | 94 +++++++++++++++------------- > tools/include/nolibc/arch-x86.h | 70 ++++++++++----------- > tools/include/nolibc/crt.h | 4 ++ > tools/include/nolibc/fcntl.h | 4 ++ > tools/include/nolibc/sys.h | 14 +++-- > tools/include/nolibc/sys/mman.h | 6 +- > tools/testing/selftests/nolibc/nolibc-test.c | 48 ++++++++++++++ > 7 files changed, 153 insertions(+), 87 deletions(-) > --- > base-commit: 881f42cc68a6723f1fd6bac00b84b9281cf9bca0 > change-id: 20260417-nolibc-largefile-90c85e8443cf Really great series, that's an overall ack from me: Acked-by: Willy Tarreau Please recheck the llseek commit message though. Thanks! Willy