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 79C0BC7618A for ; Wed, 15 Mar 2023 12:31:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232343AbjCOMbs (ORCPT ); Wed, 15 Mar 2023 08:31:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39724 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232212AbjCOMbe (ORCPT ); Wed, 15 Mar 2023 08:31:34 -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 29D248A3A4 for ; Wed, 15 Mar 2023 05:30:48 -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 BD65861D26 for ; Wed, 15 Mar 2023 12:30:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D4146C433D2; Wed, 15 Mar 2023 12:30:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1678883447; bh=rPtILoKWWoEcQJdETmkVJ7BPNe8f0QkGJY0nTXYW2Uo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EPbF7w0vopxvSmtVsSxhWzJG1YdAhQe85OsQw/7mLLGoEmhY0Vzeexbxgj3f9fr68 XIKC0hg2BNbl6OdzeFNCBDkBiyigUo1oZEwUSW5Ujaga8Qolthix3nOrOJ4fzv7J4y wVCs3nicB6CgFM2dCH+kxJYEFmBMVTMOwKuOMnm4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Gaosheng Cui , Carlos Maiolino , Dave Chinner Subject: [PATCH 5.15 140/145] xfs: remove xfs_setattr_time() declaration Date: Wed, 15 Mar 2023 13:13:26 +0100 Message-Id: <20230315115743.538740594@linuxfoundation.org> X-Mailer: git-send-email 2.40.0 In-Reply-To: <20230315115738.951067403@linuxfoundation.org> References: <20230315115738.951067403@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Gaosheng Cui commit b0463b9dd7030a766133ad2f1571f97f204d7bdf upstream. xfs_setattr_time() has been removed since commit e014f37db1a2 ("xfs: use setattr_copy to set vfs inode attributes"), so remove it. Signed-off-by: Gaosheng Cui Reviewed-by: Carlos Maiolino Signed-off-by: Dave Chinner Signed-off-by: Greg Kroah-Hartman --- fs/xfs/xfs_iops.h | 1 - 1 file changed, 1 deletion(-) --- a/fs/xfs/xfs_iops.h +++ b/fs/xfs/xfs_iops.h @@ -13,7 +13,6 @@ extern const struct file_operations xfs_ extern ssize_t xfs_vn_listxattr(struct dentry *, char *data, size_t size); -extern void xfs_setattr_time(struct xfs_inode *ip, struct iattr *iattr); int xfs_vn_setattr_size(struct user_namespace *mnt_userns, struct dentry *dentry, struct iattr *vap);