Re: [IWN] Reviw split 2

2013-08-03 Thread Adrian Chadd
Nah, let's take it easier for now. Just leave the trace flags where they are in your diff, remove the flags check so the debug mask works the way it is, and submit a diff with _just_ the remaining debug flags line changes. That way we know what the required changes are, it will only bug people do

RE: [IWN] Reviw split 2

2013-08-03 Thread Cedric GROSS
> -Message d'origine- > De : adrian.ch...@gmail.com [mailto:adrian.ch...@gmail.com] De la part > de Adrian Chadd > Envoyé : samedi 3 août 2013 21:50 > À : Cedric GROSS > Cc : freebsd-wireless@freebsd.org > Objet : Re: [IWN] Reviw split 2 > > On 3 August

Re: [IWN] Reviw split 2

2013-08-03 Thread Adrian Chadd
On 3 August 2013 12:43, Cedric GROSS wrote: >> Ok, why'd you change the debug print macro to check if the debug flags >> match the check, rather than if the debug flags are set in the check? >> >> ie >> >> (f) & (v) >> >> versus >> ( (f) & (v) == (v) ) >> >> ? > > It's for reducing tracing verbos

RE: [IWN] Reviw split 2

2013-08-03 Thread Cedric GROSS
> De : adrian.ch...@gmail.com [mailto:adrian.ch...@gmail.com] De la part > de Adrian Chadd > Envoyé : samedi 3 août 2013 21:37 > À : Cedric GROSS > Cc : freebsd-wireless@freebsd.org > Objet : Re: [IWN] Reviw split 2 > > Ok, why'd you change the debug print macr

Re: [IWN] Reviw split 2

2013-08-03 Thread Adrian Chadd
Ok, why'd you change the debug print macro to check if the debug flags match the check, rather than if the debug flags are set in the check? ie (f) & (v) versus ( (f) & (v) == (v) ) ? I'd like to tidy up the debugging changes that are left in your source file before we move onto the next bits.

RE: [IWN] Reviw split 2

2013-08-03 Thread Cedric GROSS
> De : adrian.ch...@gmail.com [mailto:adrian.ch...@gmail.com] De la part > de Adrian Chadd > Envoyé : samedi 3 août 2013 20:20 > À : Cedric GROSS > Cc : freebsd-wireless@freebsd.org > Objet : Re: [IWN] Reviw split 2 > > On 3 August 2013 04:23, Cedric GROSS wrote: >

Re: [IWN] Reviw split 2

2013-08-03 Thread Adrian Chadd
On 3 August 2013 04:23, Cedric GROSS wrote: >> Can you please post an updated diff against what's in -HEAD now? > > As requested here is full patch. Thanks! > It should. 4965 part was not impacted. But Don't you said that full patch > break your 5100 ? Yup, it is breaking it very quickly. I'll

Re: [IWN] Reviw split 2

2013-08-02 Thread Adrian Chadd
I've committed -3 and -4 from your work. Can you please post an updated diff against what's in -HEAD now? I have updated firmware here that I'm going to commit soon, including the newer device firmware. But I do want to test on the 4965 first just to make sure it still 'works'. Thanks! -adrian

RE: [IWN] Reviw split 2

2013-08-02 Thread Cedric GROSS
> -Message d'origine- > De : adrian.ch...@gmail.com [mailto:adrian.ch...@gmail.com] De la part > de Adrian Chadd > Envoyé : jeudi 1 août 2013 23:49 > À : Cedric GROSS > Cc : freebsd-wireless@freebsd.org > Objet : Re: [IWN] Reviw split 2 > > Committed! >

Re: [IWN] Reviw split 2

2013-08-01 Thread Adrian Chadd
an.ch...@gmail.com] De la part >> de Adrian Chadd >> Envoyé : mercredi 31 juillet 2013 17:08 >> À : Cedric GROSS >> Cc : freebsd-wireless@freebsd.org >> Objet : Re: [IWN] Reviw split 2 >> >> Hi, >> >> There's some more whitespace

Re: [IWN] Reviw split 2

2013-07-31 Thread Adrian Chadd
13 17:08 >> À : Cedric GROSS >> Cc : freebsd-wireless@freebsd.org >> Objet : Re: [IWN] Reviw split 2 >> >> Hi, >> >> There's some more whitespace things to fix in your diff. >> >> - >> ->..>...

RE: [IWN] Reviw split 2

2013-07-31 Thread Cedric GROSS
> -Message d'origine- > De : adrian.ch...@gmail.com [mailto:adrian.ch...@gmail.com] De la part > de Adrian Chadd > Envoyé : mercredi 31 juillet 2013 17:08 > À : Cedric GROSS > Cc : freebsd-wireless@freebsd.org > Objet : Re: [IWN] Reviw split 2 > > Hi, &

Re: [IWN] Reviw split 2

2013-07-31 Thread Adrian Chadd
Hi, There's some more whitespace things to fix in your diff. - ->..>...>...bus_dmamap_sync(sc->rxq.data_dmat, data->map, ->..>...>...BUS_DMASYNC_POSTREAD); ->..>...>...DPRINTF(sc, IWN_DEBUG_ANY, +>..>...>...>...DPRINTF(sc, IWN_DEBUG_ANY, >.

RE: [IWN] Reviw split 2

2013-07-29 Thread Cedric GROSS
> -Message d'origine- > De : owner-freebsd-wirel...@freebsd.org [mailto:owner-freebsd- > wirel...@freebsd.org] De la part de Adrian Chadd > Envoyé : dimanche 28 juillet 2013 21:25 > À : Cedric GROSS > Cc : freebsd-wireless@freebsd.org > Objet : Re: [

Re: [IWN] Reviw split 2

2013-07-28 Thread Adrian Chadd
Hi! Feedback time! - DPRINTF(sc, IWN_DEBUG_TRACE, "->%s done\n", __func__); + DPRINTF(sc, IWN_DEBUG_TRACE, "->%s: end\n",__func__); + .. all that did was delete a space and add a new line. Just add the space back in there, delete the new line; then that part of the diff will disappea