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 2F82DEB64D9 for ; Wed, 12 Jul 2023 08:04:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231226AbjGLIEG (ORCPT ); Wed, 12 Jul 2023 04:04:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40738 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231646AbjGLIDw (ORCPT ); Wed, 12 Jul 2023 04:03:52 -0400 Received: from out-16.mta0.migadu.com (out-16.mta0.migadu.com [IPv6:2001:41d0:1004:224b::10]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0A91919A7 for ; Wed, 12 Jul 2023 01:03:49 -0700 (PDT) Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1689149028; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=O0Bqn9KeuYfuEBwho/CBqy2f7wayGj8KewGy0AzMbok=; b=Ar/Bt5TxNrSEdD48yZmoAaSVCi7HVxofNx/BxPRNVcQBy7pNyyENB+x6Jrh+LMxeRQfxI8 b2+ntlGc4LtWGeFu4B5xdwGjZhsSlJMkadGhK+PYtvPrvawJWTgcc7qQ3a6RScSvkEYkbN hw5mInJqwzONi5c3jPYgveUSDOEj/4A= Date: Wed, 12 Jul 2023 16:03:41 +0800 MIME-Version: 1.0 Subject: Re: [PATCH 1/3] fs: split off vfs_getdents function of getdents64 syscall Content-Language: en-US To: Ammar Faizi Cc: io-uring Mailing List , Jens Axboe , Dominique Martinet , Pavel Begunkov , Christian Brauner , Alexander Viro , Stefan Roesch , Clay Harris , Dave Chinner , Linux Fsdevel Mailing List , Wanpeng Li References: <20230711114027.59945-1-hao.xu@linux.dev> <20230711114027.59945-2-hao.xu@linux.dev> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Hao Xu In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org On 7/11/23 21:02, Ammar Faizi wrote: > On Tue, Jul 11, 2023 at 07:40:25PM +0800, Hao Xu wrote: >> This splits off the vfs_getdents function from the getdents64 system >> call. >> This will allow io_uring to call the vfs_getdents function. >> >> Co-developed-by: Stefan Roesch >> Signed-off-by: Stefan Roesch >> Signed-off-by: Dominique Martinet >> --- > > Since you took this, it needs your Signed-off-by. > Hi Ammar, I just add this signed-off-by of Stefan to resolve the checkpatch complain, no code change.