Slashdot Mirror


Linux Kernel 2.6.24 Released

LinuxFan writes "Linus Torvalds has released the 2.6.24 Linux Kernel, noting that he and most of the other key Linux developers will be flying to a conference in Australia for the next week. As the whole team will be down under while the kernel is being tested by the masses, Linus added, "Let's hope it's a good one". What's new in the latest release includes an optimized CFQ scheduler, numerous new wireless drivers, tickless kernel support for the x86-64 and PPC architectures, and much more. Time to download and start compiling."

10 of 108 comments (clear)

  1. Wow. Lots of stuff. by MostAwesomeDude · · Score: 5, Interesting

    On one hand, things like the VM dirty writeback adjustments and default cpufreq frequency governors, as well as dynticks for more arches, are big performance improvements. On the other hand, they broke wireless packet injection patches for a lot of drivers... At any rate, I'll have to try this just to see if it really performs better. Things like laptop_mode which rely on optimized scheduling and writeback code should see improvements.

    --
    ~ C.
  2. Re:Merge Window? by iMaple · · Score: 5, Funny

    There is a chance that some stupid airline CEO decided that their planes use The Evil Darklord's software for navigation. Of course we all know that noone would NEVER code a special condition in the software which says

    if(passenger_list.contains(entire_linux_kernel_team){
          flyinto(mount_everest);
          output_evil_voice("muhahahhaa");
    }

    On the other hand, there is nothing to worry about. This feature probably was shelved and is definitely going to be in the *next* version of the OS.

  3. Yeah tick less is fine stuff by emj · · Score: 4, Informative

    Reducing wakups on laptops is very interesting suff, I've seen some post on how muche better the NO_HZ is making things, e.g. Ross went from 164w/s to 5w/s just waking up 5 times per second makes the CPU pretty cool...

  4. Re:tickless kernel support? by MostAwesomeDude · · Score: 5, Informative

    Can anyone explain to me what "tickless kernel support" is? Sure. Basically, instead of having a regular tick in the kernel every handful of cycles to process interrupts and timers, processes are given long, dynamic timers with arbitrary lengths, which means that if an app wants to sleep for a relatively long period, it gets to sleep and not wake up the CPU, so the CPU sleeps longer and a lot of power is saved.
    --
    ~ C.
  5. I am really grateful for this release by eclectro · · Score: 5, Funny

    The weekend is almost here, and I am looking for something to do. I want to argue about the scheduler.

    --
    Take the cheese to sickbay, the doctor should see it as soon as possible - B'Elanna Torres, "Learning Curve"
    1. Re:I am really grateful for this release by ajs318 · · Score: 4, Interesting

      Let us also digress into a micro-kernel vs monolith-kernel discussion.
      Oh, that's an easy one. With a microkernel, you put up fences where they look pretty. With a monolithic kernel and loadable modules, you put up fences where as little stuff as possible has to traverse them. Ting! Next, please.
      --
      Je fume. Tu fumes. Nous fûmes!
  6. Anti-Fragmentation? by kripkenstein · · Score: 4, Insightful
    The updates most interesting to me are the anti-fragmentation patches,

    Tests show that about 60-70% of physical memory can be allocated on a desktop after a few days uptime. In benchmarks and stress tests, it has been found that 80% of memory is available as contiguous blocks at the end of the test. To compare, a standard kernel was getting ~1% of memory as large pages on a desktop and about 8-12% of memory as large pages at the end of stress tests.
    Perhaps someone can clarify exactly what this means? Reading the beginning, it talked about 4K pages, device drivers, and such, so I assumed it would just be relevant to the internal workings of the kernel. However, the quote I pasted above seems to indicate it might impact desktop performance as well.

    I commonly see on my desktop, after several days uptime, that quite a lot of memory is being used (and I know how to ignore cache/buffers, as well as swapcache - that isn't the issue). Logging out and logging back in returns memory to reasonable levels (and the system becomes more responsive, but then I guess if I bought more memory I could accomplish that as well). Now, I've generally read that the problem was indeed memory fragmentation, e.g. here, but this would be internal fragmentation inside an app, and thus not relevant to the kernel, I believe? If someone can explain this issue I'd be grateful.
    1. Re:Anti-Fragmentation? by Anonymous Coward · · Score: 4, Informative

      He's talking about how the memory blocks allocated to user programs are actually laid out in physical memory. Think of it like this: if we have programs A, B, C, and D using memory (and F for free), before the physical memory may have been allocated something like this:
      AAFBBFABCFCDBACDDBAF (not contiguous)

      And now more like this:
      AABBBAFFFCCCCDDFFFFF (free memory is in large contiguous chunks)

      This is not something that userspace programs will notice directly, but it does affect performance of the machine. Keeping free space and other areas contiguous allows for better caching performance and faster access.

  7. Re:Merge Window? by Anonymous Coward · · Score: 4, Funny

    DId you seriously just manage to screw up correcting someone else?

  8. Re:Catching up to Windows on power by ThePhilips · · Score: 5, Interesting

    It is sad reality the people keep mixing up technology and products.

    Linux (as kernel and piece of technology) is far ahead of most OSs in power management and especially in power saving.

    But. Take fresh Windows XP installation - it would give you decent up-time from single battery charge. Take Mac OS X - it would give you excellent up-time from single battery charge. Now take Linux's distro with X.Org/GNOME/KDE/etc - and it would eat any battery in under two hours.

    It is possible to optimize Linux to be extremely power efficient, yet lion share of applications written for PCs simply fail on portables.

    From recent example. I'm reading lots of PDF ebooks - under Mac OS. Trick is to scroll document to the end and then go back to place were you stopped: Mac OS would cache the file and hard drive will not wake up for the whole time you read thru the PDF. Linux? - Ubuntu/Kubuntu/SUSE/YellowDog were tried - hard drive is always spinning. Always. Non-stop. I stopped even trying to investigate what keeps it spinning - just went back to Mac OS. Because battery lasts under Linux for about 2 hours - while Mac OS on the aging iBook easily does 6 hours. But honestly, even if battery charge set aside, the noise produced by constantly spinning hard drive me slowly crazy.

    Conclusion: excellent power management of kernel != end-user application are designed with power efficiency in mind.

    P.S. Most common offenders are X.Org with its ~/.xsession-errors (as if end-users cared about all the cruft in there - developers simply do not look there at all) and syslogd which periodically (by default every 20 minutes) write marker into logs.

    --
    All hope abandon ye who enter here.