All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH opensm] Remove unused lid matrix calculation in Torus_2Qos routing
@ 2013-11-12 11:18 Hal Rosenstock
       [not found] ` <52820E8C.40509-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Hal Rosenstock @ 2013-11-12 11:18 UTC (permalink / raw)
  To: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org)
  Cc: Vladimir Koushnir, Jim Schutt


From: Vladimir Koushnir <vladimirk-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

Signed-off-by: Vladimir Koushnir <vladimirk-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
diff --git a/include/opensm/osm_ucast_mgr.h b/include/opensm/osm_ucast_mgr.h
index c534b7e..b9c1ca1 100644
--- a/include/opensm/osm_ucast_mgr.h
+++ b/include/opensm/osm_ucast_mgr.h
@@ -296,5 +296,7 @@ int osm_ucast_mgr_process(IN osm_ucast_mgr_t * p_mgr);
 * SEE ALSO
 *	Unicast Manager, Node Info Response Controller
 *********/
+
+int ucast_dummy_build_lid_matrices(void *context);
 END_C_DECLS
 #endif				/* _OSM_UCAST_MGR_H_ */
diff --git a/opensm/osm_torus.c b/opensm/osm_torus.c
index 8139f1a..71753cf 100644
--- a/opensm/osm_torus.c
+++ b/opensm/osm_torus.c
@@ -9550,6 +9550,7 @@ int osm_ucast_torus2QoS_setup(struct osm_routing_engine *r,
 
 	r->context = ctx;
 	r->ucast_build_fwd_tables = torus_build_lfts;
+	r->build_lid_matrices = ucast_dummy_build_lid_matrices;
 	r->update_sl2vl = torus_update_osm_sl2vl;
 	r->update_vlarb = torus_update_osm_vlarb;
 	r->path_sl = torus_path_sl;
diff --git a/opensm/osm_ucast_mgr.c b/opensm/osm_ucast_mgr.c
index 6384362..9ef7947 100644
--- a/opensm/osm_ucast_mgr.c
+++ b/opensm/osm_ucast_mgr.c
@@ -1182,3 +1182,8 @@ int osm_ucast_dor_setup(struct osm_routing_engine *r, osm_opensm_t * osm)
 	r->ucast_build_fwd_tables = ucast_dor_build_lfts;
 	return 0;
 }
+
+int ucast_dummy_build_lid_matrices(void *context)
+{
+	return 0;
+}
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [EXTERNAL] [PATCH opensm] Remove unused lid matrix calculation in Torus_2Qos routing
       [not found] ` <52820E8C.40509-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2013-11-13 15:08   ` Jim Schutt
  0 siblings, 0 replies; 2+ messages in thread
From: Jim Schutt @ 2013-11-13 15:08 UTC (permalink / raw)
  To: Hal Rosenstock
  Cc: linux-rdma (linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org),
	Vladimir Koushnir

On 11/12/2013 04:18 AM, Hal Rosenstock wrote:

Acked-by: Jim Schutt <jaschut-4OHPYypu0djtX7QSmKvirg@public.gmane.org>

> 
> From: Vladimir Koushnir <vladimirk-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> 
> Signed-off-by: Vladimir Koushnir <vladimirk-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
> diff --git a/include/opensm/osm_ucast_mgr.h b/include/opensm/osm_ucast_mgr.h
> index c534b7e..b9c1ca1 100644
> --- a/include/opensm/osm_ucast_mgr.h
> +++ b/include/opensm/osm_ucast_mgr.h
> @@ -296,5 +296,7 @@ int osm_ucast_mgr_process(IN osm_ucast_mgr_t * p_mgr);
>  * SEE ALSO
>  *	Unicast Manager, Node Info Response Controller
>  *********/
> +
> +int ucast_dummy_build_lid_matrices(void *context);
>  END_C_DECLS
>  #endif				/* _OSM_UCAST_MGR_H_ */
> diff --git a/opensm/osm_torus.c b/opensm/osm_torus.c
> index 8139f1a..71753cf 100644
> --- a/opensm/osm_torus.c
> +++ b/opensm/osm_torus.c
> @@ -9550,6 +9550,7 @@ int osm_ucast_torus2QoS_setup(struct osm_routing_engine *r,
>  
>  	r->context = ctx;
>  	r->ucast_build_fwd_tables = torus_build_lfts;
> +	r->build_lid_matrices = ucast_dummy_build_lid_matrices;
>  	r->update_sl2vl = torus_update_osm_sl2vl;
>  	r->update_vlarb = torus_update_osm_vlarb;
>  	r->path_sl = torus_path_sl;
> diff --git a/opensm/osm_ucast_mgr.c b/opensm/osm_ucast_mgr.c
> index 6384362..9ef7947 100644
> --- a/opensm/osm_ucast_mgr.c
> +++ b/opensm/osm_ucast_mgr.c
> @@ -1182,3 +1182,8 @@ int osm_ucast_dor_setup(struct osm_routing_engine *r, osm_opensm_t * osm)
>  	r->ucast_build_fwd_tables = ucast_dor_build_lfts;
>  	return 0;
>  }
> +
> +int ucast_dummy_build_lid_matrices(void *context)
> +{
> +	return 0;
> +}
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-11-13 15:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-12 11:18 [PATCH opensm] Remove unused lid matrix calculation in Torus_2Qos routing Hal Rosenstock
     [not found] ` <52820E8C.40509-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2013-11-13 15:08   ` [EXTERNAL] " Jim Schutt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.