From patchwork Tue Sep 4 19:14:30 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10587813 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 9071E180E for ; Tue, 4 Sep 2018 19:14:53 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 82E0F27F82 for ; Tue, 4 Sep 2018 19:14:53 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 774462874E; Tue, 4 Sep 2018 19:14:53 +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 2A27527F82 for ; Tue, 4 Sep 2018 19:14:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728059AbeIDXlU (ORCPT ); Tue, 4 Sep 2018 19:41:20 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:37774 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728054AbeIDXlU (ORCPT ); Tue, 4 Sep 2018 19:41:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=References:In-Reply-To:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=okzNpPNtIJaiPAcXE27SWBvfdM6YZKWhPpNWM0K4SIM=; b=If8N/uzFJMRo2ozq5DOrcvkFq jZqjou81Y6XQDZgC+6nCdKGvlH7PYIc7xWLj4SDvN+4XDuO6hNKZXvbTxAqvcFOatAMKm6vJqTLKz LdfAbcxx6Ns4IXrx3u3KyALdHnMJBIimiMu++sXkq38FhSV6GRLpngW0rcmmkWe5J4A/HP0To5QfW xLVeSHLVnWhWfFyt9b69QE2tq8OzY+2TqIvsZVZbzP+9NgVr482dzGHGrXZnRfLlqfRlTMonEJzto 5ZRZqZw2RbVJ/pbnDHa163L4gLs/QnEUK4drb490m93jcDYrGg9euyNENJjXbVDqhcEBToKjlLz6Z 25zR1YrqA==; Received: from [199.255.44.5] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fxGmc-0007bX-3T; Tue, 04 Sep 2018 19:14:38 +0000 From: Christoph Hellwig To: Jens Axboe Cc: Ming Lei , Konrad Rzeszutek Wilk , linux-block@vger.kernel.org, xen-devel@lists.xen.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH 12/13] block: don't include bug.h from bio.h Date: Tue, 4 Sep 2018 12:14:30 -0700 Message-Id: <20180904191431.20102-13-hch@lst.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180904191431.20102-1-hch@lst.de> References: <20180904191431.20102-1-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html 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 No need to pull in the BUG() defintion. Signed-off-by: Christoph Hellwig --- include/linux/bio.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/bio.h b/include/linux/bio.h index 3af2fea686a9..85f2e56ecdb8 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h @@ -21,7 +21,6 @@ #include #include #include -#include #ifdef CONFIG_BLOCK /* struct bio, bio_vec and BIO_* flags are defined in blk_types.h */