Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re: Thanks Obama... (Score 1) 199

It doesn't have to be faster or cheaper than a commuter air flight. It just has to scale better.

I don't know how often you fly SF LA, but there are a lot of flights going on there and frequently I've been bumped or heavily delayed because of something that happened far before I even turned up to the airport.

Anything that can change how the transport system works and scales over changing loads will be welcome.

Comment Re:BSD (Score 2) 262

No, it's not the same.

The idea is that you use the 32 bit pointer model, with 32 bit indirect instructions, but you're doing it all using the x86-64 instruction set. Ie, the task is in 64 bit mode. The 64 bit mode includes primarily more registers, so you can write / compile to tighter code.

The stuff you described is for running 32 bit binaries that use the i386/i485/i586 instruction set, complete with the limited set of temporary registers. x86-64 has many more registers to use.

It's not just about cache lines. :)

Comment Re: For surely (Score 3, Informative) 83

Works fine for me on chips supported by dri. The dri2 support is being nailed down now and once that's in it'll work fine on the same bleeding edge Intel hardware Linux does.

I'm the wifi guy. The WiFi is now up to date on Intel and Atheros 11n. I'd like some help with broadcom. I'll do the Intel and Atheros 11ac stuff early next year.

I'm currently evaluating power management. FreeBSD and xorg on my ivybridge lenovo x230 draw 9w when idle. We are ok at using the deep sleep states per core and package but there's room for improvement.

I'm making the turbo boost stuff work out of the box. Powerd is .. Dumb. Modern CPUs are fine at running at the highest clock rate but spending time in c3 and lower. So I'll fix powers to do that on these chips.

I'm using an x230 in vesa mode but it works fine if you use the new DRI and xorg code. I do day to day hacking on the lenovo t400, mostly due to the cardbus slot I still use.

The only thing missing is hotplug express card.

So.. It's not perfect. 10.0 will not be laptop great. I expect 10.1 with updated dri2 and xorg along with Intel WiFi fixes and my power management stuff to be great.

There.

Comment Re:routine IT work (Score 1) 307

... it's called fuzzing.

You spend a bit more time writing some randomisation into your clients so they go off and do completely ridiculous stuff. stuff you can't comprehend. That's why it's random (ie, fuzzing.)

again, this isn't new.

And yes, if you write your client simulation object(s) in something not stupid, you can scale it up to 100,000 active user simulation instances on a single server. Computers are fast.

Comment Re:routine IT work (Score 4, Insightful) 307

Why do people keep saying that over and over again?

It's easy. You write a test suite that pretends to be a real user. You script it so there's some actions that aren't just "do A do B do C." You make them make errors. You have them put in garbage details. You have them fill out the forms incorrectly or incompletely. You have them skip pages or press "back".

Then you add a "pretend I'm the internet!" layer in between that simulates latency, so you make sure that your servers can handle the number of concurrent requests going on. A lot of not-so-seasoned web developers still fall for the "it worked on the LAN to 100,000 users, why not on the internet?" latency fallacy. Increased latency (due to RTT, packet drops, TCP retransmits, etc) leads to having more and more sessions going concurrently. That ties up resources at the server end.

Then you add a "pretend shit breaks!" layer. Ie, the user internet connection breaks. They forget and come back after a while, and hit the restart page. The connection dies half way during the transaction.

Then, once you've written that, you create 5 million instances of that. 100,000 per box sounds about right.

This isn't 1995. Computers are really god damned fast.

-adrian

Comment Re:pfSense (Score 1) 193

11n will work on Atheros hardware when they either/or:

* update pfsense to work against FreeBSD-10;
* start releasing snapshots of pfsense that work against FreeBSD-HEAD;
* backport the net80211, driver and userland tools from -HEAD to -8 (which I've done a few times, I've just not committed it to FreeBSD.)

11ac is a different story. I'm going to let the Linux side shake out before I start work on the FreeBSD 802.11ac support.

-adrian
(FreeBSD wireless maintainer.)

Slashdot Top Deals

"Here's something to think about: How come you never see a headline like `Psychic Wins Lottery.'" -- Comedian Jay Leno

Working...