mirror of https://github.com/F-Stack/f-stack.git
Fix kni build error, compatible with both strlcpy and strscpy.
This commit is contained in:
parent
08fb383d70
commit
3fbb555e0d
|
@ -806,8 +806,13 @@ static const struct net_device_ops kni_net_netdev_ops = {
|
||||||
static void kni_get_drvinfo(struct net_device *dev,
|
static void kni_get_drvinfo(struct net_device *dev,
|
||||||
struct ethtool_drvinfo *info)
|
struct ethtool_drvinfo *info)
|
||||||
{
|
{
|
||||||
|
#if __GNUC__ >= 13
|
||||||
strscpy(info->version, KNI_VERSION, sizeof(info->version));
|
strscpy(info->version, KNI_VERSION, sizeof(info->version));
|
||||||
strscpy(info->driver, "kni", sizeof(info->driver));
|
strscpy(info->driver, "kni", sizeof(info->driver));
|
||||||
|
#else
|
||||||
|
strlcpy(info->version, KNI_VERSION, sizeof(info->version));
|
||||||
|
strlcpy(info->driver, "kni", sizeof(info->driver));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct ethtool_ops kni_net_ethtool_ops = {
|
static const struct ethtool_ops kni_net_ethtool_ops = {
|
||||||
|
|
Loading…
Reference in New Issue