From patchwork Mon May 15 15:42:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 9727393 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id C55DC60386 for ; Mon, 15 May 2017 15:43:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BFD8828966 for ; Mon, 15 May 2017 15:43:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A9BA82897F; Mon, 15 May 2017 15:43:43 +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=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, 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 14E442865E for ; Mon, 15 May 2017 15:43:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934819AbdEOPne (ORCPT ); Mon, 15 May 2017 11:43:34 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:36196 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934816AbdEOPna (ORCPT ); Mon, 15 May 2017 11:43:30 -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=ZN23LuNCFnH9+Uaq2Odm8iFkiYJdE2YRMOVR9T6+LvI=; b=b/mz3HYftAkPeghLiT7zXA5aB Uv/d/P/wYsPrJnY1RWtKyMcMrwmfprZpA91K2m/My7hftXCYz0R5AFjZVf84C54LG22C56JudRqxP ZeeI0DiUXaCaD4zunZSYuMEFx2QzczRklW9O4p2KMgvs+c2Tx78nxA3h9JrrKegJz0og8zbj+00uM pzvv5Udj9RVVabcL23YzklXiAC7ZXhEd/ypRX9hTinYrXffGcy0oJ6qXFY/3Qa597fdtDwj6N/Yv/ IbTN0z3dHorxso0W1ORtc/Y/op+Q302rHhrUSxb1TGAKn3yOB/YQ6Lk42jjOhlu8XLrtAX8xqBhbX 3mNQbjVRw==; Received: from clnet-p099-196.ikbnet.co.at ([83.175.99.196] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1dAI9g-0006KD-Vz; Mon, 15 May 2017 15:43:29 +0000 From: Christoph Hellwig To: Andy Shevchenko , Amir Goldstein , linux-fsdevel@vger.kernel.org Cc: Shaohua Li , Dan Williams , David Howells , Steven Whitehouse , Mimi Zohar , linux-xfs@vger.kernel.org, linux-raid@vger.kernel.org, linux-nvdimm@lists.01.org, linux-kernel@vger.kernel.org Subject: [PATCH 07/17] uuid: remove the now unused uuid_be_cmp helper Date: Mon, 15 May 2017 17:42:58 +0200 Message-Id: <20170515154308.26739-8-hch@lst.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170515154308.26739-1-hch@lst.de> References: <20170515154308.26739-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-xfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Christoph Hellwig --- include/linux/uuid.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/linux/uuid.h b/include/linux/uuid.h index aef21b580b17..21218351ae26 100644 --- a/include/linux/uuid.h +++ b/include/linux/uuid.h @@ -92,9 +92,4 @@ static inline int uuid_le_cmp(const guid_t u1, const guid_t u2) return memcmp(&u1, &u2, sizeof(guid_t)); } -static inline int uuid_be_cmp(const uuid_t u1, const uuid_t u2) -{ - return memcmp(&u1, &u2, sizeof(uuid_t)); -} - #endif