Subject: Re: CVS commit: syssrc
To: enami tsugutomo <enami@sm.sony.co.jp>
From: None <itojun@iijlab.net>
List: tech-net
Date: 05/28/2001 11:02:38
>> > i (and momo@iij.ad.jp) have confirmed that we really need this patch,
>> > because of the following story:
>> to clarify: you can call ether_ioctl() instead of three lines.
>Yup. And `call ether_ioctl()' is the way most of other drivers does.
>BTW, s/three/five/ since the case labels aren't necessary also.
do we always want to hide ENETRESET, like below?
i mean, isn't it specific to SIOCADD/DELMULTI?
switch (blah) {
...
default:
error = ether_ioctl(blah);
if (error == ENETRESET)
error = 0;
break;
}
itojun