From patchwork Wed Oct 7 23:46:43 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Smith, Stan" X-Patchwork-Id: 52397 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n97NpVdE025705 for ; Wed, 7 Oct 2009 23:51:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756588AbZJGXrV (ORCPT ); Wed, 7 Oct 2009 19:47:21 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756591AbZJGXrV (ORCPT ); Wed, 7 Oct 2009 19:47:21 -0400 Received: from mga01.intel.com ([192.55.52.88]:50887 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756588AbZJGXrU (ORCPT ); Wed, 7 Oct 2009 19:47:20 -0400 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 07 Oct 2009 16:41:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.44,521,1249282800"; d="scan'208";a="500878216" Received: from scsmith-mobl1.amr.corp.intel.com (HELO scsmithMOBL1) ([10.7.151.219]) by fmsmga002.fm.intel.com with ESMTP; 07 Oct 2009 16:38:33 -0700 From: "Stan C. Smith" To: "'Sasha Khapyorsky'" Cc: , "'linux-rdma'" Subject: [PATCH] remove unnecessary leading '/' from filename Date: Wed, 7 Oct 2009 16:46:43 -0700 Message-ID: <784A3771E5D143179461A7D5151AE78C@amr.corp.intel.com> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Thread-Index: AcpHqGxwVqbj3G5NTqqtwbyB08aFuw== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org diff --git a/opensm/opensm/osm_lid_mgr.c b/opensm/opensm/osm_lid_mgr.c index 947fe7a..1704054 100644 --- a/opensm/opensm/osm_lid_mgr.c +++ b/opensm/opensm/osm_lid_mgr.c @@ -239,7 +239,7 @@ ib_api_status_t osm_lid_mgr_init(IN osm_lid_mgr_t * p_mgr, IN osm_sm_t * sm) p_mgr->p_lock = sm->p_lock; /* we initialize and restore the db domain of guid to lid map */ - p_mgr->p_g2l = osm_db_domain_init(p_mgr->p_db, "/guid2lid"); + p_mgr->p_g2l = osm_db_domain_init(p_mgr->p_db, "guid2lid"); if (!p_mgr->p_g2l) { OSM_LOG(p_mgr->p_log, OSM_LOG_ERROR, "ERR 0316: " "Error initializing Guid-to-Lid persistent database\n");