* question tehuti.c
@ 2013-09-23 15:54 Julia Lawall
2013-09-24 15:34 ` Andy Gospodarek
0 siblings, 1 reply; 2+ messages in thread
From: Julia Lawall @ 2013-09-23 15:54 UTC (permalink / raw)
To: andy, netdev, linux-kernel
The function bdx_setmulti in the file drivers/net/ethernet/tehuti/tehuti.c
contains:
u32 rxf_val =
GMAC_RX_FILTER_AM | GMAC_RX_FILTER_AB | GMAC_RX_FILTER_OSEN;
and then later:
} else {
DBG("only own mac %d\n", netdev_mc_count(ndev));
rxf_val |= GMAC_RX_FILTER_AB;
}
The last assignment doesn't look very useful, because GMAC_RX_FILTER_ABis
already included in rxf_val. Was something else intended?
thanks,
julia
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: question tehuti.c
2013-09-23 15:54 question tehuti.c Julia Lawall
@ 2013-09-24 15:34 ` Andy Gospodarek
0 siblings, 0 replies; 2+ messages in thread
From: Andy Gospodarek @ 2013-09-24 15:34 UTC (permalink / raw)
To: Julia Lawall; +Cc: netdev, linux-kernel, Alexander Indenbaum
On Mon, Sep 23, 2013 at 05:54:00PM +0200, Julia Lawall wrote:
> The function bdx_setmulti in the file drivers/net/ethernet/tehuti/tehuti.c
> contains:
>
> u32 rxf_val =
> GMAC_RX_FILTER_AM | GMAC_RX_FILTER_AB | GMAC_RX_FILTER_OSEN;
>
> and then later:
>
> } else {
> DBG("only own mac %d\n", netdev_mc_count(ndev));
> rxf_val |= GMAC_RX_FILTER_AB;
> }
>
> The last assignment doesn't look very useful, because GMAC_RX_FILTER_ABis
> already included in rxf_val. Was something else intended?
You are correct that the setting of GMAC_RX_FILTER_AB is a bit redundant
since it was set earlier in the function.
I have not worked on this driver in several years and if there is no
response from Alexander or someone else at Tehuti Networks then you may
not get an answer to your question. :-/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-09-24 15:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-23 15:54 question tehuti.c Julia Lawall
2013-09-24 15:34 ` Andy Gospodarek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox