Re: [RFC/RFT] calloutng

2012-12-15 Thread Oliver Pinter
On 12/15/12, Bruce Evans b...@optusnet.com.au wrote: On Fri, 14 Dec 2012, Oliver Pinter wrote: 635 - return tticks; 636 + getbinuptime(pbt); 637 + bt.sec = data / 1000; 638 + bt.frac = (data % 1000) * (uint64_t)1844674407309000LL; 639 + bintime_add(bt, pbt);

Re: [RFC/RFT] calloutng

2012-12-15 Thread Bruce Evans
On Fri, 14 Dec 2012, Oliver Pinter wrote: 635 - return tticks; 636 + getbinuptime(pbt); 637 + bt.sec = data / 1000; 638 + bt.frac = (data % 1000) * (uint64_t)1844674407309000LL; 639 + bintime_add(bt, pbt); 640 + return bt; Style bugs: missing spaces around

Re: [RFC/RFT] calloutng

2012-12-15 Thread Bruce Evans
On Sat, 15 Dec 2012, Bruce Evans wrote: On Fri, 14 Dec 2012, Oliver Pinter wrote: What is this 1844674407309000LL constant? This is 2**64 / 10**6 * 10**3 obfuscated by printing it in hex and doing the scaling by powers of 10 manually, and then giving it a bogus type using the

Re: [RFC/RFT] calloutng

