Slashdot Mirror


Robert Love, Preemptible Kernel Maintainer Interviewed

Tom F writes: "LinuxDevices did an interesting interview with Robert Love, the maintainer of the Linux preemptible kernel along with MontaVista. It is an exciting read and has Robert's usual wit and insight."

61 of 183 comments (clear)

  1. Re:Why do we need so many different kernels? by Cyph · · Score: 3, Informative

    I do believe that what Love is working on is in fact a patch, and not a fork.

  2. Preemptive kernel looks good by Marx_Mrvelous · · Score: 2, Interesting

    His comments on the preemptive kernel patch make me want to try it out. It seems like a great idea, and from what he says, it's well-implemented.

    On a side note, he's my kind of geek. At least started with Slackware, kernel hakcs and even has a girlfriend. Wow!

    --

    Moderation: Put your hand inside the puppet head!
    1. Re:Preemptive kernel looks good by Toraz+Chryx · · Score: 2, Interesting

      *cough*AmigaOS*cough*

      preemptive multitasking since 1985 :)

    2. Re:Preemptive kernel looks good by Lozzer · · Score: 4, Informative

      I think you'll find that Linux has premptive multitasking too. What it can't do (without the preempt patch) is prempt a task that is currently running kernel code (e.g. through a syscall). I've no idea whether the Amiga's "kernel" (exec?) was preemptible in this sense or not.

      --
      Special Relativity: The person in the other queue thinks yours is moving faster.
  3. Impressive. by VA+Porware · · Score: 2, Insightful
    Anywhere from a couple hours a week to many hours a day.

    Where do these college students get all this time to hack on the kernel? Don't they have to study at all?

    1. Re:Impressive. by mattbelcher · · Score: 2, Interesting

      He goes to the University of Florida. As a recent grad (last May) with a degree in CS and Math (the same as what he's working on) I can tell you, if you need the time, its easy to find. I was busy, but only because I pushed myself - taking many more classes than I needed to. Hell, if you are intelligent and willing to accept C's, you probably don't even need to go to class or finish half the assignments.

      As an aside, I'd love to see how he breezes through COP4600 (Operating Systems). Adding symbolic linking to Minix would be cake after the work he's done.

      --

      Shockwave Flash movies are the greatest thing to happen to non-sequitur humor since Japan.

    2. Re:Impressive. by John+Whitley · · Score: 4, Insightful
      Don't they have to study at all?

      What in the heck do you think this IS? Many of the best students treat developing their coding and CS skills more like a musician or artist practicing and performing for many hours a day. It's a creative act, and can be very involving. Moreover, that level of involvement hones problem solving and practival skills that the "just a job" students can never hope to achieve.

      I always wondered about students who didn't have any passion for the field. From what I've seen in both academia and industry, that "just a job" mentality reduces one's skills to "programming fodder", and would seem to be a pretty unenjoyable career.

    3. Re:Impressive. by soulsteal · · Score: 3, Funny

      Studying comes after Kernel Hacking and right before Binge Drinking. If we're not lucky, then the Kernel Hacking would come after or during the Binge Drinking

    4. Re:Impressive. by arkanes · · Score: 2

      Wouldn't any reasonable educational facility let him test out of classes like that? I mean, jeez, it's not like he doesn't know his stuff.

    5. Re:Impressive. by arkanes · · Score: 2

      It just occured to me that, if he's unlucky, he'll get one of those proffs that likes to test you on specific bits of obscure trivia rather than on concepts and ideas, in which case he'd have to cram even if he were every kernel maintainer wrapped into one :P

    6. Re:Impressive. by Mr_Matt · · Score: 2

      Wouldn't any reasonable educational facility let him test out of classes like that? I mean, jeez, it's not like he doesn't know his stuff.

      What, and not get tuition for the semester's worth of classes the student's tested out of? Surely you jest. :) And besides, even if one is so competent that they can already take the class, that doesn't necessarily mean they won't learn anything from taking the class again - provided they take the class with the right attitude. Besides, it's an easy "A", right? :)

      --


      But what does my opinion matter, I just vote here. It's not like I have any money or anything.
  4. Re:Why do we need so many different kernels? by Nothinman · · Score: 2, Informative

    Love doesn't maintain a complete seperate kernel tree, just a patch that applies to the main Linus tree.

  5. low-latency patch by S.+Allen · · Score: 2, Interesting

    I'd also like to see an interview with the author of the low-latency patch as well as a comparison of the two. Bits I've read from Kernel Traffic give me the impression that people think the low-latency patch generally provides better responsiveness and scalability.

    1. Re:low-latency patch by steveha · · Score: 5, Interesting

      I have been following these two patches a bit, because I want my desktop to be as snappy and responsive as possible.

      The current low-latency patches work by finding "hot spots" in the kernel code where something is taking a long time, and then putting in a hack to make the code yield. The good part is that you can get a really low-latency kernel; the bad part is that you have to touch the kernel code in hundreds of places, and the kernel code gets really ugly. I remember reading that Ingo Molnar, who wrote a giant low-latency patch that worked this way, agreed with Linus that his low-latency patch was just too ugly and huge and should not be included in the main source tree.

      The preemption patch is comparatively small and elegant. It leverages the work that has already been done to make SMP work correctly. I'm using it on my Linux desktops, and I like it.

      On one of the mailing lists, Linus said that he wants the Linux kernel to gain low latency the cleanest way: find all parts that are slow, and instead of hacking them to yield, re-write them so they are faster (but still clean code that is easy to understand). This is of course the ideal, but when will it be finished? The preemption patch is available now, and works now, and I am using it now.

      steveha

      --
      lf(1): it's like ls(1) but sorts filenames by extension, tersely
    2. Re:low-latency patch by Catiline · · Score: 2

      On one of the mailing lists, Linus said that he wants the Linux kernel to gain low latency the cleanest way: find all parts that are slow, and instead of hacking them to yield, re-write them so they are faster (but still clean code that is easy to understand). This is of course the ideal, but when will it be finished?

      Well, I'm just going to hazard a wild guess here, but maybe that sort of change would only occur when all of the different areas' (primary) developers were interested in it.

    3. Re:low-latency patch by pthisis · · Score: 2, Flamebait

      The preemption patch is available now, and works now, and I am using it now.

      The problems with the preempt patch are several:

      1. It makes kernel debugging considerably harder
      2. It introduces potential livelocks which could hang the system (this is an inherent part of the design and not an implementation bug)
      3. It doesn't work with SMP (yet), this is fixable
      4. It doesn't improve the worst-case latency.

      #4 means it isn't a viable alternative to low-latency style patches; Love has said as much on linux-kernel, though obviously he feels it's a nice complement. 1 is a large hill to climb on its own, and 2 basically dooms it unless a clean solution can be found (most proposed solutions involve some sort of priority inheritance, which is a rat's nest).

      In other words, the patch "works" only in a very limited sense; it doesn't decrease worst-case latency, can potentially hang the system, and doesn't interact well with SMP. It does decrease average-case latency.

      The preemption patch is comparatively small and elegant.

      Uh, that's in the eye of the beholder I guess. It is small, but it's not really elegant; it essentially causes conditional reschedules to happen all over the place, and by design cannot deal with latency in noninterruptable interrupt contexts--which happen to be exactly where the worst-case latencies are. So preempt as it's currently designed simply cannot address the worst-case latency. And it causes far more runtime conditional reschedules than the LL patches.

      The low-latency patch decreases both worst and average-case latencies. It also doesn't have livelocks as an inherent part of its design. And average-case latencies with LL are as good as those with LL+preempt (in other words, preempt gains you nothing over LL). LL, unfortunately, touches a lot of code and has conditional schedules sprinkled all over the place--it's not elegant either, and certainly not small. But unlike preempt, it actually decreases the worst-case latency, which is what's important to the soft realtime applications that gave birth to both patches. There's a mini-LL patch as well which has far fewer conditional rescheds, that's being discussed for potential inclusion in 2.4.x and/or 2.5.x

      My gut feeling is that preempt is the wrong approach to the latency problem, but the jury is still out on it. I don't think either the current preempt or the current LL are ready to go in the kernel. If you're doing e.g sound mixing or other latency-sensitive work right now, the full LL patches seem like the best alternative available. They get latencies down extremely low, well below those of e.g. BeOS.

      Sumner

      --
      rage, rage against the dying of the light
    4. Re:low-latency patch by pthisis · · Score: 2

      Those that *need* LL for soft-realtime and those that *want* a LL-like environment so they have click a button more timely.

      Well, I think that some sort of soft realtime is wanted pretty widely, if only to stop music and movies from skipping. LL does that fairly well, O(1) doesn't. But O(1) is definitely a win, modulo a few nits, and it's already been integrated into 2.5.x--with some work on those nits courtesy of Davide Libenzi.

      So, I think O(1) is good but it's not a replacement for LL or another worst-case latency reducer, even among people who don't know what "soft realtime" means. They still don't want their mp3s to skip.

      Sumner

      --
      rage, rage against the dying of the light
    5. Re:low-latency patch by be-fan · · Score: 2

      1. It makes kernel debugging considerably harder
      >>>>>>>
      Then don't compile it in while you're debugging. Most *users* don't debug their kernels.

      2. It introduces potential livelocks which could hang the system (this is an inherent part of the design and not an implementation bug)
      >>>>>>>>
      True, but the SMP support introduced these to begin with. The preemptive patches just bring that danger to UP machines.

      3. It doesn't work with SMP (yet), this is fixable
      >>>>>>>>>>
      Already been done. As of around 2.4.10, it experimental, but working.

      4. It doesn't improve the worst-case latency.
      >>>>>>>>>>>
      It's not designed to. Love has already started work on a lock-breaking patch to get rid of long-held locks.

      --
      A deep unwavering belief is a sure sign you're missing something...
    6. Re:low-latency patch by steveha · · Score: 2

      It makes kernel debugging considerably harder

      But only if you actually compile it in to the kernel, right? Including the patches, which are not enabled unless you choose the option while configuring the kernel, wouldn't mess up kernel debugging, would it?

      It is small, but it's not really elegant

      I am not a kernel hacker, and I was not commenting on the code; I feel that the idea of leveraging the SMP locks is elegant.

      I am one of the large pool of people who don't need realtime features, but do not want our movies or music playback to stutter when the system gets busy. The preemption patch seems to be doing that for me, but I might be interested in the full low latency patch.

      Could you explain what "live locks" are, please? I'm not familiar with the term.

      steveha

      --
      lf(1): it's like ls(1) but sorts filenames by extension, tersely
    7. Re:low-latency patch by pthisis · · Score: 3, Informative
      Then don't compile it in while you're debugging. Most *users* don't debug their kernels.

      If a user gets an oops and submits a bug report to linux-kernel while running preempt, the bug report is a lot harder to decipher.

      True, but the SMP support introduced these to begin with. The preemptive patches just bring that danger to UP machines.

      Not true. preempt introduces new hangs. Read the threads on linux-kernel, especially "Re: [2.4.17/18pre] VM and swap - it's really unusable".

      Some things that are broken by preempt:
      * Network drivers which disable IRQs to avoid spinlocking on uniprocs (major performance win)
      * Drivers which use per-CPU data to avoid spinlocking at all
      * Drivers which disable individual interrupts for long periods of time
      * Drivers which depend on consecutive lines of code executing near each other in time, especially serial drivers

      That thread has details on all of these.

      And there's the priority inversion scenario:
      SCHED_OTHER process 1 acquires a semaphore in kernel mode
      SCHED_FIFO realtime process needs the semaphore, blocks on it

      Now the rt process is stuck pending progress from the SCHED_OTHER process. Without preemption, the SCHED_OTHER process would have done whatever required the semaphore and released it. Now, SCHED_OTHER process 2, 3, ... n may be scheduled, leaving the realtime process twisting in the wind until the system eventually gets around to rescheduling process 1. If process 1 is e.g. SETIatHome or another nice 19 CPU hog, and process 2 is mozilla, you can get huge latencies on the realtime process, way bigger than without preempt. And even without SCHED_OTHER you run into the same problem, it's just not quite as easy to illustrate.

      [Note that I said semaphore, not spinlock, so the lock-break code won't help.]

      Do you not remember all the problems with priority inversion and the SCHED_IDLE patches? This is exactly the same problem, it's not like it's something new and mysterious that people are making up as FUD to stop preempt from getting in to the kernel. Any introductory OS textbook discusses it, and priority inheritance is the only robust way to eliminate it--with all the problems that come along with priority inheritance.

      4. It doesn't improve the worst-case latency.
      >>>>>>>>>>>
      It's not designed to. Love has already started work on a lock-breaking patch to get rid of long-held locks

      It won't help. The fundamental problem is that preempt in interrupts is impossible with this scheme (and AFAIK nobody has proposed a scheme that could even theoretically work), and the worst-case latencies are in interrupts. The secondary problem is that a lot of these issues are highly hardware sensitive; different hardware has different timing requirements, and the only way to find them all is to audit every driver and deal with it appropriately (as, e.g., the LL patches do).

      As Alan Cox wrote,
      The pre-emption patch doesn't change the average latencies. Go run some real benchmarks. Its lost in the noise after the low latency patch. A single inw from some I/O cards can cost as much as the latency target we hit.

      Its not a case of the 90% of the result with 10% of the work, the pre-empt patch is firmly in the all pain no gain camp


      Sumner
      --
      rage, rage against the dying of the light
    8. Re:low-latency patch by pthisis · · Score: 2

      Including the patches, which are not enabled unless you choose the option while configuring the kernel, wouldn't mess up kernel debugging, would it?

      But if a user has preempt enabled and submits a bug report, that bug report becomes very difficult for kernel developers to decipher. Not to mention that hard-to-reproduce bugs may show up under preempt, then you have to build a non-preempt kernel and try for a potentially long time to reproduce the error.

      I am not a kernel hacker, and I was not commenting on the code; I feel that the idea of leveraging the SMP locks is elegant.

      It would be, if the locking requirements for SMP were sufficient to deal with the locking requirements for preempt. But they're not, these are really two different beasts--see my other message under this topic for a laundry list of reasons and linux-kernel topic to read.

      Could you explain what "live locks" are, please? I'm not familiar with the term.

      Definition of livelock

      Sumner

      --
      rage, rage against the dying of the light
    9. Re:low-latency patch by steveha · · Score: 2

      Thank you very much for the info. I have downloaded the low latency patches for 2.4.17, and I'll give them a try. Since I am not maintaining either the LL patches or the preempt patches, I don't actually care which one is smaller or more "elegant", I just want my low latency.

      Thanks again and see you around.

      steveha

      --
      lf(1): it's like ls(1) but sorts filenames by extension, tersely
  6. True geek by gorillasoft · · Score: 5, Funny

    Like all true geeks, Love doesn't forget to include in his comments that, despite being a computer nerd, he does, in fact, have a girlfriend.

    RL: Approximately how much time per week do you spend working on your kernel patch for Linux?

    Love: My girlfriend would probably say too much. Anywhere from a couple hours a week to many hours a day.

  7. At the moment, yes by Astral+Traveller · · Score: 2, Interesting

    Right now it's just a patch. But Linus has made it clear that he is unwilling (for whatever foolish reasons) to accept Love's patches. If the preempt patches become popular enough (as they no doubt will amongst those using Linux for multimedia production), it won't be long before somebody decides to fork the kernel with preemptible patches simply to make it easier to use for more people. From there, you could very quickly end up with yet another completely different operating system kernel.

    1. Re:At the moment, yes by Nothinman · · Score: 3, Informative
      If you read the interview you would have seen: "Linus said at ALS this year he was interested in the preempt-kernel patch. That doesn't mean anything to me until we are in, though, but it is a good sign."

      And right now Linus hasn't let this and several other patches into 2.5 officially becaues he's focusing on the bio changes and it's much harder to debug if you have multiple subsystem changes going on at once. And Linus also has shown interest in Ingo's new O(1) scheduler, which the preempt patches have only recently become compatible with.

  8. Re:Kernel Maintainer by Nothinman · · Score: 4, Insightful

    Obviously, you want someone that knows the kernel really well and can maintain every part of it.

    That person doesn't exist, not even Linus knows every part of the kernel inside and out.

    You have to trust the maintainers of their parts of the kernel because as good as Linus, Marcelo, Alan, etc are they can't know all the gotchas, etc of all the drivers and different kernel subsystems.

    Aren't you taking a good developer (who can maintain every part of the kernel) away from the newer versions of the kernel?

    They don't have to do it if they don't want to or don't have the time. But with Alan's recent want to not maintain 2.4.x so he can work on other things seems to say how much time is really required for the maintenance of a kernel tree.

    There are only so many developers, what happens if you run out?

    I highly doubt there will ever be that many currently maintained kernel versions.

  9. You just can't win by wowbagger · · Score: 5, Insightful

    If you maintain different kernels, people say "OHMYGOD we are forking we will all DIE"

    If you roll changes into a kernel and make it unstable, people say "OHMYGOD production kernel's not stable we will all DIE"

    RTFA and lighten up. The patches are being considered for 2.5. They haven't been ruled out.

  10. Re:Why do we need so many different kernels? by jonbelson · · Score: 3, Informative

    >the Linux operating system will soon end up like
    >*BSD, with several mutually incompatible,
    > infighting factions. We can't let this happen.

    Where on Earth did you get this nonsense from? There are three open-source BSDs, each with a different focus. Admittedly a few OpenBSD and NetBSD developers aren't the best of chums, but most of the developers are happy to share code between projects (eg. dirhash, smp, usb etc)

    --Jon

  11. Because Linux is a Macrokernel architechture OS by ithmus · · Score: 3, Insightful

    Remember when you had to compile your device drivers into the kernel yourself instead of using a module? The idea here is that the vital OS features are part of the kernel.

    The open source movement is about modifying your software and sharing it. Anyone with the ability can modify a vital OS feature and share it. voila! Many, many kernels.

    But, the problem here is that real time processing does not belong in a macrokernel architechture. Look at the commercial RTOS (Real Time Operating Systems) like QNX and you will see that a microkernel architechture -- a kernel that a provides minimal feature set is favored. This is because if you are depending on time constraints, all you want in your kernel is message passing and task syncronization.

    --
    I'm supposed to be working right now.
    1. Re:Because Linux is a Macrokernel architechture OS by renehollan · · Score: 3, Insightful
      But, the problem here is that real time processing does not belong in a macrokernel architechture.

      I'm inclined to agree, but I see no reason to exclude an attempt at "poor-man's" real-time processing in a macro kernel, by making the kernel preemptable. So long as one does not have serious hard real-time constraints (e.g. manned aircraft auto-pilot) and is concerned with snappier interactive response and media streaming this seams appropriate. This is certainly the case if it can be compiled in or out at will.

      --
      You could've hired me.
    2. Re:Because Linux is a Macrokernel architechture OS by Cato+the+Elder · · Score: 3, Insightful

      It's not that "real time processing does not belong in a macrokernel architechture" it's that "macrokernel architechture does not belong in a hard real time system"

      I don't see any problem with making the linux kernel preemptible to be able to make better real time garuntees. Sure, I don't think you'll ever get hard realtime, but that doesn't mean that you won't get benefits from being able to respond to interrupts even when the system is running the kernel.

      ("hard realtime" -- maximum interrupt latency of xxx nanoseconds. "soft realtime" -- runs fast enough, usually)

  12. this one gets my vote by spongman · · Score: 4, Informative
    I've been running this patch since the early -ac days on a machine that doubles as a development desktop and a medium-load server and I've had absolutely no problems. I don't have any numbers but X/Gnome seems much more responsive even when other procs are busy. I see no reason why this isn't in the main tree, especially since it's a kbuild-time option.

    a quick nice -n -5 /usr/bin/X11/X helps, too.

  13. Re:Why do we need so many different kernels? by benedict · · Score: 2

    You need to spend some time studying history before
    shooting your mouth off.

    The main reason for BSD's "marginalization"
    relative to Linux is the AT&T/Novell lawsuit.

    It's also worth noting that the different BSDs are
    no less mutually compatible than the different Linux
    distributions.

    --
    Ben "You have your mind on computers, it seems."
  14. Nice buzzwords by yusing · · Score: 2, Interesting

    I "grew up" in the 8-bit era and recall that we used vectored interrupts to handle real-time needs. That worked extremely well with processors running at 1/1000 of today's speeds.

    After reading the article, I'm left wondering why "unpreemptable kernals" were ever conceived in the first case. To lower the cost of hardware? On the "limited-access freeway" model? Or just to K.I.S.S.?

    --

    "You must try to forget all you have learned. You must begin to dream." -- Sherwood Anderson

    1. Re:Nice buzzwords by Anonymous Coward · · Score: 2, Interesting

      It was because Linus incorrectly thought Tanenbaum didn't know what he was talking about. (Everyone seems to have the impression that Linus "won" that debate. They are wrong.) So instead of writing a modern OS with a microkernel (where there isn't much to preempt) he went with the 1970s approach. We'll all be paying for that until the day we switch to HURD.

  15. No. by Astral+Traveller · · Score: 2, Insightful

    While there are different Linux distributions, these all use the same kernel and the same applications, usually built from the same sources. A Redhat binary will generally run fine on Mandrake or Debian or Caldera or SuSE or what have you. FreeBSD, NetBSD and OpenBSD have become completely different operating systems with vastly different userspace code. Binaries are not at all portable between the operating systems. This is a far deeper and more severe fork than Linux, and if we continue down the road of having more and more Linux kernels (as we are seeing now), soon the same deep, irrevocable split could happen to Linux as well.

  16. Re:Kernel Maintainer by cduffy · · Score: 3, Informative

    There are only so many developers, what happens if you run out?

    If the supply of Linux kernel developers runs out (as unlikely as that seems), then kernel developers get hired away from different kernels.

    Seriously... there are folks who, for commercial reasons, need a lot of this work to be done; and a developer with real-time experience from a different UNIX kernel can familiarize with Linux within a reasonable amount of time.

    For instance, quite a few of the folks MontaVista has hired to do kernel work come not from a Linux background but from working on other Unices -- one fellow we hired to work on preemptability originally did the same variety of thing for IRIX, IIRC.

  17. Re:MS Windows? by gmack · · Score: 2, Informative

    I think some parts of NT are and some parts of not.. windows 9.x/me are definatly not to prove this just watch your whole system slow to a crawl while writing to the floppy drive.

    I don't think even with this the kernel will be good enough for some forms of real time process control. Real Time process control needs guarunteed sub millisecond response times and everything else including overall throughout is sacrificed for the cause.

    It will however make the UI a tad more responsive and make it harder for things like web browser loading to make the mp3 player skip.

  18. Re:MS Windows? by psavo · · Score: 2, Informative

    Is the MS windows kernel preemptible? Does anyone know or is it top-secret?

    AFAIK, it is not. I know that in Windows minimum latency is about 10ms, same as in default Linux kernel.

    If a kernel is preemptible, can it be used for real time process control?

    For what? Do you mean for something like.. robotics control? or shuttle devices control?
    For that answer is a bit complicated, you see, even this pre-empt patch doesn't help when there are 'long' locks in kernel. There are situations when kernel disables all interrupts and does its things for long time (like 5 to 20ms). There are not many of these, but they do exist. Now, realtime kernel is one that answers any interrupt 'right away', and can be interrupted 'anywhere'. These are a LOT hairier than pre-empt patch.
    If one doesn't have hard time limits, pre-empt patch delivers enough certainty on time-bounds..

    --
    fucktard is a tenderhearted description
  19. Resumable Pre-emtable OS calls by leighklotz · · Score: 4, Funny
    The ITS operating system (the world's second timesharing system, and the system for which RMS and others first developed EMACS) had a concept of state checkpoints in OS calls, called PCLSRing.

    Alan Bawden wrote a paper on it, and it's quite a good read. His web site has a compressed .gz version, but I found an HTML version of the HTML PCLSR Paper and I quote from its abstract here:

    Under any timesharing operating system there will be occasions when a process must access the state of another process. A process may need to start, stop, debug, load, dump, create, or destroy another process. There is also one occasion when a process must access its own state: an interrupt handler needs access to the state of the running process prior to the arrival of the interrupt, so that the process may continue after the interrupt has been dealt with.

    "PCLSRing" is a mechanism the ITS operating system uses to enforce a kind of modularity when a process must access the state of another process. The modularity principle is very simple: no process ever catches another process (including itself) in the act of executing a system call. System calls thus behave as if they were directly implemented in hardware. A process can no more catch another process in the middle of deleting a file than it can catch another process in the middle of a multiply instruction.

    There was also a way to put the system into a PCLSR test mode that exercised all these control points within the system calls, to help debug them. See SYSDOC TEST documentation extracted from the now decomissioned AI PDP-10 that originally served it up as ftp://ftp.ai.mit.edu/pub/alan/its/sysdoc.tgz (yes, ITS was on the Arpanet and the Internet and ran TCP/IP as well).

    1. Re:Resumable Pre-emtable OS calls by Surak · · Score: 2

      The ITS operating system (the world's second timesharing system, and the system for which RMS and others first developed EMACS)

      Minor nitpick. RMS first developed Emacs on Unix. It was modeled after TECO, which and others hacked together on ITS.

  20. Re:Kernel Maintainer by mattdm · · Score: 2, Insightful

    Aren't you taking a good developer (who can maintain every part of the kernel) away from the newer versions of the kernel?

    Stability and code maintenance are just as important (or more important, in some cases) as new and exciting features. Work on older kernels isn't wasted -- any relevant fixes can be ported up to the devel version.

  21. Re:Why do we need so many different kernels? by mattdm · · Score: 3, Informative

    ...Alan Cox's own fork which is steadily separating from Linus' core...

    Well, Alan isn't really in the business of doing this anymore. But even when he did, that's not the way things worked -- the Alan and Linus trees stayed fairly in sync with each other in many ways.

  22. Re:Preemptive Kernel? by Nothinman · · Score: 2, Informative

    A preemptive kernel is allowed to be stopped for another higher priority task, in the default kernel only userspace apps can be preempted. What this means is if an app is reading from the disk (the syscall for block I/O is run in kernel mode on the app's behalf) and the disk read is taking a long time (many milliseconds) that kernel path can be paused to allow other processes to run while the disk finishes it's read.

  23. Re:Why do we need so many different kernels? by benedict · · Score: 2

    You mean about the lawsuit?

    Linus himself has said that if BSD hadn't been
    under a cloud of legal uncertainty in 1990, he
    might not have embarked on the Linux project.

    You can get more information about the lawsuit
    here, just search for the string "the lawsuit".

    --
    Ben "You have your mind on computers, it seems."
  24. Pre-Emptable Kernel & MicroKernels by sl3xd · · Score: 2, Interesting

    I'm ignorant of this fact... but it almost sounds to me like having a pre-emptible kernel is one of the 'featues' of a MicroKernel --

    Although I'm fully aware of the fact Linux is NOT a MicroKernel, what significant differences exist between Pre-Emptible Linux and a MicroKernel Linux?

    (Aside from the fact that all of the Linux kernel, drivers, etc. is in 'kernel' mode, and a MicroKernel has only the message-passing and task-scheduling in 'kernel' mode, and everything else (drivers, etc.) run in 'user' mode.)

    --
    -- Sometimes you have to turn the lights off in order to see.
    1. Re:Pre-Emptable Kernel & MicroKernels by be-fan · · Score: 4, Informative

      (Aside from the fact that all of the Linux kernel, drivers, etc. is in 'kernel' mode, and a MicroKernel has only the message-passing and task-scheduling in 'kernel' mode, and everything else (drivers, etc.) run in 'user' mode.)
      >>>>>>>>>>.
      That's basically everything that distinguishes a microkernel from a monolithic kernel :) The preemptive bit is orthagonal to micro/macro kernel. There are non-preemptible microkernels (like MINIX, I think) and preemptible monolithic kernels (Solaris).

      --
      A deep unwavering belief is a sure sign you're missing something...
  25. Re:Preemptive Kernel? by paulbd · · Score: 3

    thats complete nonsense. the behaviour you're describing is what any multitasking kernel does. it has nothing to do with the preemptive kernel patch, which ensures that when a task becomes runnable (for example, due to a device interrupt that tells the CPU that a condition the task was waiting for is met), it can start running ASAP, rather than waiting till the next regular re-scheduling point. ASAP here means within at most a millisecond or two. There will be always be places where the kernel has to prevent this from happening; the goal is to minimize (and document) those places.

  26. Re:MS Windows? by SuiteSisterMary · · Score: 2

    NT kernal is; at pretty much any time you can give the three finger salute and get the 'stuff to do' dialog. When you see a blue screen, that's NT having caught an exception that worries it enough to *voluntarily* halt itself, because it can no longer guarentee that it's working with valid data. It also spews out a large amount of debug data. Most such bluescreen occur due to hardware drivers. This is similar to a UNIX kernal spewing a bunch of kernal panic messages and the like to the syscon, then halting. Very rarely will you see an NT derived kernal simply 'freeze.'

    --
    Vintage computer games and RPG books available. Email me if you're interested.
  27. Crash-course in preemtivity by slashdot.org · · Score: 5, Informative

    For those that don't really understand the importance of preemptive multitasking (and from reading some comments, there are a few of you out there :-O), let's explain this through an example.

    Consider application (a) that wants to read 128MB of data from the disk and application (b) that wants to read 1KB of data.

    Let's say that the disk transfers @ 1MB/sec and let's assume application (a) issues the read 1 second before application (b) is started.

    The sequence of calls for each app will look something like this:
    1) program calls read
    2) read is handled by the top level file system and is handed down to the proper file system
    3) the file system calls the block device
    4) the block device driver breaks up the request into the maximum block size the device can handle per request (for example 256 sectors for IDE)
    5) for every request, the block device sends request to physical drive
    6) drive transfers data to host
    7) drive indicates 'done'
    8) goto 5 until done
    9) file system returns
    10) read returns

    It's important to know that there may be limitations on the number of requests any stage can handle simultaneously. For example, an IDE drive can only handle one request at a time. Some Operating Systems however introduce even tighter restrictions, because for example the block device driver was written, assuming only one request at a time would be allowed.

    Take for example an OS where the kernel assures that no more that one request is pending between step 3) and 9).

    This would have the following effect on our apps: app (a) is allowed to call step 4) because it is the first request. One second later, app (b) arrives at step 3) and is blocked. It is not allowed to enter step 4) until app (a) is done and passes step 9). Effectively this means that app (b) has to wait for 127 seconds before it gets access to step 4).

    Now consider an OS where the file system and drivers can handle multiple requests. It still has to assure that the physical drive receives only one request though, so it permits only access of one app between step 5) and 7). App (a) arrives at step 5) first, so it gets to start sending requests to the drive. One second later, app (b) arrives at step 5) and has to wait for app (a) to finish it's current request to the drive. As soon as this request is done though, app (a) gets to step 8). Now we have both app (a) and app (b) wanting to have access to step 5). Depending on the scheduler either one will be granted access. There's a good change that app (b) will get access, and thus it only had to wait the time it took for app (a) to finish it's outstanding request, which takes max 1/8th of a second (256 sectors = 128KB) in this example.

    Btw. you may notice though that there's more likely to be an (expensive) seek introduced by allowing app (b) to interrupt the transfer of app (a)

    You can see how moving the 'lock' deeper in to the OS improves responsiveness. I'm not going to start a flame war about which OS is better, all I will say is that MY OS locks steps 5) through 7) :-)

    1. Re:Crash-course in preemtivity by nevets · · Score: 5, Informative

      This is fine except the way the linux kernel works (as well as most others). When app(a) calls the IDE to get the data, it goes to sleep (calls schedule) and won't wake up until it gets the received data. When schedule is called, it can go back to user land. app(b) will now do its call and it will be queued up and blocked until app(a) gets its data. Then app(b) will get a turn and this goes on and app(b) will not be affected by the big read of app(a). Your situation would happen if the kernel didn't call schedule while waiting for data. Thus that would really hurt the performance of the kernel.

      The real problem is if you have a periodic program that needs to make a deadline. What a non preemptive kernel does is place in too many varients. You can't guarentee that the program will make its deadlines when you have other lower priority tasks running.

      Say you have a period of 10 ms and your task needs 3 ms to do its job, and it must be done within the first 5 ms. So your app starts and gets priority, and you do what needs to be done in the first 3 ms and easily makes your 5 ms deadline. Now you may run other task for the next 7 ms. Come the next period, you start your 3 ms task and repeat.

      But lets say you have a system call that takes 4 ms, and one of your non priority tasks calls it at the 9 ms time. With out being able to preempt it, your priority task will start at the 3 ms time and it won't finish until the 6 ms time and thus you missed your deadline.

      The reason you have preemtive kernels is so that priority tasks are not affected by lower prioriy tasks. Not the reason you gave above.

      --
      Steven Rostedt
      -- Nevermind
    2. Re:Crash-course in preemtivity by nevets · · Score: 2

      Really? So what about tasks that are of equal priority?

      So what's your point, a preemptive kernel will not preempt a task for a task with the same priority. These would be treated the same as if the kernel was not preemptive. Actually, this is not quite true. The one task would be preempted when its quanta runs out. And with a preemptive kernel this would even happen if the one task was in a system call. But that's the only difference between two tasks of equal priority running on a preemptive kernel, and two tasks of same priority running on a non preemptive kernel.

      Preemtive kernels also improve responsiveness between equal priority tasks

      I wouldn't say responsiveness but maybe something like smoother or more consistent. But I'm not sure you'll improve responsiveness on a kernel that's preemptive. If task (a) is waiting for an interrupt and it happens while task(b) of same priority is running. Task (a) is placed on the run queue, but needs to wait for task (b) to finish its quanta or go to sleep. This doesn't even matter if task (b) is in userland. Task (a) will still wait for task (b), unless task(a) is of higher priority. So this is no more responsive than a non preemptive kernel.

      --
      Steven Rostedt
      -- Nevermind
    3. Re:Crash-course in preemtivity by nevets · · Score: 2

      The flaw is in 'Then app(b) will get a turn'. How can it if the device is locked by app(a).

      This comment has nothing to do with a kernel being preemptive or not. This comment deals with resource management.

      app(a) doesn't "Lock" the device for the entire read. The read calls for one block of data and then yes the device is blocked. When the data is returned, the next request is handled which may also be the request from app(b). The device is only blocked when it is receiving one block of data of a fixed size. The system call read will only block the device while grabbing one block of data, and that will allow other apps to be interleaved with the device.

      --
      Steven Rostedt
      -- Nevermind
    4. Re:Crash-course in preemtivity by nevets · · Score: 2

      Maybe Roberts patches don't, but I know my OS does.

      Really? why. Doesn't this mean higher cost of context switching. And if one preempts the other, doesn't this cause a back and forth infinit loop? What OS is yours?

      I did continue to say that one would preempt the other, but only when its time ran out and not by the other one just becoming active. Now I would be curious to know of another algorithm and how it would be better.

      --
      Steven Rostedt
      -- Nevermind
    5. Re:Crash-course in preemtivity by nevets · · Score: 2

      The point still stands though for basically any resource that has a long (time-wise) lock on it.

      This is a resource management issue and not a preemptive issue. Yes if you can make the locks on a resource shorter, the better. But most of the resources in the kernel are not protected by non preemption, and those that are are mainly just the global data. Now Linux is already made to work on a SMP, and with SMP processors you don't have the protection of non-preemption on your data as you did on UP. So spin_locks were made to do a busy loop on processors that were going to modify data that was currently being worked on by another processor. For UP these smp_locks are just nulled out (do { } while(0)). So what Robert (and others) have done is use the smp_locks as the places to protect data in a preemptive kernel. Most notably link lists.

      What my point is, is that its not resources that can be accessed quicker, but that higher priority tasks can be accessed quicker. The locks on resources are not shortened by the preemptive kernel, but higher priority tasks are not postponed just because a lower priority task is in kernel mode.

      Although a naive kernel could use non-preemption to protect resources, but that would be just silly (it may end up being windows 95;)

      --
      Steven Rostedt
      -- Nevermind
    6. Re:Crash-course in preemtivity by nevets · · Score: 2

      Thanks, I now understand where you are coming from. Sorry I was mainly debating the way things work in Linux. I don't use Robert's kernel, since I use my companies. We have our own version of the Linux kernel that handles preemption.

      You can get it at my company's site

      --
      Steven Rostedt
      -- Nevermind
  28. Re:MS Windows? by be-fan · · Score: 2

    Yes, NT is fully preemptible (except when its holding some very critical locks). However, it is not a real-time kernel, since it makes no guarentees about latency. The stock kernel is fine for soft realtime stuff like audio/video things, but you can't do hard realtime with it. However, there is a product called RTX which claims to make WinNT realtime.

    --
    A deep unwavering belief is a sure sign you're missing something...
  29. Re:Why do we need so many different kernels? by snake_dad · · Score: 2

    It's the BSD license. Who can prevent sharing? Even if they wanted to?

    --
    karma capped .sig seeking available Slashdot poster for long-term relationship.
  30. Missed it out of the gate .... by Zero__Kelvin · · Score: 2


    "RL: You have been becoming well known as the maintainer of a "preemptible kernel patch" for the Linux kernel. How did that situation come about?"

    "Love: Well, RL, you start with a group of people who are more than willing to brag that they know who maintains the 'preemptible kernel patch' but feel no need whatever to know what the hell that even is ... "

    --
    Guns don't kill people; Physics kills people! - John Lithgow as Dick Solomon on Third Rock From The Sun
  31. Actually, no by leighklotz · · Score: 2

    Actually, no. I worked at the MIT AI lab during this period, and was in charge of EMACS on the PDP-10 series (for ITS and TOPS-20) after RMS moved on to start the GNU project.

    TECO was developed for the PDP series. The PDP-6 and 10 were the systems that ran ITS. EMACS was a package of TECO macros; there were others, RMACS and TMACS for example. RMS and others maintained EMACS, and it became the lead, and eventually it took on a life of its own.

    After RMS stopped working on PDP-10 software and was fully engaged on the GNU project, I was in charge of PDP-10 EMACS. There were a variety of other EMACS clones on Unix, small and large, but they all had various extensibility problems (i.e., had to be recompiled) or licensing problems (i.e., you had to buy them). RMS started with one or the other of them and fixed both the licensing and extensibility problems, and everybody knows it all from that point.

    RMS did not write TECO, and EMACS was not first on Unix.

  32. Re:MS Windows? by SuiteSisterMary · · Score: 2

    I know C-T-L is an interrupt. But DOS and Win9x will lock, often, to the point of not responding to it. I've never seen NT do so, however. As to the bluescreen stuff, the point I'm trying to make is that a BSOD isn't a 'crash,' it's a very obtuse error screen. It's a state that NT throws itself into voluntarily when something goes very very wrong, and that something is almost always a hardware driver. Where screens used to have a "C:\>" burned into the upper left corner, now it's more like "ati.sys" ;-)

    --
    Vintage computer games and RPG books available. Email me if you're interested.