提交 cf922bf8 编写于 作者: J Ján Tomko

Reindent virNetDevSendEthtoolIoctl

上级 0a9bbe74
...@@ -3213,15 +3213,15 @@ virNetDevSendEthtoolIoctl(int fd, struct ifreq *ifr) ...@@ -3213,15 +3213,15 @@ virNetDevSendEthtoolIoctl(int fd, struct ifreq *ifr)
ret = ioctl(fd, SIOCETHTOOL, ifr); ret = ioctl(fd, SIOCETHTOOL, ifr);
if (ret != 0) { if (ret != 0) {
switch (errno) { switch (errno) {
case EINVAL: /* kernel doesn't support SIOCETHTOOL */ case EINVAL: /* kernel doesn't support SIOCETHTOOL */
VIR_DEBUG("ethtool ioctl: invalid request"); VIR_DEBUG("ethtool ioctl: invalid request");
break; break;
case EOPNOTSUPP: /* kernel doesn't support specific feature */ case EOPNOTSUPP: /* kernel doesn't support specific feature */
VIR_DEBUG("ethtool ioctl: request not supported"); VIR_DEBUG("ethtool ioctl: request not supported");
break; break;
default: default:
virReportSystemError(errno, "%s", _("ethtool ioctl error")); virReportSystemError(errno, "%s", _("ethtool ioctl error"));
break; break;
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册