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 C4BEFC77B73 for ; Sat, 27 May 2023 01:08:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230317AbjE0BIu (ORCPT ); Fri, 26 May 2023 21:08:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53520 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229828AbjE0BIs (ORCPT ); Fri, 26 May 2023 21:08:48 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9D265189 for ; Fri, 26 May 2023 18:08:47 -0700 (PDT) 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 dfw.source.kernel.org (Postfix) with ESMTPS id 23C71654A8 for ; Sat, 27 May 2023 01:08:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CECFFC433D2; Sat, 27 May 2023 01:08:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1685149726; bh=5zHdJvK0bRkHVe/BmCiGndweGuWhBH6cjRIMmLkfBi8=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=Yn5ttwEb4eOBNsxFRNaaKLoRAE0oaarcy3jczitqa0fQZz9JIWsPlV+QDEjoOazUV JeoDyIHBJEW1zs0+LkrRU3D4B0eb3PvBLeuri5uSFyD5UMg3QdX2JV9y3IYQv1BIlW puUR5KhLkbtSPGR9HUhR6ZxrtxZFOot1yo8YBVmOye1fNsuPh4kzZgl00bOSU+vZfh ayjW+kLDNYEYmSznXcLjQdTM/yIdiJUuil/DoaFN58Sb1dn8KIrXrU8jSNZSlfdLQB RjyQ+iwmAxl/x94z8JS5lAZ5YBOa8lBvYztVJQOGK15c70HVS62KyyB566CnEW0lHQ sm6Xh/p7tt7xw== Date: Fri, 26 May 2023 18:08:44 -0700 From: Jakub Kicinski To: David Howells Cc: netdev@vger.kernel.org, "David S. Miller" , Eric Dumazet , Paolo Abeni , Willem de Bruijn , David Ahern , Matthew Wilcox , Jens Axboe , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Chuck Lever , Boris Pismenny , John Fastabend Subject: Re: [PATCH net-next 09/12] tls/sw: Support MSG_SPLICE_PAGES Message-ID: <20230526180844.73745d78@kernel.org> In-Reply-To: <20230524153311.3625329-10-dhowells@redhat.com> References: <20230524153311.3625329-1-dhowells@redhat.com> <20230524153311.3625329-10-dhowells@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 24 May 2023 16:33:08 +0100 David Howells wrote: > +static int rls_sw_sendmsg_splice(struct sock *sk, struct msghdr *msg, s/rls/tls/ ? Will the TLS selftests under tools/.../net/tls.c exercise this?