Re: [PATCH v2] staging: ks7010: call 'hostif_mib_set_request_int' instead of 'hostif_mib_set_request_bool'

2018-07-13 Thread Sergio Paracuellos
On Fri, Jul 13, 2018 at 12:26:46AM -0700, Dan Carpenter wrote:
> On Fri, Jul 13, 2018 at 06:46:57AM +0200, Sergio Paracuellos wrote:
> > 'hostif_mib_set_request_bool' function receives a bool as value and
> > send the received value with MIB_VALUE_TYPE_BOOL type. There is
> > one case where the value passed is not a boolean one but
> > 'MCAST_FILTER_PROMISC' which is '2'. Call hostif_mib_set_request_int
> > instead. This changes original code behaviour but seems to be the
> > right way to do this.
> > 
> > Fixes: 8ce76bff0e6a ("staging: ks7010: add new helpers to achieve
> > mib set request and simplify code")
> > 
> > Reported-by: Dan Carpenter 
> > Signed-off-by: Sergio Paracuellos 
> > ---
> > Changes in v2:
> > - Rename commit message. Previous patch was: 
> >staging: ks7010: pass 'int' instead of 'bool' to 
> > 'hostif_mib_set_request_bool'
> > - Call 'hostif_mib_set_request_int' for this case instead of
> >change hostif_mib_set_request_bool parameter type. 
> > 
> > This has been reported as a bug here:
> > http://driverdev.linuxdriverproject.org/pipermail/driverdev-devel/2018-July/123058.html
> >  drivers/staging/ks7010/ks_hostif.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/staging/ks7010/ks_hostif.c 
> > b/drivers/staging/ks7010/ks_hostif.c
> > index a85975f..94bee25 100644
> > --- a/drivers/staging/ks7010/ks_hostif.c
> > +++ b/drivers/staging/ks7010/ks_hostif.c
> > @@ -1840,8 +1840,8 @@ void hostif_sme_multicast_set(struct ks_wlan_private 
> > *priv)
> > memset(set_address, 0, NIC_MAX_MCAST_LIST * ETH_ALEN);
> >  
> > if (dev->flags & IFF_PROMISC) {
> > -   hostif_mib_set_request_bool(priv, LOCAL_MULTICAST_FILTER,
> > -   MCAST_FILTER_PROMISC);
> > +   hostif_mib_set_request_int(priv, LOCAL_MULTICAST_FILTER,
> > +  MCAST_FILTER_PROMISC);
> 
> 
> Sorry, I meant all three MCAST_FILTER_PROMISC, MCAST_FILTER_MCAST, and
> MCAST_FILTER_MCASTALL.

You are right, my bad. v3 sent already.

> 
> regards,
> dan carpenter
> 

Best regards,
Sergio Paracuellos
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH v2] staging: ks7010: call 'hostif_mib_set_request_int' instead of 'hostif_mib_set_request_bool'

2018-07-13 Thread Dan Carpenter
On Fri, Jul 13, 2018 at 06:46:57AM +0200, Sergio Paracuellos wrote:
> 'hostif_mib_set_request_bool' function receives a bool as value and
> send the received value with MIB_VALUE_TYPE_BOOL type. There is
> one case where the value passed is not a boolean one but
> 'MCAST_FILTER_PROMISC' which is '2'. Call hostif_mib_set_request_int
> instead. This changes original code behaviour but seems to be the
> right way to do this.
> 
> Fixes: 8ce76bff0e6a ("staging: ks7010: add new helpers to achieve
> mib set request and simplify code")
> 
> Reported-by: Dan Carpenter 
> Signed-off-by: Sergio Paracuellos 
> ---
> Changes in v2:
> - Rename commit message. Previous patch was: 
>staging: ks7010: pass 'int' instead of 'bool' to 
> 'hostif_mib_set_request_bool'
> - Call 'hostif_mib_set_request_int' for this case instead of
>change hostif_mib_set_request_bool parameter type. 
> 
> This has been reported as a bug here:
> http://driverdev.linuxdriverproject.org/pipermail/driverdev-devel/2018-July/123058.html
>  drivers/staging/ks7010/ks_hostif.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/ks7010/ks_hostif.c 
> b/drivers/staging/ks7010/ks_hostif.c
> index a85975f..94bee25 100644
> --- a/drivers/staging/ks7010/ks_hostif.c
> +++ b/drivers/staging/ks7010/ks_hostif.c
> @@ -1840,8 +1840,8 @@ void hostif_sme_multicast_set(struct ks_wlan_private 
> *priv)
>   memset(set_address, 0, NIC_MAX_MCAST_LIST * ETH_ALEN);
>  
>   if (dev->flags & IFF_PROMISC) {
> - hostif_mib_set_request_bool(priv, LOCAL_MULTICAST_FILTER,
> - MCAST_FILTER_PROMISC);
> + hostif_mib_set_request_int(priv, LOCAL_MULTICAST_FILTER,
> +MCAST_FILTER_PROMISC);


Sorry, I meant all three MCAST_FILTER_PROMISC, MCAST_FILTER_MCAST, and
MCAST_FILTER_MCASTALL.

regards,
dan carpenter

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[PATCH v2] staging: ks7010: call 'hostif_mib_set_request_int' instead of 'hostif_mib_set_request_bool'

2018-07-12 Thread Sergio Paracuellos
'hostif_mib_set_request_bool' function receives a bool as value and
send the received value with MIB_VALUE_TYPE_BOOL type. There is
one case where the value passed is not a boolean one but
'MCAST_FILTER_PROMISC' which is '2'. Call hostif_mib_set_request_int
instead. This changes original code behaviour but seems to be the
right way to do this.

Fixes: 8ce76bff0e6a ("staging: ks7010: add new helpers to achieve
mib set request and simplify code")

Reported-by: Dan Carpenter 
Signed-off-by: Sergio Paracuellos 
---
Changes in v2:
- Rename commit message. Previous patch was: 
   staging: ks7010: pass 'int' instead of 'bool' to 
'hostif_mib_set_request_bool'
- Call 'hostif_mib_set_request_int' for this case instead of
   change hostif_mib_set_request_bool parameter type. 

This has been reported as a bug here:
http://driverdev.linuxdriverproject.org/pipermail/driverdev-devel/2018-July/123058.html
 drivers/staging/ks7010/ks_hostif.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/ks7010/ks_hostif.c 
b/drivers/staging/ks7010/ks_hostif.c
index a85975f..94bee25 100644
--- a/drivers/staging/ks7010/ks_hostif.c
+++ b/drivers/staging/ks7010/ks_hostif.c
@@ -1840,8 +1840,8 @@ void hostif_sme_multicast_set(struct ks_wlan_private 
*priv)
memset(set_address, 0, NIC_MAX_MCAST_LIST * ETH_ALEN);
 
if (dev->flags & IFF_PROMISC) {
-   hostif_mib_set_request_bool(priv, LOCAL_MULTICAST_FILTER,
-   MCAST_FILTER_PROMISC);
+   hostif_mib_set_request_int(priv, LOCAL_MULTICAST_FILTER,
+  MCAST_FILTER_PROMISC);
goto spin_unlock;
}
 
-- 
2.7.4

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel