From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 92B1AC43219 for ; Sat, 19 Nov 2022 01:22:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230453AbiKSBVy (ORCPT ); Fri, 18 Nov 2022 20:21:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51622 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232030AbiKSBV1 (ORCPT ); Fri, 18 Nov 2022 20:21:27 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AF2D1FC1A4; Fri, 18 Nov 2022 16:20:13 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 64616B825A8; Sat, 19 Nov 2022 00:20:12 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1B422C433C1; Sat, 19 Nov 2022 00:20:10 +0000 (UTC) Authentication-Results: smtp.kernel.org; dkim=pass (1024-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b="OiCwvmLK" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zx2c4.com; s=20210105; t=1668817207; 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: in-reply-to:in-reply-to:references:references; bh=Zc5Gig4VbI4saQAOBF8fdoMv4wyPQ60/rO49VQYER9w=; b=OiCwvmLK9GFpbvFfKRHvzf0VLzzAq+B3elInHWpjexo2STNnnLPWojyXuNT9ff4TJgOoyY fq8CVZMhsZhng9PsdZfITNjcFDNBV5kH7l/axDo1hQeN6dzsPpz3GOGoVdzbhzegkxKcSK IOPZHTjp7WjcrLLJEBXrn92MfczltYM= Received: by mail.zx2c4.com (ZX2C4 Mail Server) with ESMTPSA id ffce2f31 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sat, 19 Nov 2022 00:20:07 +0000 (UTC) Date: Sat, 19 Nov 2022 01:20:05 +0100 From: "Jason A. Donenfeld" To: linux-kernel@vger.kernel.org, patches@lists.linux.dev Cc: linux-crypto@vger.kernel.org, x86@kernel.org, Thomas Gleixner , Greg Kroah-Hartman , Adhemerval Zanella Netto , Carlos O'Donell Subject: Re: [PATCH v4 1/3] random: add vgetrandom_alloc() syscall Message-ID: References: <20221118172839.2653829-1-Jason@zx2c4.com> <20221118172839.2653829-2-Jason@zx2c4.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20221118172839.2653829-2-Jason@zx2c4.com> Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org On Fri, Nov 18, 2022 at 06:28:37PM +0100, Jason A. Donenfeld wrote: > diff --git a/arch/x86/entry/syscalls/syscall_32.tbl b/arch/x86/entry/syscalls/syscall_32.tbl > index 320480a8db4f..ea0fbc2ded5e 100644 > --- a/arch/x86/entry/syscalls/syscall_32.tbl > +++ b/arch/x86/entry/syscalls/syscall_32.tbl This also needs to be wired into unistd.h, sys_ni.c, and checksyscalls.sh, with its definition dependent on a new __ARCH_WANT_VGETRANDOM_ALLOC macro symbol, like all the other new syscalls that get added arch-by-arch. I'll do this for v+1. Jason