1
1

opal/util/ethtool: use system ethtool_cmd_speed when available

Refs: open-mpi/ompi#1679
Этот коммит содержится в:
Gilles Gouaillardet 2016-05-20 09:05:09 +09:00
родитель 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;