From patchwork Fri Jul 27 22:56:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bart Van Assche X-Patchwork-Id: 10547791 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 95A9AA635 for ; Fri, 27 Jul 2018 22:56:24 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 882E12C6A9 for ; Fri, 27 Jul 2018 22:56:24 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7C8172C6B5; Fri, 27 Jul 2018 22:56:24 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C0A542C685 for ; Fri, 27 Jul 2018 22:56:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388735AbeG1AUY (ORCPT ); Fri, 27 Jul 2018 20:20:24 -0400 Received: from esa4.hgst.iphmx.com ([216.71.154.42]:46623 "EHLO esa4.hgst.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388507AbeG1AUY (ORCPT ); Fri, 27 Jul 2018 20:20:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=wdc.com; i=@wdc.com; q=dns/txt; s=dkim.wdc.com; t=1532732183; x=1564268183; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=oCz7QyjBvfFqLniaE3putUaWxU2Od19b/luCQlr6GiI=; b=AyDu6sOlbm4L25ltbNLId9Rr2YPylEv2HhjhdmXOyafIS1s7tz02IWE0 UTRrs1ZEJEdRMk/h8Ws5ui8i5nnaGsWmT6VLLium8QmK84xUfDlIJgLsY LfjnLxLA9EOkDmBsPHf5HSUUEmEN71M1wSoovi32VOLQgDA42CIdNsOIi xeVhmmus7tKEYzvIskrUVQinINWuDpIM/tmTy/fN5O1jJoA5u8jk+sNlZ So9UqhM0WmNOCiv9zh72VpslUXrvMq8Z0e6dLAwa+sw0DOC4H/3W1N1ue 1Isd5aubpo2TuZ32w8DR5wUbSPnyO/7DIP5/FYUmssWZyNHaRNvQpP5TJ w==; X-IronPort-AV: E=Sophos;i="5.51,411,1526313600"; d="scan'208";a="85204234" Received: from uls-op-cesaip02.wdc.com (HELO uls-op-cesaep02.wdc.com) ([199.255.45.15]) by ob1.hgst.iphmx.com with ESMTP; 28 Jul 2018 06:56:22 +0800 Received: from uls-op-cesaip01.wdc.com ([10.248.3.36]) by uls-op-cesaep02.wdc.com with ESMTP; 27 Jul 2018 15:44:24 -0700 Received: from thinkpad-bart.sdcorp.global.sandisk.com ([10.111.67.248]) by uls-op-cesaip01.wdc.com with ESMTP; 27 Jul 2018 15:56:22 -0700 From: Bart Van Assche To: Jens Axboe Cc: linux-block@vger.kernel.org, Christoph Hellwig , Bart Van Assche , Keith Busch , Jianchao Wang , Ming Lei Subject: [PATCH v2 2/5] block: Remove a superfluous #include directive Date: Fri, 27 Jul 2018 15:56:17 -0700 Message-Id: <20180727225620.17855-3-bart.vanassche@wdc.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180727225620.17855-1-bart.vanassche@wdc.com> References: <20180727225620.17855-1-bart.vanassche@wdc.com> Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Commit 12f5b9314545 ("blk-mq: Remove generation seqeunce") removed the only u64_stats_sync instance from but did not remove the corresponding #include directive. Since the #include directive is no longer needed, remove it. Signed-off-by: Bart Van Assche Cc: Christoph Hellwig Cc: Keith Busch Cc: Jianchao Wang Cc: Ming Lei --- include/linux/blkdev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 8f924fba80b9..9aeda7e982c4 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -28,7 +28,6 @@ #include #include #include -#include struct module; struct scsi_ioctl_command;