mirror of https://gitee.com/openkylin/libvirt.git
Reindent virNetDevSendEthtoolIoctl
This commit is contained in:
parent
0a9bbe748a
commit
cf922bf837
|
@ -3213,15 +3213,15 @@ virNetDevSendEthtoolIoctl(int fd, struct ifreq *ifr)
|
|||
ret = ioctl(fd, SIOCETHTOOL, ifr);
|
||||
if (ret != 0) {
|
||||
switch (errno) {
|
||||
case EINVAL: /* kernel doesn't support SIOCETHTOOL */
|
||||
VIR_DEBUG("ethtool ioctl: invalid request");
|
||||
break;
|
||||
case EOPNOTSUPP: /* kernel doesn't support specific feature */
|
||||
VIR_DEBUG("ethtool ioctl: request not supported");
|
||||
break;
|
||||
default:
|
||||
virReportSystemError(errno, "%s", _("ethtool ioctl error"));
|
||||
break;
|
||||
case EINVAL: /* kernel doesn't support SIOCETHTOOL */
|
||||
VIR_DEBUG("ethtool ioctl: invalid request");
|
||||
break;
|
||||
case EOPNOTSUPP: /* kernel doesn't support specific feature */
|
||||
VIR_DEBUG("ethtool ioctl: request not supported");
|
||||
break;
|
||||
default:
|
||||
virReportSystemError(errno, "%s", _("ethtool ioctl error"));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue