From patchwork Fri Jul 27 16:20:39 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: 10547425 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 F355C112B for ; Fri, 27 Jul 2018 16:20:46 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E36CD2C142 for ; Fri, 27 Jul 2018 16:20:46 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E1AF32C1B6; Fri, 27 Jul 2018 16:20:46 +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 6A9F22C142 for ; Fri, 27 Jul 2018 16:20:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733043AbeG0RnU (ORCPT ); Fri, 27 Jul 2018 13:43:20 -0400 Received: from esa5.hgst.iphmx.com ([216.71.153.144]:15076 "EHLO esa5.hgst.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730205AbeG0RnU (ORCPT ); Fri, 27 Jul 2018 13:43:20 -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=1532708445; x=1564244445; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=btDFdAA5KpCol+pdANph0KqYXt1mqx2HFRWL1AegWa0=; b=KDRgBq8A40WU/ogBxNjYs2xWtyZ9HBMJwKg6Jnwl82QWWjwEndbgX8yS vPHUAs+SIlGEnzHpalzJrP39zzbsj5UHve7T8D9AdF4Ru26qIK5umqo/Z v0w2phOcDgNVd7XN6T+LHzjsrc5eVBH03XUErCoNKb1vqgjah+I5lTeHM dsPjFZVi5YDvpd/XrN7+ONqJahf6zQCkoK/V+G0Rs9wWQX+Mca9wpemrj vw21QAbn3jKGJtww8OGYXZzmVUmwfn5dDhqSmyKIkj8XWzc3HlQbTVZ1c 9DE5kcwQPISsjgPk78PkHBArTJIdwlltCgMw5M8lGQONdWa0gOMPaZIy1 g==; X-IronPort-AV: E=Sophos;i="5.51,410,1526313600"; d="scan'208";a="86000768" Received: from h199-255-45-14.hgst.com (HELO uls-op-cesaep01.wdc.com) ([199.255.45.14]) by ob1.hgst.iphmx.com with ESMTP; 28 Jul 2018 00:20:44 +0800 Received: from uls-op-cesaip01.wdc.com ([10.248.3.36]) by uls-op-cesaep01.wdc.com with ESMTP; 27 Jul 2018 09:09:16 -0700 Received: from thinkpad-bart.sdcorp.global.sandisk.com ([10.111.67.248]) by uls-op-cesaip01.wdc.com with ESMTP; 27 Jul 2018 09:20:42 -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 2/5] block: Remove a superfluous #include directive Date: Fri, 27 Jul 2018 09:20:39 -0700 Message-Id: <20180727162042.13425-3-bart.vanassche@wdc.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180727162042.13425-1-bart.vanassche@wdc.com> References: <20180727162042.13425-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 d5d31b7b6ba8..8244a5a1aa5b 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;