Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Linux 2.6.17 Released 444

diegocgteleline.es writes "After almost three months, Linux 2.6.17 has been released. The changes include support for Sun Niagara CPUs, a new I/O mechanism called 'splice' which can improve the performance greatly for some applications, a scheduler domain optimized for multicore machines, driver for the widely used broadcom 43xx wifi chip (Apple's Airport Extreme and such), iptables support for the H.323 protocol, CCID2 support for DCCP, softmac layer for the wireless stack, block queue IO tracing, and many other changes listed at the changelog"
This discussion has been archived. No new comments can be posted.

Linux 2.6.17 Released

Comments Filter:
  • Really helped (Score:4, Interesting)

    by drsmack1 ( 698392 ) * on Sunday June 18, 2006 @11:54PM (#15559927)
    I have this now installed in my dual core AMD and the difference is noticable. X is noticable faster, as is my video editing stuff. Good work guys!
  • by SynapseLapse ( 644398 ) on Monday June 19, 2006 @12:06AM (#15559953)
    I'm still pretty new to the Linux scene (So far I've done a FreeBSD, Ubuntu and Fedora Core 4 installation.), but I do have a question.
    Why are the network drivers part of the kernel? It seems like this would make it more difficult to adopt newer hardware types. Also, since most computers have 1-2 NICs at the most, wouldn't that clog up the kernel with tons of drivers for hardware you'll never use?
  • by caseih ( 160668 ) on Monday June 19, 2006 @12:35AM (#15560020)
    Even under windows drivers load into the kernel and normally become part of the kernel proper. Things under linux are similar, but differ from Windows in very important ways. First of all, the overriding philosophy behind the linux kernel is the GPL (well a modified version of the GPLv2) license for the source code. This states that the source code for the kernel and parts of the kernel should always be available. Also, for philosophical reasons associated with the licensing issue, Linus has said that he does not care as much about a binary stable driver API (ABI) in the kernel. Since the source code to the kernel is always available, if you want decent drivers, they should be placed in the kernel source code tree, since drivers really ought to be free and open. Unfortunately this means that a binary kernel driver from one version of the kernel may not work on another. This is done partially to encourage open source drivers and partially to prevent the kernel developers from being tied to design decisions that later prove unwise. But this does pose a problem for folks that want to implement their own third-party drivers in a propriety fashion. NVidia writes a special open source driver that implements a special, stable ABI that it's proprietary, closed-source video driver talks to to overcome this.

    Many have argued that Linus needs to stablize the kernel driver ABI. But on the other hand, by not doing so and encouraging drivers to be open source and in the kernel source tree brings us a large amount of stability that Windows just cannot achieve. Most windows stability problems are not caused by the kernel, which is as stable as Linux, but by third-party device drivers. Anyway it is a trade-off, and one that is hotly contested. Personally, everything I currently use has open source drivers that come with my kernel bundle (Fedora Core). They are loaded on demand, so they don't cause memory bloat. If I was to compile my own kernel, I could choose not to build many of the drivers, reducing the disk bloat too.

    One of the biggest things for me in this kernel release is the Broadcom wireless driver. Kudos to the team that clean-room reverse engineered the driver.
  • Re:Go Linux! (Score:3, Interesting)

    by Umbral Blot ( 737704 ) on Monday June 19, 2006 @12:46AM (#15560052) Homepage
    No you can't, although that fact had slipped my mind. How sad for C. The real question here then is: why isn't there a better language than C for creating OSs in? A real macro system and overloading would probably be nice for kernel dev.s everywhere.
  • by rodac ( 580415 ) on Monday June 19, 2006 @12:47AM (#15560056) Homepage
    1, there exists no protocol called h.323 There exists a h.323 standard that references protocols such as h.225 h.245 etc. but there is no h.323 protocol.

    2, even more unlikely for h.323 support is that since all the important parts of h.323 such as h.225 and h.245 are all ASN.1 PER encoded.
    Are they going to add a decoder for aligned-PER inside the kernel? yeah likely.

    Whatever thay have added it is not support for h.323. Maybe they have added support for RTP?
  • Missing driver? (Score:1, Interesting)

    by Anonymous Coward on Monday June 19, 2006 @12:51AM (#15560063)
    I downloaded this kernel earlier in the day, and after having gone through the apparent changes, it seems like I cannot find the driver for my webcam. This webcam uses the ov511 driver - does anyone know if it was moved somewhere? In 2.6.16 (.11 is the last patch I have) it was in Device Drivers -> USB support -> USB OV511 Camera support. I'm reluctant to upgrade if this driver isn't in there - anyone have any idea where it might have gone?
  • Re:Go Linux! (Score:3, Interesting)

    by ip_fired ( 730445 ) on Monday June 19, 2006 @01:00AM (#15560085) Homepage
    Because C is fast, and there is so much already written in C, that it would be a pain to move over. There are a lot of hacks in the linux kernel (they actually use GOTO statements! *gasp*). I can tell you it was a real eye-opener for me when I started looking at things there. I'm sure the reason nobody has moved over to a better language though is because of the massive amounts of work that would have to be redone.
  • module shotguns (Score:1, Interesting)

    by SuperBanana ( 662181 ) on Monday June 19, 2006 @01:00AM (#15560088)
    Modules... Only the modules (read: 'drivers') that are needed are loaded.

    Many a linux distribution I've used (most noticeably Debian) applies the "shotgun" approach to module-loading because the hardware detection and hotplug methods are so convoluted and undependable. Kind of defeats the purpose of loadable modules if the distribution simply loads everything under the sun to see what sticks.

    Worse, many modules aren't smart enough to determine "hey, I'm a driver for [some non-removable component]. If I can't find my hardware, maybe I should print an error to ksyslogd and unload myself."

  • Quota BUG() fixed? (Score:1, Interesting)

    by Anonymous Coward on Monday June 19, 2006 @01:02AM (#15560090)
    It seems you can crash the box by hitting a race condition in the quota code. You get a "kernel bug in dquot.c" and the machine goes down - hard. One of the changelog entries seems to address this. The question is: will this get backported into the distro kernels? Red Hat, help!
  • by drsmithy ( 35869 ) <drsmithy@nOSPAm.gmail.com> on Monday June 19, 2006 @01:03AM (#15560093)
    Many have argued that Linus needs to stablize the kernel driver ABI. But on the other hand, by not doing so and encouraging drivers to be open source and in the kernel source tree brings us a large amount of stability that Windows just cannot achieve.

    It's worth pointing out that pretty much every remotely mainstream OS *except* Linux manages to work (and work well) with a stable kernel ABI. Including ones considered at least - if not more - stable than Linux, even by Linux zealots, like FreeBSD and Solaris.

  • by Animats ( 122034 ) on Monday June 19, 2006 @01:17AM (#15560139) Homepage

    The "splice" system call seems to be an answer to one of Microsoft's bad ideas - serving web pages from the kernel. At one point, Microsoft was claiming that an "enterprise operating system" had to be able to do that. So now Linux has a comparable "zero copy" facility.

    "Zero copy" tends to be overrated. It makes some benchmarks look good, but it's only useful if your system is mostly doing very dumb I/O bound stuff. In environments where web pages have to be ground through some engine like PHP before they go out, it won't help much.

    The usual effect of adding "zero copy" to something is that the performance goes up a little, the complexity goes up a lot, and the number of crashes increases.

  • Re:Really helped (Score:1, Interesting)

    by Anonymous Coward on Monday June 19, 2006 @01:18AM (#15560142)
    Do you have dual graphics cards in SLI ? Does it place both cards in the correct
    root PCI bridge when you do a 'lspci -t' ?
  • by Anonymous Coward on Monday June 19, 2006 @01:59AM (#15560235)
    The freedome doesn't ceom from "LInux does whatever you want", the freedom part comes from "You can do whatever you want". The source is yours to play with, lots of people have their own kernel branches and patchsets, and do things a little differently.

    A comparison might be, "It doesn't matter if a law is made for the right reasons, it's still made because at the end the laws are made by the House and Senate." Except Congress isn't elected, and anybody can be on it, Linus is the president for life and he also does whatever he wants.
  • by tomstdenis ( 446163 ) <tomstdenis@gma[ ]com ['il.' in gap]> on Monday June 19, 2006 @02:16AM (#15560266) Homepage
    You listed I/O schedulers. I think the multi-core bit talks about a PROCESS scheduler. Two different things. Linux already has specific support for Intel's HTT bullshit and understands NUMA. Understanding multi-core is a good move up.

    If you have a 2P dual-core setup the best performance for two independent tasks would be spread to both chips. Specially in the AMD camp. That means each task gets a full memory bus to themselves. The trick is to pick up when two tasks have shared memory between each other and schedule that for one chip. Specially on the Intel side of things with their massive shared L2 cache.

    Tom
  • by Rizzer ( 122184 ) on Monday June 19, 2006 @02:21AM (#15560279)
    I think they've added the driver to support the IR infrared port on IBM (Lenovo) thinkpads, at last!
  • Re:Where is 2.7? (Score:5, Interesting)

    by 10Ghz ( 453478 ) on Monday June 19, 2006 @03:00AM (#15560356)
    This was a major boon for Linux


    Or bane. The "old way" meant that the vanilla-kernel (kernel offered by kernel.org) was stable. But new features took a LONG time to appear in the vanilla-kernel. But users and distros still wanted those advanced features that were not part of the kernel (yet). What happened was that distros offered their own vendor-kernels, that were VERY different from vanilla-kernel. Distros then spent their time and energy fixing their own vendor-kernels, instead of vanilla-kernel.

    This new system changes things so that new features are added to the vanilla-kernel, which means that the difference between vanilla and vendor-kernels is not that big. The distributors can focus on stabilizing the kernel, instead of adding new features to it. And porting those fixes to vanilla is a lot easier than porting changes in the old system. This means that if you want to use REALLY stable kernel, you should use the vendor-kernel.

    In short: this new system means that things progress a lot faster for everyone, with new features appearing in the kernel. And we can still have the stability we want if we use the tested and patched vendor-kernels.
  • by rodac ( 580415 ) on Monday June 19, 2006 @04:32AM (#15560503) Homepage
    Bloody hell!

    They managed to squeeze both PER and also H225/235/245 into just 20kbyte of object code?!
    (why implement h235? thats crypto and wouldnt work unless you know the keys?)
    That is VERY impressive.

    My PER decoder alone ( http://anonsvn.wireshark.org/wireshark/trunk/epan/ dissectors/packet-per.c [wireshark.org] ) is way larger than that, and that is just aligned PER decoding (ok with some unaligned PER additions recently) and that one itself is >>20kbyte. Adding 225/245 into the mix. Impossible!


    I am very impressed. Very impressed.
  • Re:linux (Score:3, Interesting)

    by moro_666 ( 414422 ) <kulminaator@gmai ... Nom minus author> on Monday June 19, 2006 @05:44AM (#15560607) Homepage
    Will ubuntu have it soon ?

    They have included much of the stuff into their version of 2.6.15.23,
    but ofcourse that doesn't have everything. The broadcom driver that came
    with ubuntu(same sources, maybe earlier version) has somesort of issues
    with my BCM4318 :( , so it just doesn't work, people claim it has something
    to do with soft interrupt stuff.

    ps. broadcom, next time make interrupts stiff.
  • by devlp0 ( 897273 ) on Monday June 19, 2006 @06:01AM (#15560625) Journal
    Looks a good laptop. The only trouble I have ever had with laptops/Linux are: 1) internal modem doasnt work (M$ modems - who cares anyway) 2) might need to disable apic at boot time (will be obvious - machine just wont boot. Add "noapic" to you kernel boot parameters if this is the case) Nvidia drivers can be downloaded from their web site - not open source though :(
  • DCCP (Score:3, Interesting)

    by caluml ( 551744 ) <slashdot@spamgoe ... minus herbivore> on Monday June 19, 2006 @06:53AM (#15560684) Homepage
    DCCP - a kind of UDPv2
    Any applications out there using it yet?
  • by Marc Tanner ( 946945 ) on Monday June 19, 2006 @07:10AM (#15560712) Homepage Journal
    Does somebody know for what purposes the klibc which is now in -mm will be used for? I guess this implementation will only provide a subset of the features found in uclibc, but i am not sure about that. Will it even be possible to link userspace programs against it?

    I am a little confused right now, have to read up on it.
  • by cab15625 ( 710956 ) on Monday June 19, 2006 @07:39AM (#15560760)
    Wow, looks like a sweet machine.

    My advice, if you really want to be sure, take the time to go through the hardware specs and check the kernel source for drivers for each thing you definitely want to have running (be careful of versions)

    You could also check out the linux on laptops site [linux-laptop.net]

    Finally, I've noticed that the biggest problems for me in the past have always come in with ACPI support. This is where the most noticable improvements(*) in the kernel have come for me lately. You might want to check out the ACPI4Linux [sourceforge.net] site to see if there's anything special that's been discovered about your system yet.

    * It's actually not a problem with Linux, it's a problem with the way some OEMs do ACPI using tools from M$ that the kernel guys have been doing a better and better job of working around. Who needs standards when you think you pwn the world.
  • S-ATA hotplug (Score:3, Interesting)

    by Dolda2000 ( 759023 ) <fredrik@dolda200 0 . c om> on Monday June 19, 2006 @07:57AM (#15560788) Homepage
    Looking through the ChangeLog, I still see no S-ATA hotplug. I've been waiting more or less since the day S-ATA support was introduced in Linux to be able to add new drives without rebooting, and I just cannot understand how such a thing can take so long. I mean, I'm sure that the kernel developers have priorities and stuff, but I would think that adding S-ATA hotplug ought to be simple and important enough not to take more than a year to even get started...? I don't mean it as a complaint, I just find it really weird. Is it just much harder than I think, or is there no particular reason for it not having been done?
  • by DamnStupidElf ( 649844 ) <Fingolfin@linuxmail.org> on Monday June 19, 2006 @03:04PM (#15563372)
    It's worth pointing out that pretty much every remotely mainstream OS *except* Linux manages to work (and work well) with a stable kernel ABI. Including ones considered at least - if not more - stable than Linux, even by Linux zealots, like FreeBSD and Solaris.

    This is why OpenBSD is having more success than Linux in getting specs from vendors, right? Because they just let BLOBs run in the kernel? Oh, wait...

    The only secure way to run binary drivers is to run them in usermode with ACLs on each hardware port and memory region they use, with safe wrappers around DMA. In fact, it's probably not even safe to trust binary drivers in this case. What if the hardware doesn't respect your computer and decides to snoop the bus on its own? It can leak information back to the driver through side channels, or worse act as a backdoor. Suppose your wireless chipset maker gets a visit from a TLA who wants immediate access to any wireless system. The driver is the place to do that, since it runs in kernel mode. Makes you wonder about all those "closed source wireless drivers are the *only way* to satisfy the FCC!" arguments.

2.4 statute miles of surgical tubing at Yale U. = 1 I.V.League

Working...