Accepting request 492827 from science:HPC

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/492827
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mstflint?expand=0&rev=5
This commit is contained in:
Dominique Leuenberger 2017-05-10 18:50:21 +00:00 committed by Git OBS Bridge
parent 305c4316b8
commit a05eabac96
8 changed files with 78 additions and 553 deletions

View File

@ -1,497 +0,0 @@
Index: b/mlxfwops/lib/flint_io.cpp
===================================================================
--- a/mlxfwops/lib/flint_io.cpp
+++ b/mlxfwops/lib/flint_io.cpp
@@ -751,7 +751,7 @@ const char* Flash::getFlashType() {
} else if (!strcmp(param_in, second_op)) {\
out = 0;\
} else {\
- return errmsg("bad argument (%s) it can be "first_op" or " second_op"", param_in);\
+ return errmsg("bad argument (%s) it can be " first_op " or " second_op, param_in);\
}\
}
bool Flash::set_attr(char *param_name, char *param_val_str)
@@ -763,11 +763,11 @@ bool Flash::set_attr(char *param_name,
u_int8_t quad_en_val;
quad_en_val = strtoul(param_val_str, &endp, 0);
if (*endp != '\0' || quad_en_val > 1) {
- return errmsg("Bad "QUAD_EN_PARAM" value (%s), it can be 0 or 1\n", param_val_str);
+ return errmsg("Bad " QUAD_EN_PARAM " value (%s), it can be 0 or 1\n", param_val_str);
}
rc = mf_set_quad_en(_mfl, quad_en_val);
if (rc != MFE_OK) {
- return errmsg("Setting "QUAD_EN_PARAM" failed: (%s)", mf_err2str(rc));
+ return errmsg("Setting " QUAD_EN_PARAM " failed: (%s)", mf_err2str(rc));
}
} else if (!strcmp(param_name, DUMMY_CYCLES_PARAM)) {
char* endp;
@@ -775,11 +775,11 @@ bool Flash::set_attr(char *param_name,
dummy_cycles_val = strtoul(param_val_str, &endp, 0);
if (*endp != '\0' || dummy_cycles_val < 1 || dummy_cycles_val > 15) {
// value is actually [0.15] but val=0 and val=15 indicate default state (thus they are the same so no need for both values to be accepted)
- return errmsg("Bad "DUMMY_CYCLES_PARAM" value (%s), it can be [1..15]\n", param_val_str);
+ return errmsg("Bad " DUMMY_CYCLES_PARAM " value (%s), it can be [1..15]\n", param_val_str);
}
rc = mf_set_dummy_cycles(_mfl, dummy_cycles_val);
if (rc != MFE_OK) {
- return errmsg("Setting "DUMMY_CYCLES_PARAM" failed: (%s)", mf_err2str(rc));
+ return errmsg("Setting " DUMMY_CYCLES_PARAM " failed: (%s)", mf_err2str(rc));
}
} else if (strstr(param_name, FLASH_NAME) == param_name) {
char *flash_param, *param_str, *endp, *bank_num_str;
@@ -801,7 +801,7 @@ bool Flash::set_attr(char *param_name,
num_str = strtok((char*)NULL, "-");
sec = strtok((char*)NULL, "");
if (tb == NULL || num_str == NULL || sec == NULL) {
- return errmsg("missing parameters for setting the "WRITE_PROTECT" attribute, see help for more info.");
+ return errmsg("missing parameters for setting the " WRITE_PROTECT " attribute, see help for more info.");
}
GET_IN_PARAM(tb, protect_info.is_bottom, WP_BOTTOM_STR, WP_TOP_STR);
GET_IN_PARAM(sec, protect_info.is_subsector, WP_SUBSEC_STR, WP_SEC_STR);
@@ -813,7 +813,7 @@ bool Flash::set_attr(char *param_name,
}
rc = mf_set_write_protect(_mfl, bank_num, &protect_info);
if (rc != MFE_OK) {
- return errmsg("Setting "WRITE_PROTECT" failed: (%s)", mf_err2str(rc));
+ return errmsg("Setting " WRITE_PROTECT " failed: (%s)", mf_err2str(rc));
}
} else {
return errmsg("Unknown attribute %s.%s", flash_param, param_str);
Index: b/mlxconfig/mlxcfg_parser.cpp
===================================================================
--- a/mlxconfig/mlxcfg_parser.cpp
+++ b/mlxconfig/mlxcfg_parser.cpp
@@ -106,10 +106,10 @@ void MlxCfg::printHelp()
// print usage examples
printf("\n");
printf(IDENT"Examples:\n");
- printf(IDENT2"%-35s: %s\n", "To query current configuration", MLXCFG_NAME" -d "MST_DEV_EXAMPLE" query");
- printf(IDENT2"%-35s: %s\n", "To set configuration", MLXCFG_NAME" -d "MST_DEV_EXAMPLE" set SRIOV_EN=1 NUM_OF_VFS=16 WOL_MAGIC_EN_P1=1");
- printf(IDENT2"%-35s: %s\n", "To set raw configuration", MLXCFG_NAME" -d "MST_DEV_EXAMPLE2" -f conf_file set_raw");
- printf(IDENT2"%-35s: %s\n", "To reset configuration", MLXCFG_NAME" -d "MST_DEV_EXAMPLE" reset");
+ printf(IDENT2"%-35s: %s\n", "To query current configuration", MLXCFG_NAME " -d " MST_DEV_EXAMPLE " query");
+ printf(IDENT2"%-35s: %s\n", "To set configuration", MLXCFG_NAME " -d " MST_DEV_EXAMPLE " set SRIOV_EN=1 NUM_OF_VFS=16 WOL_MAGIC_EN_P1=1");
+ printf(IDENT2"%-35s: %s\n", "To set raw configuration", MLXCFG_NAME " -d " MST_DEV_EXAMPLE2 " -f conf_file set_raw");
+ printf(IDENT2"%-35s: %s\n", "To reset configuration", MLXCFG_NAME " -d " MST_DEV_EXAMPLE " reset");
printf("\n");
printf(IDENT"Supported devices:\n");
printf(IDENT2"4th Generation devices: ConnectX3, ConnectX3-Pro (FW 2.31.5000 and above).\n");
@@ -125,7 +125,7 @@ void MlxCfg::printVersion()
}
void MlxCfg::printUsage() {
- printf("\n"IDENT"Usage:\n"
+ printf("\n" IDENT "Usage:\n"
IDENT2 MLXCFG_NAME " [-d <%s> ] [-y|-e] <s[et] <parameters to set>|q[uery]|r[eset]|[ -f <filename> backup|set_raw]>\n\n", DEVICE_NAME);
}
@@ -273,11 +273,11 @@ mlxCfgStatus MlxCfg::parseArgs(int argc,
}
i++;
if (_mlxParams.cmd == Mc_UnknownCmd) {
- return err(true, "No command found. For more information please run "MLXCFG_NAME" -h|--help.");
+ return err(true, "No command found. For more information please run " MLXCFG_NAME " -h|--help.");
}
// we parsed input until the set/query/reset cmd
if (i == argc && _mlxParams.cmd == Mc_Set) {
- return err(true, "missing configuration arguments. For more information please run "MLXCFG_NAME" -h|--help.");
+ return err(true, "missing configuration arguments. For more information please run " MLXCFG_NAME " -h|--help.");
}
if (i != argc && (_mlxParams.cmd == Mc_Reset || _mlxParams.cmd == Mc_Query)) {
return err(true, "%s command expects no argument but %d argument recieved", (_mlxParams.cmd == Mc_Reset) ? "reset" : "query", argc -i);
@@ -491,8 +491,8 @@ MlxCfgInfo MlxCfgAllInfo::createPciSetti
params[Mcp_PF_Log_Bar_Size] = MlxCfgParamParser(Mcp_PF_Log_Bar_Size, "PF_LOG_BAR_SIZE", "example: for 8Mb bar size set PF_LOG_BAR_SIZE=3 (only " FIFTH_GENERATION_LIST ")", "base_2_log_in_mb");
params[Mcp_VF_Log_Bar_Size] = MlxCfgParamParser(Mcp_VF_Log_Bar_Size, "VF_LOG_BAR_SIZE", "example: for 8Mb bar size set VF_LOG_BAR_SIZE=3 (only " FIFTH_GENERATION_LIST ")", "base_2_log_in_mb");
params[Mcp_Num_Of_Vfs] = MlxCfgParamParser(Mcp_Num_Of_Vfs, "NUM_OF_VFS", "desired amount of virtual functions", "NUM");
- params[Mcp_Num_Pf_Msix] = MlxCfgParamParser(Mcp_Num_Pf_Msix, "NUM_PF_MSIX", "Number of MSI-X vectors and EQs per PF (only "FIFTH_GENERATION_LIST")", "NUM");
- params[Mcp_Num_Vf_Msix] = MlxCfgParamParser(Mcp_Num_Vf_Msix, "NUM_VF_MSIX", "Number of MSI-X vectors and EQs per VF (only "FIFTH_GENERATION_LIST")", "NUM");
+ params[Mcp_Num_Pf_Msix] = MlxCfgParamParser(Mcp_Num_Pf_Msix, "NUM_PF_MSIX", "Number of MSI-X vectors and EQs per PF (only " FIFTH_GENERATION_LIST ")", "NUM");
+ params[Mcp_Num_Vf_Msix] = MlxCfgParamParser(Mcp_Num_Vf_Msix, "NUM_VF_MSIX", "Number of MSI-X vectors and EQs per VF (only " FIFTH_GENERATION_LIST ")", "NUM");
return MlxCfgInfo("PCI Settings", "", params);
}
Index: b/mlxfwops/lib/fs3_ops.cpp
===================================================================
--- a/mlxfwops/lib/fs3_ops.cpp
+++ b/mlxfwops/lib/fs3_ops.cpp
@@ -482,7 +482,7 @@ bool Fs3Operations::VerifyTOC(u_int32_t
if (!mfg_exists) {
_badDevDataSections = true;
- return errmsg(MLXFW_NO_MFG_ERR, "No \""MFG_INFO"\" info section.");
+ return errmsg(MLXFW_NO_MFG_ERR, "No \"" MFG_INFO "\" info section.");
}
return ret_val;
}
Index: b/flint/subcommands.cpp
===================================================================
--- a/flint/subcommands.cpp
+++ b/flint/subcommands.cpp
@@ -834,7 +834,7 @@ bool SubCommand::printGuidLine(guid_t* n
bool SubCommand::printMacLine(guid_t* new_guids, guid_t* old_guids, int mac_index)
{
- printf(" "MAC_FORMAT MAC_SPACES, new_guids[mac_index].h, new_guids[mac_index].l);
+ printf(" " MAC_FORMAT MAC_SPACES, new_guids[mac_index].h, new_guids[mac_index].l);
if (old_guids != NULL) {
printf(MAC_FORMAT, old_guids[mac_index].h, old_guids[mac_index].l);
} else {
@@ -1097,8 +1097,8 @@ BurnSubCommand:: BurnSubCommand()
_flagShort = "b";
_param = "";
_paramExp = "None";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" -i image1.bin burn\n"
- INDENTEX FLINT_NAME" -d "MST_DEV_EXAMPLE2" -guid 0x2c9000100d050 -i image1.bin b";
+ _example = FLINT_NAME" -d " MST_DEV_EXAMPLE1 " -i image1.bin burn\n"
+ INDENTEX FLINT_NAME " -d " MST_DEV_EXAMPLE2 " -guid 0x2c9000100d050 -i image1.bin b";
_v = Wtv_Dev_And_Img;
_maxCmdParamNum = 0;
_cmdType = SC_Burn;
@@ -1688,7 +1688,7 @@ bool QuerySubCommand::displayFs2Uids(con
#define BASE_STR "Base"
#define PRINT_FS3_UID(uid1, str, printStep) \
- printf("%-16s %016"U64H_FMT_GEN" %d", str, uid1.uid, uid1.num_allocated);\
+ printf("%-16s %016" U64H_FMT_GEN " %d", str, uid1.uid, uid1.num_allocated);\
if (printStep) {\
printf(" %d", uid1.step);\
}\
@@ -1873,7 +1873,7 @@ QuerySubCommand:: QuerySubCommand()
_flagShort = "q";
_param = "[full]";
_paramExp = "None";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" query";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " query";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 1;
_cmdType = SC_Query;
@@ -1922,7 +1922,7 @@ VerifySubCommand:: VerifySubCommand()
_flagShort = "v";
_param = "[showitoc]";
_paramExp = "None";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" v";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " v";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 1;
_cmdType = SC_Verify;
@@ -2043,7 +2043,7 @@ BromSubCommand:: BromSubCommand()
_flagShort = "";
_param = "<ROM-file>";
_paramExp = "file: The exp-ROM file.";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" brom exp-rom.rom";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " brom exp-rom.rom";
_v = Wtv_Dev_Or_Img;
_cmdType = SC_Brom;
_maxCmdParamNum = 1;
@@ -2149,7 +2149,7 @@ DromSubCommand:: DromSubCommand()
_flagShort = "";
_param = "";
_paramExp = "None";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" drom";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " drom";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 0;
_cmdType = SC_Drom;
@@ -2198,7 +2198,7 @@ RromSubCommand:: RromSubCommand()
_flagShort = "";
_param = "<out-file>";
_paramExp = "file: filename to write the exp-ROM to.";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" rrom exp-rom.rom";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " rrom exp-rom.rom";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 1;
_minCmdParamNum = 1;
@@ -2258,7 +2258,7 @@ BbSubCommand:: BbSubCommand()
_flagShort = "";
_param = "";
_paramExp = "None";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" -i image1.bin bb";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -i image1.bin bb";
_v = Wtv_Dev_And_Img;
_maxCmdParamNum = 0;
_cmdType = SC_Bb;
@@ -2331,8 +2331,8 @@ SgSubCommand:: SgSubCommand()
INDENTEX"guids_num: (optional) number of GUIDs to be allocated per physical port (FS3 Only)\n"
INDENTEX"step_size: (optional) step size between GUIDs (FS3 Only)\n"
INDENTEX"Note: guids_num/step_size values can be specified per port or for both ports";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" -guid 0x0002c9000100d050 sg"
- "\n"INDENTEX FLINT_NAME" -d "MST_DEV_EXAMPLE4" -guid 0x0002c9000100d050 -mac 0x0002c900d050 sg";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -guid 0x0002c9000100d050 sg"
+ "\n" INDENTEX FLINT_NAME " -d " MST_DEV_EXAMPLE4 " -guid 0x0002c9000100d050 -mac 0x0002c900d050 sg";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 2;
_cmdType = SC_Sg;
@@ -2558,9 +2558,9 @@ SmgSubCommand:: SmgSubCommand()
INDENTEX"Note: guids_num/step_size values can be specified per port or for both ports";
_example = FLINT_NAME" -i fw_image.bin -uid 0x0002c9000100d050 smg"
#ifndef __WIN__
- "\n"INDENTEX FLINT_NAME" -d "MST_DEV_EXAMPLE3" -uid 0x0002c9000100d050 smg (should be used when device is idle)"
+ "\n" INDENTEX FLINT_NAME " -d " MST_DEV_EXAMPLE3 " -uid 0x0002c9000100d050 smg (should be used when device is idle)"
#endif
- "\n"INDENTEX FLINT_NAME" -d "MST_DEV_EXAMPLE4" -guid 0x0002c9000100d050 -mac 0x0002c900d050 smg (should be used when device is idle)";
+ "\n" INDENTEX FLINT_NAME " -d " MST_DEV_EXAMPLE4 " -guid 0x0002c9000100d050 -mac 0x0002c900d050 smg (should be used when device is idle)";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 2;
_cmdType = SC_Smg;
@@ -2671,7 +2671,7 @@ SetVpdSubCommand:: SetVpdSubCommand()
_paramExp = "vpd file: bin file containing the vpd data";
_example = FLINT_NAME" -i fw_image.bin set_vpd vpd.bin"
#ifndef __WIN__
- "\n"INDENTEX FLINT_NAME" -d "MST_DEV_EXAMPLE3" -override_cache_replacement set_vpd vpd.bin (should be used when device is idle)"
+ "\n" INDENTEX FLINT_NAME " -d " MST_DEV_EXAMPLE3 " -override_cache_replacement set_vpd vpd.bin (should be used when device is idle)"
#endif
;
_v = Wtv_Dev_Or_Img;
@@ -2711,9 +2711,9 @@ SvSubCommand:: SvSubCommand()
_flagShort = "";
_param = "";
_paramExp = "None";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" -vsd VSD_STRING sv"
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -vsd VSD_STRING sv"
#ifndef __WIN__
- "\n"INDENTEX FLINT_NAME" -d "MST_DEV_EXAMPLE3" -vsd VSD_STRING -override_cache_replacement sv (should be used when device is idle)\n"
+ "\n" INDENTEX FLINT_NAME " -d " MST_DEV_EXAMPLE3 " -vsd VSD_STRING -override_cache_replacement sv (should be used when device is idle)\n"
#endif
;
_v = Wtv_Dev_Or_Img;
@@ -2769,7 +2769,7 @@ RiSubCommand:: RiSubCommand()
_flagShort = "";
_param = "<out-file>";
_paramExp = "file: filename to write the image to (raw binary).";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" ri file.bin";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " ri file.bin";
_v = Wtv_Dev;
_maxCmdParamNum = 1;
_minCmdParamNum = 1;
@@ -2840,8 +2840,8 @@ DcSubCommand:: DcSubCommand() {
_flagShort = "";
_param = "[out-file]";
_paramExp = "file: (optional) filename to write the dumped configuration to. If not given, the data\n"
- INDENTEX"is printed to screen";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" dc";
+ INDENTEX "is printed to screen";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " dc";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 1;
_cmdType = SC_Dc;
@@ -2886,13 +2886,13 @@ DhSubCommand:: DhSubCommand()
_name = "dh";
_desc = "Dump Hash: dump the hash if it is integrated in the FW image";
_extendedDesc = "Print (to screen or to a file) the HASH text file used by the FW.\n"
- INDENTEX"This command would fail if the image does not contain a Hash file.";
+ INDENTEX "This command would fail if the image does not contain a Hash file.";
_flagLong = "dh";
_flagShort = "";
_param = "[out-file]";
_paramExp = "file - (optional) filename to write the dumped tracer hash file to. If not given, the data\n"
- INDENTEX"is printed to screen";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" dh hash.csv";
+ INDENTEX "is printed to screen";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " dh hash.csv";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 1;
_cmdType = SC_Dh;
@@ -2945,7 +2945,7 @@ SetKeySubCommand:: SetKeySubCommand()
_flagShort = "";
_param = "[key]";
_paramExp = "key: (optional) The new key you intend to set (in hex).";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" set_key 1234deaf5678";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " set_key 1234deaf5678";
_v = Wtv_Dev;
_maxCmdParamNum = 1;
_cmdType = SC_Set_Key;
@@ -3039,7 +3039,7 @@ HwAccessSubCommand:: HwAccessSubCommand(
INDENTEX" You will be asked to type a key when you try to enable HW access.\n"
INDENTEX"key: (optional) The key you intend to use for enabling the HW access.\n"
INDENTEX" Key format consists of at most 16 Hexadecimal digits.";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" hw_access enable";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " hw_access enable";
_v = Wtv_Dev;
_maxCmdParamNum = 2;
_cmdType = SC_Hw_Access;
@@ -3151,7 +3151,7 @@ HwSubCommand:: HwSubCommand()
_flagShort = "";
_param = "query";
_paramExp = "query";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" hw query";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " hw query";
#endif
_v = Wtv_Dev;
_maxCmdParamNum = 2;
@@ -3213,15 +3213,15 @@ FlintStatus HwSubCommand::printAttr(cons
if (attr.quad_en_support) {
switch (attr.mf_get_quad_en_rc) {
case MFE_OK:
- printf(" "QUAD_EN_PARAM" %d\n", attr.quad_en);
+ printf(" " QUAD_EN_PARAM " %d\n", attr.quad_en);
break;
case MFE_MISMATCH_PARAM:
- printf("-E- There is a mismatch in the "QUAD_EN_PARAM" attribute between the flashes attached to the device\n");
+ printf("-E- There is a mismatch in the " QUAD_EN_PARAM " attribute between the flashes attached to the device\n");
break;
case MFE_NOT_SUPPORTED_OPERATION:
break;
default:
- printf("Failed to get "QUAD_EN_PARAM" attribute: %s (%s)",\
+ printf("Failed to get " QUAD_EN_PARAM " attribute: %s (%s)",\
errno == 0 ? "" : strerror(errno), mf_err2str(attr.mf_get_quad_en_rc));
return FLINT_FAILED;
}
@@ -3230,15 +3230,15 @@ FlintStatus HwSubCommand::printAttr(cons
if (attr.dummy_cycles_support) {
switch (attr.mf_get_dummy_cycles_rc) {
case MFE_OK:
- printf(" "DUMMY_CYCLES_PARAM" %d\n", attr.dummy_cycles);
+ printf(" " DUMMY_CYCLES_PARAM " %d\n", attr.dummy_cycles);
break;
case MFE_MISMATCH_PARAM:
- printf("-E- There is a mismatch in the "DUMMY_CYCLES_PARAM" attribute between the flashes attached to the device\n");
+ printf("-E- There is a mismatch in the " DUMMY_CYCLES_PARAM " attribute between the flashes attached to the device\n");
break;
case MFE_NOT_SUPPORTED_OPERATION:
break;
default:
- printf("Failed to get "DUMMY_CYCLES_PARAM" attribute: %s (%s)",\
+ printf("Failed to get " DUMMY_CYCLES_PARAM " attribute: %s (%s)",\
errno == 0 ? "" : strerror(errno), mf_err2str(attr.mf_get_dummy_cycles_rc));
return FLINT_FAILED;
}
@@ -3251,13 +3251,13 @@ FlintStatus HwSubCommand::printAttr(cons
write_protect_info_t protect_info = attr.protect_info_array[bank];
rc = attr.mf_get_write_protect_rc_array[bank];
if (rc == MFE_OK) {
- printf(" "FLASH_NAME"%d."WRITE_PROTECT" ", bank);
+ printf(" " FLASH_NAME "%d." WRITE_PROTECT " ", bank);
if (protect_info.sectors_num != 0) {
printf("%s,", (protect_info.is_bottom ? WP_BOTTOM_STR : WP_TOP_STR));
printf("%d-", protect_info.sectors_num);
printf("%s\n", (protect_info.is_subsector ? WP_SUBSEC_STR : WP_SEC_STR));
} else {
- printf(WP_DISABLED_STR"\n");
+ printf(WP_DISABLED_STR "\n");
}
} else {
if (rc != MFE_NOT_SUPPORTED_OPERATION) { // We ignore the read when operation is not supported!
@@ -3330,7 +3330,7 @@ EraseSubCommand:: EraseSubCommand()
_flagShort = "e";
_param = "<addr>";
_paramExp = "addr - address of word in sector that you want to erase.";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" erase 0x10000";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " erase 0x10000";
_v = Wtv_Dev;
_maxCmdParamNum = 1;
_minCmdParamNum = 1;
@@ -3376,7 +3376,7 @@ RwSubCommand:: RwSubCommand() {
_flagShort = "";
_param = "<addr>";
_paramExp = "addr - address of word to read";
- _example = "flint -d "MST_DEV_EXAMPLE1" rw 0x20";
+ _example = "flint -d " MST_DEV_EXAMPLE1 " rw 0x20";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 1;
_minCmdParamNum = 1;
@@ -3427,7 +3427,7 @@ WwSubCommand:: WwSubCommand()
_param = "<addr> <data>";
_paramExp = "addr - address of word\n"
INDENTEX"data - value of word";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" ww 0x10008 0x5a445a44";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " ww 0x10008 0x5a445a44";
_v = Wtv_Dev;
_maxCmdParamNum = 2;
_minCmdParamNum = 2;
@@ -3489,7 +3489,7 @@ WwneSubCommand:: WwneSubCommand()
_param = "<addr> <data>";
_paramExp = "addr - address of word\n"
INDENTEX"data - value of word";
- _example = "flint -d "MST_DEV_EXAMPLE1" wwne 0x10008 0x5a445a44";
+ _example = "flint -d " MST_DEV_EXAMPLE1 " wwne 0x10008 0x5a445a44";
_v = Wtv_Dev;
_maxCmdParamNum = 2;
_minCmdParamNum = 2;
@@ -3548,7 +3548,7 @@ WbSubCommand:: WbSubCommand() {
_paramExp = "data-file - file that contains the data to be written\n"
INDENTEX"addr - address to write the block to\n";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" wb myData.bin 0x0";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " wb myData.bin 0x0";
_v = Wtv_Dev;
_maxCmdParamNum = 2;
_minCmdParamNum = 2;
@@ -3614,7 +3614,7 @@ WbneSubCommand:: WbneSubCommand() {
_paramExp = "addr - address of block\n"
INDENTEX"size - size of data to write in bytes\n"
INDENTEX"data - data to write - space seperated dwords";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" wbne 0x10000 12 0x30000 0x76800 0x5a445a44";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " wbne 0x10000 12 0x30000 0x76800 0x5a445a44";
_v = Wtv_Dev;
_minCmdParamNum = 3;
_cmdType = SC_Wbne;
@@ -3701,7 +3701,7 @@ RbSubCommand:: RbSubCommand()
INDENTEX"size - size of data to read in bytes\n"
INDENTEX"file - filename to write the block (raw binary). If not given, the data\n"
INDENTEX"is printed to screen";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" rb 0x10000 100 file.bin";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " rb 0x10000 100 file.bin";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 3;
_minCmdParamNum = 2;
@@ -3792,7 +3792,7 @@ ClearSemSubCommand:: ClearSemSubCommand(
_flagShort = "";
_param = "";
_paramExp = "";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" -clear_semaphore";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " -clear_semaphore";
_v = Wtv_Dev;
_maxCmdParamNum = 0;
_cmdType = SC_Clear_Sem;
@@ -3863,7 +3863,7 @@ ResetCfgSubCommand:: ResetCfgSubCommand(
_flagShort = "r";
_param = "";
_paramExp = "";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" reset_cfg";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " reset_cfg";
_v = Wtv_Dev;
_maxCmdParamNum = 0;
_cmdType = SC_ResetCfg;
@@ -3912,7 +3912,7 @@ FiSubCommand:: FiSubCommand()
_flagShort = "";
_param = "";
_paramExp = "";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" fi";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " fi";
_v = Wtv_Dev;
_maxCmdParamNum = 0;
_cmdType = SC_Fix_Img;
@@ -3955,7 +3955,7 @@ CheckSumSubCommand:: CheckSumSubCommand(
_flagShort = "cs";
_param = "";
_paramExp = "";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" checksum";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " checksum";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 0;
_cmdType = SC_Check_Sum;
@@ -4046,10 +4046,10 @@ TimeStampSubCommand:: TimeStampSubComman
INDENTEX" timestamp should comply with ISO 8601 format and provided with UTC timezone: YYYY-MM-DDThh:mm:ssZ\n"
INDENTEX"query : query device/image to view the timestamp\n"
INDENTEX"reset : reset the timestamp, remove the timestamp from device/image.\n";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE4" ts set 2015-12-24T14:52:33Z 14.12.1100\n"
- INDENTEX FLINT_NAME" -d "MST_DEV_EXAMPLE4" ts reset\n"
- INDENTEX FLINT_NAME" -i ./fw4115.bin ts set\n"
- INDENTEX FLINT_NAME" -i ./fw4115.bin ts query";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE4 " ts set 2015-12-24T14:52:33Z 14.12.1100\n"
+ INDENTEX FLINT_NAME " -d " MST_DEV_EXAMPLE4 " ts reset\n"
+ INDENTEX FLINT_NAME " -i ./fw4115.bin ts set\n"
+ INDENTEX FLINT_NAME " -i ./fw4115.bin ts query";
_v = Wtv_Dev_Or_Img;
_maxCmdParamNum = 3;
_minCmdParamNum = 1;
@@ -4321,7 +4321,7 @@ CacheImageSubCommand:: CacheImageSubComm
_flagShort = "ci";
_param = "";
_paramExp = "";
- _example = FLINT_NAME" -d "MST_DEV_EXAMPLE1" cache_image";
+ _example = FLINT_NAME " -d " MST_DEV_EXAMPLE1 " cache_image";
_v = Wtv_Dev;
_maxCmdParamNum = 0;
_minCmdParamNum = 0;

View File

@ -1,7 +1,7 @@
Index: b/mstdump/crd_main/mstdump.c
===================================================================
--- a/mstdump/crd_main/mstdump.c
+++ b/mstdump/crd_main/mstdump.c
diff --git mstdump/crd_main/mstdump.c mstdump/crd_main/mstdump.c
index 32e2c28..7c66c85 100755
--- mstdump/crd_main/mstdump.c
+++ mstdump/crd_main/mstdump.c
@@ -125,12 +125,6 @@ int main(int argc, char* argv[]) {
}
++i; // move past the device parameter
@ -15,10 +15,10 @@ Index: b/mstdump/crd_main/mstdump.c
if (i < argc && !strncmp(argv[i], CAUSE_FLAG, strlen(CAUSE_FLAG))) {
i++;
}
Index: b/small_utils/mcra.c
===================================================================
--- a/small_utils/mcra.c
+++ b/small_utils/mcra.c
diff --git small_utils/mcra.c small_utils/mcra.c
index dd18b2c..d77e20a 100644
--- small_utils/mcra.c
+++ small_utils/mcra.c
@@ -271,11 +271,7 @@ int main(int argc, char *argv[])
perror("mopen");
return 1;

View File

@ -1,8 +1,8 @@
Index: b/common/tools_version.h
===================================================================
--- a/common/tools_version.h
+++ b/common/tools_version.h
@@ -70,10 +70,8 @@ int get_version_string(char* buf, int bu
diff --git common/tools_version.h common/tools_version.h
index e3a242f..0bbeecf 100644
--- common/tools_version.h
+++ common/tools_version.h
@@ -70,10 +70,8 @@ int get_version_string(char* buf, int buf_size, const char* exe_name, const char
len = snprintf(buf, buf_size, "%s %s, ", exe_name, tool_version);
}
// cut out first and last "$" from the SVN version string:

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:578bea060c6b033c7c68f5b5f8afbbbbcbe9031c23d9f37a588664c771883dd4
size 1348758

3
mstflint-4.6.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2111c353a97d0c2b4f33aeef51daa80b750db32394f6e2174a3751bd5f962352
size 3839365

View File

@ -5,13 +5,13 @@ Subject: Add defines for s390x
---
common/compatibility.h | 8 ++++++--
mtcr_ul/packets_common.h | 10 +++++++---
tools_layouts/adb_to_c_utils.h | 8 ++++++--
3 files changed, 19 insertions(+), 7 deletions(-)
tools_layouts/adb_to_c_utils.h | 6 +++++-
3 files changed, 18 insertions(+), 6 deletions(-)
Index: common/compatibility.h
===================================================================
--- common/compatibility.h.orig 2014-04-10 15:37:31.000000000 +0200
+++ common/compatibility.h 2014-05-16 13:32:41.440750201 +0200
--- common/compatibility.h.orig 2016-09-14 13:16:26.000000000 +0200
+++ common/compatibility.h 2017-03-20 12:03:15.259518742 +0100
@@ -61,6 +61,10 @@
# define ARCH_ppc
# elif defined(__aarch64__)
@ -31,7 +31,7 @@ Index: common/compatibility.h
+#if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD) || defined(ARCH_s390)
# if defined(__MINGW32__) || defined(__MINGW64__)
# include <inttypes.h>
# define U64D_FMT "0x%"PRId64
# define U64D_FMT "0x%" PRId64
@@ -107,7 +111,7 @@
# define U48H_FMT "0x%012llx"
# define U64D_FMT_GEN "llu"
@ -43,9 +43,9 @@ Index: common/compatibility.h
# define U48H_FMT "0x%012lx"
Index: mtcr_ul/packets_common.h
===================================================================
--- mtcr_ul/packets_common.h.orig 2014-04-10 15:37:32.000000000 +0200
+++ mtcr_ul/packets_common.h 2014-05-16 13:41:15.870778141 +0200
@@ -148,6 +148,10 @@
--- mtcr_ul/packets_common.h.orig 2016-09-14 13:16:31.000000000 +0200
+++ mtcr_ul/packets_common.h 2017-03-20 12:01:53.115447515 +0100
@@ -150,6 +150,10 @@
# define ARCH_ppc
# elif defined(__aarch64__)
# define ARCH_arm64
@ -56,7 +56,7 @@ Index: mtcr_ul/packets_common.h
# else
# error Unknown CPU architecture using the linux OS
# endif
@@ -161,9 +165,9 @@
@@ -163,9 +167,9 @@
/**********************************/
/* define macros for print fields */
@ -68,7 +68,7 @@ Index: mtcr_ul/packets_common.h
# define U64H_FMT "0x%016lx"
# define U64D_FMT "%lu"
# define U32H_FMT "0x%08x"
@@ -171,7 +175,7 @@
@@ -173,7 +177,7 @@
# define U8H_FMT "0x%02x"
# define U32D_FMT "%u"
# define STR_FMT "%s"
@ -79,9 +79,9 @@ Index: mtcr_ul/packets_common.h
# define U32H_FMT "0x%08x"
Index: tools_layouts/adb_to_c_utils.h
===================================================================
--- tools_layouts/adb_to_c_utils.h.orig 2014-04-10 15:37:32.000000000 +0200
+++ tools_layouts/adb_to_c_utils.h 2014-05-16 13:29:37.380740505 +0200
@@ -133,6 +133,10 @@ extern "C" {
--- tools_layouts/adb_to_c_utils.h.orig 2016-09-14 13:16:31.000000000 +0200
+++ tools_layouts/adb_to_c_utils.h 2017-03-20 12:01:53.115447515 +0100
@@ -137,6 +137,10 @@ extern "C" {
# define ARCH_ppc
# elif defined(__aarch64__)
# define ARCH_arm64
@ -92,16 +92,7 @@ Index: tools_layouts/adb_to_c_utils.h
# else
# error Unknown CPU architecture using the linux OS
# endif
@@ -165,7 +169,7 @@ extern "C" {
#define U16H_FMT "0x%04x"
#define U8H_FMT "0x%02x"
-#if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD)
+#if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD) || defined(ARCH_s390)
# if defined(__MINGW32__) || defined(__MINGW64__)
# include <inttypes.h>
# define U64D_FMT "0x%"PRId64
@@ -176,7 +180,7 @@ extern "C" {
@@ -180,7 +184,7 @@ extern "C" {
# define U64H_FMT "0x%016llx"
# define U48H_FMT "0x%012llx"
# endif

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Fri Mar 31 11:21:24 UTC 2017 - nmoreychaisemartin@suse.com
- Update to v4.6.0-1, No info of changes available (fate#321683).
- Adapt patches to changed sources.
- Support build outside of SCM.
-------------------------------------------------------------------
Mon Mar 20 12:04:43 CET 2017 - pth@suse.de
- Update to 4.5.0-1.17.g8a0c39d, No info of changes available
(fate#321683).
- Adapt mstflint-s390_arch.patch to changed sources.
- Remove mstflint-4.4.0-gcc6.patch as it isn't needed anymore.
-------------------------------------------------------------------
Wed Jun 29 17:36:04 UTC 2016 - i@marguerite.su
@ -13,6 +28,25 @@ Wed Jun 29 17:36:04 UTC 2016 - i@marguerite.su
- add patch: mstflint-4.4.0-no-date-time.patch
* fix file-contains-date-and-time
-------------------------------------------------------------------
Mon Feb 22 10:35:49 CET 2016 - pth@suse.de
- Add mstflint-common_int_handling.patch to fix integer types handling
and use common code instead of duplication. This creates two new
headers, int_handling.h and tools_arch.h. The former has the type
and print formatting code common to all files.
- Use date and time of .changes file to avoid useless rebuilds.
-------------------------------------------------------------------
Thu Feb 18 14:39:47 CET 2016 - pth@suse.de
- Update to 4.3.0 git 9b9af70 (fate#320235 bsc#66196).
- Remove mstflint-autotools.patch as it's not needed anymore.
- Generate ChangeLog from git log and include it.
- Refresh and fix mstflint-s390_arch.patch to apply cleanly.
- Build with Checksums enabled.
- Add placeholder man pages from Debian.
-------------------------------------------------------------------
Sun Mar 8 10:46:01 UTC 2015 - p.drouand@gmail.com

View File

@ -1,7 +1,7 @@
#
# spec file for package mstflint
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -16,24 +16,27 @@
#
%define extra_version -1
Name: mstflint
Version: 4.4.0
Version: 4.6.0
Release: 0
Summary: Mellanox Firmware Burning and Diagnostics Tools
License: GPL-2.0 or BSD-2-Clause
Group: System/Console
Url: http://www.openfabrics.org
Source: https://www.openfabrics.org/downloads/mstflint/%{name}-%{version}.tar.gz
Obsoletes: mstflint-devel < %{version}
Source: https://github.com/Mellanox/mstflint/releases/download/v%{version}%{?extra_version}/%{name}-%{version}.tar.gz
# PATCH-FIX-UPSTREAM Build libmtcr as shared library
Source1: mstfint-mtcr_ul_no_static_lib.patch
# PATCH-FIX-UPSTREAM Add all needed defines to get it built on s390x
Patch4: mstflint-s390_arch.patch
# PATCH-FIX-UPSTREAM unable to find string literal operator
Patch6: mstflint-4.4.0-gcc6.patch
Patch1: mstflint-s390_arch.patch
# PATCH-FIX-UPSTREAM implicit declaration of mset_cr_access
Patch7: mstflint-4.4.0-implicit-declaration.patch
Patch2: mstflint-4.4.0-implicit-declaration.patch
# PATCH-FIX-UPSTREAM no __DATE__ and __TIME__ in codes
Patch8: mstflint-4.4.0-no-date-time.patch
Patch3: mstflint-4.4.0-no-date-time.patch
BuildRequires: gcc-c++
BuildRequires: libibmad-devel
BuildRequires: libtool
@ -52,11 +55,9 @@ the downloads page at the Mellanox web site.
%prep
%setup -q
%patch4
%patch6 -p1
%patch7 -p1
%patch8 -p1
rm -f mtcr_ul/Makefile.in
%patch1
%patch2
%patch3
%build
./autogen.sh
@ -69,10 +70,6 @@ rm -rf %{buildroot}%{_includedir}/mstflint
rm -rf %{buildroot}%{_libdir}/mstflint/
rm -rf %{buildroot}%{_bindir}/hca_self_test.ofed
#%%post -p /sbin/ldconfig
#%%postun -p /sbin/ldconfig
%files
%defattr(-, root, root)
%doc README COPYING LICENSE