From patchwork Tue Sep 4 19:14:19 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10587789 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 7342E13BB for ; Tue, 4 Sep 2018 19:14:36 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6571027F82 for ; Tue, 4 Sep 2018 19:14:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 569402874E; Tue, 4 Sep 2018 19:14:36 +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 F14CE285EF for ; Tue, 4 Sep 2018 19:14:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728002AbeIDXlD (ORCPT ); Tue, 4 Sep 2018 19:41:03 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:37290 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727941AbeIDXlD (ORCPT ); Tue, 4 Sep 2018 19:41:03 -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=1ppVHgt/NZjGiyg15kLfjAGdVLMMeAkxWOQLk44Lkew=; b=GV+10kbwAJRCl9OpsZGRo7tsN mSg4pJrIWmpj2MifEPKHbOfJX7gBqXG5crJniGG/dUQopHUTRu9FB4Ld1fM81rh5T3xO5On9LA/SH pG2L5khqpgkYvQrf4KwhpFBTK9b033J8n5M5kl2Psc+XJT7m90uSX9ijU2IGjjoUEBUnsaUIZyQ1n miqsAzkvMS4IDGmguT//W4tVHQvBiu+ZPYeuJ0X5DZ+hvfXBBfE2ft01LTAkQ0OtgVrhU0JWn2IS6 somxd65CBilBeH5F5cwkfSevb9curoxQvILhS1CyVVFXePhLqc8ezgcRR4xgBpOkfMjGvzaeY/+Tw oeLQP7usg==; Received: from [199.255.44.5] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fxGmW-0007ZU-UK; Tue, 04 Sep 2018 19:14:32 +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 01/13] arm: remove the unused BIOVEC_MERGEABLE define Date: Tue, 4 Sep 2018 12:14:19 -0700 Message-Id: <20180904191431.20102-2-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 Signed-off-by: Christoph Hellwig --- arch/arm/include/asm/io.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/arch/arm/include/asm/io.h b/arch/arm/include/asm/io.h index 2cfbc531f63b..6774553dc214 100644 --- a/arch/arm/include/asm/io.h +++ b/arch/arm/include/asm/io.h @@ -459,13 +459,6 @@ extern void pci_iounmap(struct pci_dev *dev, void __iomem *addr); #include -/* - * can the hardware map this into one segment or not, given no other - * constraints. - */ -#define BIOVEC_MERGEABLE(vec1, vec2) \ - ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2))) - struct bio_vec; extern bool xen_biovec_phys_mergeable(const struct bio_vec *vec1, const struct bio_vec *vec2);