* [PATCH] osmtest/osmt_slvl_vl_arb.c: handling fopen() failure
@ 2010-09-07 15:07 Yevgeny Kliteynik
[not found] ` <4C865521.4080600-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Yevgeny Kliteynik @ 2010-09-07 15:07 UTC (permalink / raw)
To: Sasha Khapyorsky, Linux RDMA
Signed-off-by: Yevgeny Kliteynik <kliteyn-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
---
opensm/osmtest/osmt_slvl_vl_arb.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/opensm/osmtest/osmt_slvl_vl_arb.c b/opensm/osmtest/osmt_slvl_vl_arb.c
index d3919fb..d4a08ff 100644
--- a/opensm/osmtest/osmt_slvl_vl_arb.c
+++ b/opensm/osmtest/osmt_slvl_vl_arb.c
@@ -489,6 +489,12 @@ osmt_run_slvl_and_vlarb_records_flow(IN osmtest_t * const p_osmt)
OSM_LOG_ENTER(&p_osmt->log);
fh = fopen("qos.txt", "w");
+ if (!fh) {
+ OSM_LOG(&p_osmt->log, OSM_LOG_ERROR, "ERR 0474: "
+ "Failed to open file qos.txt for writing\n");
+ status = IB_ERROR;
+ goto Exit;
+ }
/* go over all ports in the subnet */
status = osmt_query_all_ports_vl_arb(p_osmt, fh);
@@ -520,7 +526,8 @@ osmt_run_slvl_and_vlarb_records_flow(IN osmtest_t * const p_osmt)
}
Exit:
- fclose(fh);
+ if (fh)
+ fclose(fh);
OSM_LOG_EXIT(&p_osmt->log);
return status;
}
--
1.6.2.4
--
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
end of thread, other threads:[~2010-09-09 14:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-07 15:07 [PATCH] osmtest/osmt_slvl_vl_arb.c: handling fopen() failure Yevgeny Kliteynik
[not found] ` <4C865521.4080600-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
2010-09-09 14:48 ` Sasha Khapyorsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox