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 21C6BC433F5 for ; Tue, 28 Dec 2021 18:42:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237093AbhL1Smb (ORCPT ); Tue, 28 Dec 2021 13:42:31 -0500 Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:26638 "EHLO mx0b-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237099AbhL1Smb (ORCPT ); Tue, 28 Dec 2021 13:42:31 -0500 Received: from pps.filterd (m0109331.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 1BSBYRBo022859 for ; Tue, 28 Dec 2021 10:42:30 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fb.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=facebook; bh=sfgxVwJ9IP6g1wkkUcez7qG7wz4P+WMthgIrdf2aTOs=; b=VvQTaZSubnCEg6ubTV6ud+PvPbx3c14WFSrwvNSJpYnW+RsaEdfQ6Rt/e+HN7K+sF/or yD45/sm7TBXooX3hyZVJS7ic66IMRol7QIoaOfP9qbVbCPO6+qeTsataM4Dr6cBy3KsW dWVTu/IwZsPzbZyZxEQAEOTC3cAl8TjRTuM= Received: from mail.thefacebook.com ([163.114.132.120]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3d81tst0ft-3 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Tue, 28 Dec 2021 10:42:30 -0800 Received: from twshared7460.02.ash7.facebook.com (2620:10d:c085:208::f) by mail.thefacebook.com (2620:10d:c085:21d::5) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Tue, 28 Dec 2021 10:42:00 -0800 Received: by devvm225.atn0.facebook.com (Postfix, from userid 425415) id 189738B3D9C4; Tue, 28 Dec 2021 10:41:48 -0800 (PST) From: Stefan Roesch To: , , CC: , , Subject: [PATCH v9 1/5] fs: split off do_user_path_at_empty from user_path_at_empty() Date: Tue, 28 Dec 2021 10:41:41 -0800 Message-ID: <20211228184145.1131605-2-shr@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211228184145.1131605-1-shr@fb.com> References: <20211228184145.1131605-1-shr@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-ORIG-GUID: h2EEmnFnI35pvkdW58pFJjVXyDlcpvs3 X-Proofpoint-GUID: h2EEmnFnI35pvkdW58pFJjVXyDlcpvs3 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.790,Hydra:6.0.425,FMLib:17.11.62.513 definitions=2021-12-28_10,2021-12-28_01,2021-12-02_01 X-Proofpoint-Spam-Details: rule=fb_outbound_notspam policy=fb_outbound score=0 clxscore=1015 mlxscore=0 lowpriorityscore=0 suspectscore=0 phishscore=0 impostorscore=0 malwarescore=0 bulkscore=0 spamscore=0 mlxlogscore=697 priorityscore=1501 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2110150000 definitions=main-2112280084 X-FB-Internal: deliver Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org This splits off a do_user_path_at_empty function from the user_path_at_empty_function. This is required so it can be called from io_uring. Signed-off-by: Stefan Roesch Acked-by: Christian Brauner --- fs/namei.c | 10 ++++++++-- include/linux/namei.h | 2 ++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/fs/namei.c b/fs/namei.c index 1f9d2187c765..d988e241b32c 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -2794,12 +2794,18 @@ int path_pts(struct path *path) } #endif =20 +int do_user_path_at_empty(int dfd, struct filename *filename, unsigned i= nt flags, + struct path *path) +{ + return filename_lookup(dfd, filename, flags, path, NULL); +} + int user_path_at_empty(int dfd, const char __user *name, unsigned flags, - struct path *path, int *empty) + struct path *path, int *empty) { struct filename *filename =3D getname_flags(name, flags, empty); - int ret =3D filename_lookup(dfd, filename, flags, path, NULL); =20 + int ret =3D do_user_path_at_empty(dfd, filename, flags, path); putname(filename); return ret; } diff --git a/include/linux/namei.h b/include/linux/namei.h index e89329bb3134..8f3ef38c057b 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h @@ -49,6 +49,8 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT}; =20 extern int path_pts(struct path *path); =20 +extern int do_user_path_at_empty(int dfd, struct filename *filename, + unsigned int flags, struct path *path); extern int user_path_at_empty(int, const char __user *, unsigned, struct= path *, int *empty); =20 static inline int user_path_at(int dfd, const char __user *name, unsigne= d flags, --=20 2.30.2