Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
Linux Software

Linux 2.5.2 Kernel Released 234

valdis writes "Amazing.. it's been out over 3 hours and not discussed to death. Well, maybe there's not as many bleeding-edge crazies out there. But if there are, here's what's new. You can get it at the usual place, but please use the mirrors if you can."
This discussion has been archived. No new comments can be posted.

Linux 2.5.2 Kernel Released

Comments Filter:
  • Mirrors (Score:5, Informative)

    by Rentar ( 168939 ) on Tuesday January 15, 2002 @09:02AM (#2841351)
    Apart from the entire 'slashdot is not freshmeat'-discussion I'd like to note, that maybe slashdot should not mention the URL to the kernel archive, but only the URL for the mirrors-list. I'm sure everyone able to compile and use a 2.5.x kernel is able to find the correct download directory, should he be confronted with a mirror list.
  • Re:Cool (Score:5, Informative)

    by Kynde ( 324134 ) <kynde@[ ].fi ['iki' in gap]> on Tuesday January 15, 2002 @09:03AM (#2841355)
    Those of you anxious to contribute by testing I suggest you get acquainted with the following sites:
    Linux Kernel Mailing List FAQ (a must read before submitting bugs or oopses) [tux.org]
    Good site about kernel hacking (not just for newbies either) [kernelnewbies.org]
  • Re:Hardware support (Score:3, Informative)

    by theridersofrohan ( 241712 ) on Tuesday January 15, 2002 @09:18AM (#2841406) Homepage
    I know that this is a troll, but I'll bite: If you want to use Linux, you need to buy Linux-compatible hardware. Just like you wouldn't by a winprinter for a mac or an iPOD for win32 (yet), you shouldn't buy stuff that you know they don't work or work well under linux. This has been pretty well documented.

    Instead of bitching around in message forums with your 24.6k modem connection, why don't you spend the time researching what works under linux and what doesn't. Maybe you would have found that there are card readers for every digital film format (compact flash, smartmedia, memorystick, sd etc) that work under linux.

    Or maybe, if you can afford "the outrageous price" for the HP printer, you can afford a win32 CD and perhaps then _you_ could do something more than "practice networking skills and use the internet! Whopity-friggin doo!". Or even a mac (which are not expensive compared to a PC. definetly not -especially the imacs).

    "I'll do everything within my power, be it donating money to carrying your kids to soccer practice, if you folks will just start writing drivers!"

    How about stop bitching and be thankful to the people that _have_ written the million lines of code (including drivers) that make linux usable and enjoyable for us. Oh and start running windows. I have a feeling you two will get along just fine.
  • New Scheduler (Score:2, Informative)

    by Dios ( 83038 ) on Tuesday January 15, 2002 @09:25AM (#2841432) Homepage
    While I am not certain, I see the entries for Davide Libenzi, Ingo Molnar on scheduler improvements. Ingo published a huge scheduler update that looks promising, might be worth checking it out if you have a system under high load that tends to be come poky/etc.

    I believe there was some discussion of integrating Ingo's patch with the preemptive patch, should be good for everyone.

    A link to his discussion http://kt.zork.net/kernel-traffic/latest.html#4 [zork.net] on Kernel Traffic.
  • Re:New Scheduler (Score:3, Informative)

    by psamuels ( 64397 ) on Tuesday January 15, 2002 @10:10AM (#2841659) Homepage
    Ingo published a huge scheduler update that looks promising, might be worth checking it out if you have a system under high load that tends to become poky/etc.

    Definitely - but you probably won't notice much difference on most machines - his scheduler was intended to address problems particularly with huge systems. A mere 1-CPU or 2-CPU machine isn't going to see the real benefits.

    Which isn't to say the patch is worthless on anything less than 4 CPUs - apparently it beats the old scheduler on all benchmarks. But for most of us, scheduling doesn't take a lot of CPU anyway.

  • by rm-r ( 115254 ) on Tuesday January 15, 2002 @10:13AM (#2841681) Homepage
    Bleeding edge is a play on words of Cuttting edge, basically it means the very newest stuff- unfortunatly so very new that it doesn't work properly and is a pain to use and maintain. Hence bleeding...
  • by clump ( 60191 ) on Tuesday January 15, 2002 @10:14AM (#2841683)
    Yawn.


    So the release of a development kernel is headline news?

    Updates to the stable tree, major improvements, security fixes, and such....well that I can understand.

    This story is significant because this kernel is really the first tangible departure from the 2.4 branch. Initial USB 2, a very improved scheduler, and other improvements a changelog would do a better job than I of documenting.

    Like it or not, these types of changes are significant. Things like schedulers and IO end up being the reason Big Iron companies choose OSes. If Linux is getting there, I personally want to know. If you don't, hey... just move on. ;)
  • by nmarshall ( 33189 ) on Tuesday January 15, 2002 @11:14AM (#2842029) Homepage
    yes, and it's easy too.
    after you configure the kernel, changeing it ONLY
    by adding build as module, from something that was not buildt at all. then do a make modules ; make modules_install
    this will make only the modules. nothing else.
  • Re:O(1) Scheduler? (Score:5, Informative)

    by thing12 ( 45050 ) on Tuesday January 15, 2002 @11:38AM (#2842145) Homepage
    I don't think it's in the kernel, but you can get the 'final' patch here (there's one avaiable for the 2.4 series as well):

    http://people.redhat.com/mingo/O(1)-scheduler/ [redhat.com]

    I must say that after using it for a few days, I'm impressed. It totally changes the characteristics of multiprocess servers like Apache and PostgreSQL under high load. For example, I've run ApacheBench against a mod_perl script that queries a pgsql database, in the new scheduler I get a mean response time that is N*1.05*concurrency with a standard deviation of less than 1% of the mean. In the old scheduler I'd get a mean that is N*1.07*concurrency with a sd of up to 75% of the mean. So in other words you get essentially the same throughput with both schedulers (O(1) appears slightly faster in my limited testing). But what's more important is that in the O(1) scheduler everyone is treated equally - they all get served in 1.05*N*concurrency, no more, no less -- while with the old scheduler some requests get a response that's 1*N and others get a response all the way up to 4*N*concurrency.

    IMHO, it's better to give everyone an equal level of service than to randomly favor one group of users over another.

  • by thing12 ( 45050 ) on Tuesday January 15, 2002 @11:51AM (#2842215) Homepage
    On the contrary, I am seeing significant and real benefits on my 1 and 2 CPU machines, especially under high load, everything just runs smoother, every process gets the % of CPU that it deserves. It's not that scheduling takes up a high % of the cpu time, it's that processes aren't scheduled "perfectly" under the current model.

    But you are absolutely correct in that the scheduler improvements will be more apparent and dramatic on 4 and 8-way machines because of the elimination of the global run queue. Each CPU gets its own run queue and processes will only bounce around when other cpu's are idle. We finally have a scheduler that will work on enterprise class machines.

  • Re:O(1) Scheduler? (Score:3, Informative)

    by anpe ( 217106 ) on Tuesday January 15, 2002 @01:03PM (#2842681)
    I don't think it's in the kernel

    According to the change log [kernel.org] ingo's scheduler changes _are_ integrated.
  • Re:or.. (Score:2, Informative)

    by psamuels ( 64397 ) on Tuesday January 15, 2002 @03:39PM (#2844019) Homepage
    Should Linux really support a card that's that old?

    Drivers are pretty self-contained. The only problem with supporting old hardware is that when you change an API you need to edit all the old driver files. But if you happen to forget one, and it quits working, life goes on - until a user who has the proper hardware complains, at which time the driver is updated.

    The model works quite well.

    Now occasionally a single driver will keep getting extended until it supports a wide range of similar hardware, and at some point, the developers split it into an "old hw" driver and a "new hw" driver, possibly with some overlap. This happened a long time ago with the NCR 53c8xx driver, and more recently with the Tulip driver.

    Perhaps a second mainstream branch should be started, linux-deprecated or something.

    It's called "Linux-2.2" or "Linux-2.0". Both are still being maintained, by Alan Cox and David Weinehall respectively.

  • Re:or.. (Score:2, Informative)

    by SmittyTheBold ( 14066 ) <[deth_bunny] [at] [yahoo.com]> on Tuesday January 15, 2002 @04:15PM (#2844298) Homepage Journal
    It's called "Linux-2.2" or "Linux-2.0". Both are still being maintained, by Alan Cox and David Weinehall respectively.

    ...but 2.4 still includes support for all that legacy stuff.
  • Re:or.. (Score:2, Informative)

    by psamuels ( 64397 ) on Tuesday January 15, 2002 @08:53PM (#2846076) Homepage
    ...but 2.4 still includes support for all that legacy stuff.

    Not quite all. Some drivers fall into disrepair and a few no longer even compile - because apparently nobody still has the hardware or cares.

    A good example is the xd driver. It's for a PC-XT hard disk controller - that is, pre-IDE/ATA. Someone reported that it no longer worked (I think in the early 2.3 days, could be wrong) and I remember Linus saying "If you haven't upgraded your hardware in 10 years, why are you upgrading your kernel?" The retort was "Because retrocomputing is fun." Someone actually offered to donate an old xd interface card to any developer who would promise to continue to maintain the driver.

    I have no idea if anyone took him up on it.

"Engineering without management is art." -- Jeff Johnson

Working...