diff mbox

[opensm] osm_pkey.[h c]: Remove dead function osm_pkey_tbl_clear_accum_pkeys

Message ID 52A8B406.1000805@dev.mellanox.co.il (mailing list archive)
State Accepted
Delegated to: Hal Rosenstock
Headers show

Commit Message

Hal Rosenstock Dec. 11, 2013, 6:50 p.m. UTC
From: Vladimir Koushnir <vladimirk@mellanox.com>

Signed-off-by: Vladimir Koushnir <vladimirk@mellanox.com>
Signed-off-by: Hal Rosenstock <hal@mellanox.com>
---
 include/opensm/osm_pkey.h |   23 -----------------------
 opensm/osm_pkey.c         |   15 ---------------
 2 files changed, 0 insertions(+), 38 deletions(-)
diff mbox

Patch

diff --git a/include/opensm/osm_pkey.h b/include/opensm/osm_pkey.h
index 9459b5b..090a8be 100644
--- a/include/opensm/osm_pkey.h
+++ b/include/opensm/osm_pkey.h
@@ -340,29 +340,6 @@  osm_pkey_tbl_set_accum_pkeys(IN osm_pkey_tbl_t * p_pkey_tbl,
 *
 *********/
 
-/****f* OpenSM: osm_pkey_tbl_clear_accum_pkeys
-* NAME
-*  osm_pkey_tbl_clear_accum_pkeys
-*
-* DESCRIPTION
-*   Clears the given pkey in the "accum_pkeys" array
-*
-* SYNOPSIS
-*/
-void
-osm_pkey_tbl_clear_accum_pkeys(IN osm_pkey_tbl_t * p_pkey_tbl,
-			       IN uint16_t pkey);
-/*
-* p_pkey_tbl
-*   [in] Pointer to the PKey table
-*
-* pkey
-*   [in] PKey to clear
-*
-* NOTES
-*
-*********/
-
 /****f* OpenSM: osm_pkey_tbl_set_new_entry
 * NAME
 *  osm_pkey_tbl_set_new_entry
diff --git a/opensm/osm_pkey.c b/opensm/osm_pkey.c
index fe0a946..9e7e96f 100644
--- a/opensm/osm_pkey.c
+++ b/opensm/osm_pkey.c
@@ -235,21 +235,6 @@  void osm_pkey_find_last_accum_pkey_index(IN osm_pkey_tbl_t * p_pkey_tbl)
 }
 
 /*
-  Clears the given pkey (along with it's overall index) in the accum_pkeys array.
-*/
-void osm_pkey_tbl_clear_accum_pkeys(IN osm_pkey_tbl_t * p_pkey_tbl,
-				    IN uint16_t pkey)
-{
-	void *ptr;
-
-	ptr = cl_map_remove(&p_pkey_tbl->accum_pkeys, pkey);
-	if (ptr == NULL)
-		return;
-
-	osm_pkey_find_last_accum_pkey_index(p_pkey_tbl);
-}
-
-/*
   Store the given pkey in the "new" blocks array.
   Also, make sure the regular block exists.
 */