opal/util/ethtool: use system ethtool_cmd_speed when available
Refs: open-mpi/ompi#1679
Этот коммит содержится в:
родитель
99d3c283f5
Коммит
a01a5487a8
@ -64,7 +64,9 @@ opal_ethtool_get_speed (const char *if_name)
|
||||
goto out;
|
||||
}
|
||||
|
||||
#ifdef HAVE_STRUCT_ETHTOOL_CMD_SPEED_HI
|
||||
#if HAVE_DECL_ETHTOOL_CMD_SPEED
|
||||
speed = ethtool_cmd_speed(&edata);
|
||||
#elif defined(HAVE_STRUCT_ETHTOOL_CMD_SPEED_HI)
|
||||
speed = (edata.speed_hi << 16) | edata.speed;
|
||||
#else
|
||||
speed = edata.speed;
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user