<html><body>
<p>I am going to add below ethtool ops in ipoib. Anything comments? Once ethtool support is added, GSO will be get/set directly through ethtool as Michael pointed out earlier.<br>
<br>
static struct ethtool_ops ipoib_ethtool_ops = {<br>
        .get_settings           = ipoib_get_settings,<br>
        .set_settings           = ipoib_set_settings,<br>
        .get_drvinfo            = ipoib_get_dvrinfo,<br>
        .get_link               = ethtool_op_get_link,<br>
        .get_stats_count        = ipoib_get_stats_count,<br>
        .get_ethtool_stats      = ipoib_get_ethtool_stats,<br>
/* can be added later once ipoib support sg<br>
        .get_sg                 = ethtool_op_get_sg,<br>
        .set_sg                 = ethtool_op_set_sg,<br>
*/<br>
};<br>
<br>
thanks<br>
Shirley Ma</body></html>