From patchwork Tue Nov 12 21:41:14 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Al Viro X-Patchwork-Id: 13872977 Received: from zeniv.linux.org.uk (zeniv.linux.org.uk [62.89.141.173]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DF32343AA1; Tue, 12 Nov 2024 21:41:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=62.89.141.173 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731447678; cv=none; b=sA01W7hwMOdU1kFvyLtvnwxKAlAw9ZO++B48SoLDo9C9Y5mXP3WFLACeCC+V8d+N/LOe7CTkCaTbK/JFUaiMfoOtZxbWiJ9fHqhrATa+quUFDGbT97Zf1tlO9qA0CePDaROVmHuIbeRKoyDmY5TgtnM8bm3BWyunIvqPxIMs/YY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731447678; c=relaxed/simple; bh=5fZUwKytbsAmkLDw9NSkYklLMjXoT6wxH2W2j56gfdI=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=pevUL/LDYRwVg4R0vmtpbFVfBCWXH5gGWyulKGWHPqdGVEOl4XC4A++0cV5hpiLcG6qnhqIqfIH+Vusr3mQVv9soiu7seCyfsqMbyAy9eZmgkrrZjLlMoT1iR1lJi0DxYv+cV/7Un1LwPY2zc7xDmeK2wbxJ0C7IVMDUEVxsNUg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=zeniv.linux.org.uk; spf=none smtp.mailfrom=ftp.linux.org.uk; dkim=pass (2048-bit key) header.d=linux.org.uk header.i=@linux.org.uk header.b=ttfkYLb6; arc=none smtp.client-ip=62.89.141.173 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=zeniv.linux.org.uk Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=ftp.linux.org.uk Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linux.org.uk header.i=@linux.org.uk header.b="ttfkYLb6" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=linux.org.uk; s=zeniv-20220401; h=Sender:Content-Type:MIME-Version: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:In-Reply-To:References; bh=UODY4oFrGh0OPJEw/PnXTIR6ukiA1LQMYg8Lcody64Q=; b=ttfkYLb6SHLLj+BNRKaL2I1veG sO25rhx32NEMy97NaUcIY/5U3zco0Nx7iaOA74IaXjFTIsYZpcg0EaTF6CfNQ3X3S3o6wX2Qy0DTv xmBHz8M65posAgRS+5uedSk3PtzMjYxaRhA1o+02v+36CeXghPDlaCuE7vi1XfhTqWncLT/yMrybq Thq8dUPyDkTbvtaRBJ1CL9vZK1oSB/P6VO49+w0Dt4Q9H22KZA7ltKiE1OdzgVD4wYaBFc/vx8WCM zIDDmmAtFwHCVT/Y2ZQ+1FXKkKBHRhK9UbPe0jooJnI8wslVLNeLIWtjkPK5IQk7zDTGVT1B2TmjH gUpdOnQA==; Received: from viro by zeniv.linux.org.uk with local (Exim 4.98 #2 (Red Hat Linux)) id 1tAydO-0000000EFjd-24Dr; Tue, 12 Nov 2024 21:41:14 +0000 Date: Tue, 12 Nov 2024 21:41:14 +0000 From: Al Viro To: linux-fsdevel@vger.kernel.org Cc: linux-unionfs@vger.kernel.org Subject: [PATCH] fs/overlayfs/namei.c: get rid of include ../internal.h Message-ID: <20241112214114.GD3387508@ZenIV> Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Sender: Al Viro Added for the sake of vfs_path_lookup(), which is in linux/namei.h these days. Signed-off-by: Al Viro --- fs/overlayfs/namei.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/overlayfs/namei.c b/fs/overlayfs/namei.c index 5764f91d283e..527837358e3a 100644 --- a/fs/overlayfs/namei.c +++ b/fs/overlayfs/namei.c @@ -14,8 +14,6 @@ #include #include "overlayfs.h" -#include "../internal.h" /* for vfs_path_lookup */ - struct ovl_lookup_data { struct super_block *sb; const struct ovl_layer *layer;