From patchwork Wed Jan 15 20:59:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeffrey Layton X-Patchwork-Id: 11335689 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 30DF11398 for ; Wed, 15 Jan 2020 20:59:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0F892207FF for ; Wed, 15 Jan 2020 20:59:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579121960; bh=z1+2TMd15ZH6VDkhDq88yLRvwba/YhR1dXmQkvUF/dc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=pG2S1TSG9sSmq9Zj9gzhEbsXj+6iMgA0X53r2AB0242TBUm9tWYauTNoaFgReWDpg 9bKFiqqaa4cWbKOCRtX7T+1krb9uBzrMPl+Oxvub1bnU977SjvA5YBJYt9KePcIYEG IU+5w5Eng8b3YAKZHQs/jA5s8ENDHRbkvaoxfRLo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729485AbgAOU7T (ORCPT ); Wed, 15 Jan 2020 15:59:19 -0500 Received: from mail.kernel.org ([198.145.29.99]:57860 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729420AbgAOU7Q (ORCPT ); Wed, 15 Jan 2020 15:59:16 -0500 Received: from tleilax.poochiereds.net (68-20-15-154.lightspeed.rlghnc.sbcglobal.net [68.20.15.154]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 645CB222C3; Wed, 15 Jan 2020 20:59:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579121956; bh=z1+2TMd15ZH6VDkhDq88yLRvwba/YhR1dXmQkvUF/dc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DwyIx0ykJN5NEnG4VFKrcqDJr17jVf+JQG7DIWpExcvU5lTiDR3Xewsf4R6p3SzmL do5mL0TGOUBhj1KEbVTOvzvDZTcouX2939Nl08ajclYMDES8W6UUGN2AFx42W7yNgr Ihi5xxW1S8ggtMO8jKDcDoOvsNTBqMVY6ZYmIvu4= From: Jeff Layton To: ceph-devel@vger.kernel.org Cc: zyan@redhat.com, sage@redhat.com, idryomov@gmail.com, pdonnell@redhat.com, xiubli@redhat.com Subject: [RFC PATCH v2 01/10] libceph: export ceph_file_layout_is_valid Date: Wed, 15 Jan 2020 15:59:03 -0500 Message-Id: <20200115205912.38688-2-jlayton@kernel.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200115205912.38688-1-jlayton@kernel.org> References: <20200115205912.38688-1-jlayton@kernel.org> MIME-Version: 1.0 Sender: ceph-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: ceph-devel@vger.kernel.org Signed-off-by: Jeff Layton --- net/ceph/ceph_fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/ceph/ceph_fs.c b/net/ceph/ceph_fs.c index 756a2dc10d27..11a2e3c61b04 100644 --- a/net/ceph/ceph_fs.c +++ b/net/ceph/ceph_fs.c @@ -27,6 +27,7 @@ int ceph_file_layout_is_valid(const struct ceph_file_layout *layout) return 0; return 1; } +EXPORT_SYMBOL(ceph_file_layout_is_valid); void ceph_file_layout_from_legacy(struct ceph_file_layout *fl, struct ceph_file_layout_legacy *legacy)