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 5F1F2C4332F for ; Wed, 15 Dec 2021 22:17:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231254AbhLOWRS (ORCPT ); Wed, 15 Dec 2021 17:17:18 -0500 Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:26876 "EHLO mx0b-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231262AbhLOWRR (ORCPT ); Wed, 15 Dec 2021 17:17:17 -0500 Received: from pps.filterd (m0148460.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 1BFLihvG017411 for ; Wed, 15 Dec 2021 14:17:17 -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=MSZQFSxPJFwq865NhhlubeB+7yf1sYa/xbh+40S6LQQ=; b=cPFfsbKtdea+w1DVHc7yS14uf1bnOU077wA4ntn3LEmEWocaROKIJHqQwHk6EAQOx+DJ 3aNpgBZY8RrRXBRZX4z72GswaLY4j52e0Qt2zD4/aWRh2H0CuwBu8j7ltLTZZ7SElhEW LSEwMx/efMtzCMyrLSKBWLKvCV/BCe8Ad+0= Received: from mail.thefacebook.com ([163.114.132.120]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3cy8tyy7f4-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Wed, 15 Dec 2021 14:17:16 -0800 Received: from intmgw001.05.ash7.facebook.com (2620:10d:c085:208::f) by mail.thefacebook.com (2620:10d:c085:11d::4) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Wed, 15 Dec 2021 14:17:15 -0800 Received: by devvm225.atn0.facebook.com (Postfix, from userid 425415) id 5E64A81B019B; Wed, 15 Dec 2021 14:17:05 -0800 (PST) From: Stefan Roesch To: , , CC: , Subject: [PATCH v4 1/5] fs: split off do_user_path_at_empty from user_path_at_empty() Date: Wed, 15 Dec 2021 14:16:58 -0800 Message-ID: <20211215221702.3695098-2-shr@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211215221702.3695098-1-shr@fb.com> References: <20211215221702.3695098-1-shr@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-FB-Source: Intern X-Proofpoint-ORIG-GUID: PfYRql5OpnFNHSHsQ1V4txWMVhupW98z X-Proofpoint-GUID: PfYRql5OpnFNHSHsQ1V4txWMVhupW98z 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-15_13,2021-12-14_01,2021-12-02_01 X-Proofpoint-Spam-Details: rule=fb_outbound_notspam policy=fb_outbound score=0 suspectscore=0 bulkscore=0 malwarescore=0 phishscore=0 spamscore=0 lowpriorityscore=0 mlxscore=0 impostorscore=0 priorityscore=1501 clxscore=1015 adultscore=4 mlxlogscore=550 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2110150000 definitions=main-2112150123 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 --- 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