2012-12-15 Thread Bruce Evans
On Sat, 15 Dec 2012, Oliver Pinter wrote: On 12/15/12, Bruce Evans b...@optusnet.com.au wrote: ... Because of the different grouping of the multiplications, the second is unfortunately slower (1 more multiplication that cannot be done at compile time). The second also gives unnecessary (but

HEADS UP: FreeBSD git mirrors demoted to beta status, need your help

2012-12-15 Thread Ulrich Spörlein
Bad news everyone, tl;dr The git mirror of the source repository needs to be re-rolled to make the conversion deterministically repeatable, this will change pretty much all git commit hashes. The re-roll will be done January 15, 2013. Not affected are the ports and doc repositories, nor is the

Re: looking for help from ppp users

2012-12-15 Thread Paul Webster
Hey there gary, this works for talktalk/UK ADSL modem in PPPoE mode, or did beore my house move ill double cobnfirm in 6 days when my new line is active. #talktalk: set reconnect 999 1 set device PPPoE:xl0 # replace xl1 with your Ethernet device set authname

Re: AR9285 not see n-channels

2012-12-15 Thread Fbsd8
Adrian On 12 December 2012 17:39, Andrey Fesenko f0and...@gmail.com wrote: On Thu, Dec 13, 2012 at 5:33 AM, Adrian Chadd adrian.ch...@gmail.com wrote: Hi, The AR9285 is a 2GHz only NIC. The channel list shows 11b, 11bg, HT20 and HT40 channels. It all looks right, why don't you think it

Re: HEADS UP: FreeBSD git mirrors demoted to beta status, need your help

2012-12-15 Thread Chris Rees
On 15 December 2012 13:22, Ulrich Spörlein u...@freebsd.org wrote: Bad news everyone, tl;dr The git mirror of the source repository needs to be re-rolled to make the conversion deterministically repeatable, this will change pretty much all git commit hashes. The re-roll will be done January

Re: AR9285 not see n-channels

2012-12-15 Thread Gary Palmer
On Sat, Dec 15, 2012 at 11:03:42AM -0500, Fbsd8 wrote: Adrian On 12 December 2012 17:39, Andrey Fesenko f0and...@gmail.com wrote: On Thu, Dec 13, 2012 at 5:33 AM, Adrian Chadd adrian.ch...@gmail.com wrote: Hi, The AR9285 is a 2GHz only NIC. The channel list shows 11b, 11bg,

Re: [RFC/RFT] calloutng

2012-12-15 Thread Alexander Motin
Hi. I'm sorry to interrupt review, but as usual good ideas came during the final testing, causing another round. :) Here is updated patch for HEAD, that includes several new changes: http://people.freebsd.org/~mav/calloutng_12_15.patch The new changes are: -- Precision and event

Re: [RFC/RFT] calloutng

2012-12-15 Thread Adrian Chadd
Hi, Can you please test with MIPS? David has a MIPS board now. Can you also test that various performance tests haven't been affected? Eg, do iperf tests through that MIPS board, configured up as an AP. Please test with a bunch of disk IO activity too. I know this is a lot to ask for, but I'd

Re: [RFC/RFT] calloutng

2012-12-15 Thread Davide Italiano
On Sat, Dec 15, 2012 at 10:05 AM, Adrian Chadd adr...@freebsd.org wrote: Hi, Can you please test with MIPS? David has a MIPS board now. Quoting from my first mail -- We tested the code on amd64, MIPS and arm. I used the board you gave to me. I run only some basic tests, but I can look forward

Re: AR9285 not see n-channels

2012-12-15 Thread Adrian Chadd
Hi, The output is in line with the 802.11n specification, which calls all of this stuff HT. I'll work with Eadler and others to improve the wireless documentation and FAQ and I'll make sure there's a chapter on 802.11n, which explains what HT (high throughput) is. 802.11ac is adding VHT (very

Re: [RFC/RFT] calloutng

2012-12-15 Thread Mark Johnston
On Sat, Dec 15, 2012 at 06:55:53PM +0200, Alexander Motin wrote: Hi. I'm sorry to interrupt review, but as usual good ideas came during the final testing, causing another round. :) Here is updated patch for HEAD, that includes several new changes:

Re: [RFC/RFT] calloutng

2012-12-15 Thread Garrett Cooper
On Dec 15, 2012, at 12:34 PM, Mark Johnston wrote: On Sat, Dec 15, 2012 at 06:55:53PM +0200, Alexander Motin wrote: Hi. I'm sorry to interrupt review, but as usual good ideas came during the final testing, causing another round. :) Here is updated patch for HEAD, that includes several

Re: [RFC/RFT] calloutng

2012-12-15 Thread Davide Italiano
On Sat, Dec 15, 2012 at 12:34 PM, Mark Johnston mark...@gmail.com wrote: On Sat, Dec 15, 2012 at 06:55:53PM +0200, Alexander Motin wrote: Hi. I'm sorry to interrupt review, but as usual good ideas came during the final testing, causing another round. :) Here is updated patch for HEAD, that

Re: [RFC/RFT] calloutng

2012-12-15 Thread Alexander Motin
On 15.12.2012 22:50, Davide Italiano wrote: On Sat, Dec 15, 2012 at 12:34 PM, Mark Johnston mark...@gmail.com wrote: On Sat, Dec 15, 2012 at 06:55:53PM +0200, Alexander Motin wrote: I'm sorry to interrupt review, but as usual good ideas came during the final testing, causing another round. :)

Re: HEADS UP: FreeBSD git mirrors demoted to beta status, need your help

2012-12-15 Thread Ulrich Spörlein
On Sat, 2012-12-15 at 16:10:46 +, Chris Rees wrote: On 15 December 2012 13:22, Ulrich Spörlein u...@freebsd.org wrote: Bad news everyone, tl;dr The git mirror of the source repository needs to be re-rolled to make the conversion deterministically repeatable, this will change pretty

Re: [RFC/RFT] calloutng

2012-12-15 Thread Alexander Motin
On 15.12.2012 23:03, Alexander Motin wrote: On 15.12.2012 22:50, Davide Italiano wrote: On Sat, Dec 15, 2012 at 12:34 PM, Mark Johnston mark...@gmail.com wrote: On Sat, Dec 15, 2012 at 06:55:53PM +0200, Alexander Motin wrote: I'm sorry to interrupt review, but as usual good ideas came during

Re: HEADS UP: FreeBSD git mirrors demoted to beta status, need your help

2012-12-15 Thread Ulrich Spörlein
On Sat, 2012-12-15 at 22:07:46 +0100, Ulrich Spörlein wrote: On Sat, 2012-12-15 at 16:10:46 +, Chris Rees wrote: On 15 December 2012 13:22, Ulrich Spörlein u...@freebsd.org wrote: Bad news everyone, tl;dr The git mirror of the source repository needs to be re-rolled to make the

FWD: FreeBSD Development Snapshot Availability

2012-12-15 Thread Glen Barber
For those on -stable@ and -current@ not subscribed to -announce@: Glen - Forwarded message from Glen Barber g...@freebsd.org - Date: Sat, 15 Dec 2012 10:37:11 -0500 From: Glen Barber g...@freebsd.org To: freebsd-annou...@freebsd.org Subject: FreeBSD Development Snapshot Availability I

Re: HEADS UP: FreeBSD git mirrors demoted to beta status, need your help

2012-12-15 Thread Alfred Perlstein
On Dec 15, 2012, at 1:16 PM, Ulrich Spörlein u...@freebsd.org wrote: Ok, scrap that, I have too many copies of the conversion lying around and got confused. I'd like to thank all who reported in with hashes of their conversion run and will make sure all is solid tomorrow. Thanks. I am

Re: looking for help from ppp users

2012-12-15 Thread Erich Dollansky
Hi, On Sat, 15 Dec 2012 01:14:10 -0500 Eitan Adler li...@eitanadler.com wrote: On 3 December 2012 10:41, Gary Palmer gpal...@freebsd.org wrote: While not commenting on the correctness of the current contents, the userland PPP section of the FAQ appears to mostly deal with dialup modems.

Re: Lenovo x220 suspend/resume broken

2012-12-15 Thread Adrian Chadd
Hi, jkim - is there any negative side-effect from reverting r231797 ? Did this fix a bug you saw on another platform? I have the same symptom on my T400, unfortunately it's in the office and I can't get to it right now to test. Thanks, Adrian ___