From patchwork Tue Nov 16 07:08:07 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wu Bo X-Patchwork-Id: 12621567 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B5592C433EF for ; Tue, 16 Nov 2021 06:38:15 +0000 (UTC) X-Greylist: delayed 71 seconds by postgrey-1.37 at mail.kernel.org; Tue, 16 Nov 2021 06:38:15 UTC DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 71C3463220 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=vger.kernel.org Received: from vger.kernel.org (unknown [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 71C3463220 for ; Tue, 16 Nov 2021 06:38:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234001AbhKPGjv (ORCPT ); Tue, 16 Nov 2021 01:39:51 -0500 Received: from szxga01-in.huawei.com ([45.249.212.187]:14748 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234088AbhKPGjW (ORCPT ); Tue, 16 Nov 2021 01:39:22 -0500 Received: from dggemv711-chm.china.huawei.com (unknown [172.30.72.55]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Htbqs5Pr2zZcsW; Tue, 16 Nov 2021 14:34:01 +0800 (CST) Received: from dggpeml500019.china.huawei.com (7.185.36.137) by dggemv711-chm.china.huawei.com (10.1.198.66) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Tue, 16 Nov 2021 14:36:23 +0800 Received: from huawei.com (10.175.124.27) by dggpeml500019.china.huawei.com (7.185.36.137) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Tue, 16 Nov 2021 14:36:23 +0800 From: Wu Bo To: CC: , , , Subject: [PATCH] fs: Cleanup unused typedef 'read_actor_t' Date: Tue, 16 Nov 2021 15:08:07 +0800 Message-ID: <1637046487-36078-1-git-send-email-wubo40@huawei.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 X-Originating-IP: [10.175.124.27] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To dggpeml500019.china.huawei.com (7.185.36.137) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org typedef 'read_actor_t' is not used now, so remove it. Signed-off-by: Wu Bo --- include/linux/fs.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/linux/fs.h b/include/linux/fs.h index 1cb616f..6bf3bba 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -363,9 +363,6 @@ static inline bool is_sync_kiocb(struct kiocb *kiocb) int error; } read_descriptor_t; -typedef int (*read_actor_t)(read_descriptor_t *, struct page *, - unsigned long, unsigned long); - struct address_space_operations { int (*writepage)(struct page *page, struct writeback_control *wbc); int (*readpage)(struct file *, struct page *);