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 X-Spam-Level: X-Spam-Status: No, score=-13.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2F1E7C64E7A for ; Tue, 1 Dec 2020 22:22:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CBACB20870 for ; Tue, 1 Dec 2020 22:22:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726405AbgLAWWn (ORCPT ); Tue, 1 Dec 2020 17:22:43 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34984 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725941AbgLAWWm (ORCPT ); Tue, 1 Dec 2020 17:22:42 -0500 Received: from ms.lwn.net (ms.lwn.net [IPv6:2600:3c01:e000:3a1::42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 80B48C0613CF; Tue, 1 Dec 2020 14:22:02 -0800 (PST) Received: from lwn.net (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id CA8BB750; Tue, 1 Dec 2020 22:21:20 +0000 (UTC) Date: Tue, 1 Dec 2020 15:21:19 -0700 From: Jonathan Corbet To: Gabriel Krisman Bertazi Cc: luto@kernel.org, tglx@linutronix.de, keescook@chromium.org, gofmanp@gmail.com, christian.brauner@ubuntu.com, peterz@infradead.org, willy@infradead.org, shuah@kernel.org, linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, linux-kselftest@vger.kernel.org, x86@kernel.org, kernel@collabora.com Subject: Re: [PATCH v8 7/7] docs: Document Syscall User Dispatch Message-ID: <20201201152119.3654ba61@lwn.net> In-Reply-To: <20201127193238.821364-8-krisman@collabora.com> References: <20201127193238.821364-1-krisman@collabora.com> <20201127193238.821364-8-krisman@collabora.com> Organization: LWN.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On Fri, 27 Nov 2020 14:32:38 -0500 Gabriel Krisman Bertazi wrote: > Explain the interface, provide some background and security notes. > > Signed-off-by: Gabriel Krisman Bertazi > Reviewed-by: Kees Cook > Acked-by: Peter Zijlstra (Intel) Nice to see documentation included...:) One nit: > --- > Changes since v7: > - Change process -> thread (Florian Weimer) > - Drop bogus reference to CONFIG_SYSCALL_USER_DISPATCH (me) > - Document the interval as a half-open interval (me) > --- > .../admin-guide/syscall-user-dispatch.rst | 87 +++++++++++++++++++ > 1 file changed, 87 insertions(+) > create mode 100644 Documentation/admin-guide/syscall-user-dispatch.rst You need to add this file to index.rst in that directory as well so it gets included in the docs build. Thanks, jon