• uis@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    3 months ago

    Ok, how change of kernel would fix userspace program not reading return value? And if you just want to use microkernel, then use either HURD or whatever DragonflyBSD uses.

    But generally microkernels are not solution to problems most people claim they would solve, especially in post-meltdown era.

    • This particular issue could be solved in most cases in a monolithic kernel. That it isn’t, is by design. But it’s a terrible design decision, because it can lead to situations where (for example) a zombie process locks a mount point and prevents unmounting because the kernel insists it’s still in use by the zombie process. Which the kernel provides no mechanism for terminating.

      It is provable via experiment in Linux by use of fuse filesystems. Create a program that is guaranteed to become a zombie. Run it within a filesystem mounted by an in-kernel module, like a remote nfs mount. You now have a permanently mounted NFS mount point. Now, use mount something using fuse, say a WebDAV remote point. Run the same zombie process there. Again, the mount point is unmountable. Now, kill the fuse process itself. The mount point will be unmounted and disappear.

      This is exactly how microkernels work. Every module is killable, crashable, upgradable - all without forcing a reboot or affecting any processes not using the module. And in a well-designed microkernel, even processes using the module can in many cases continue functioning as if the restarted kernel module never changed.

      Fuse is really close to the capabilities of microkernels, except it’s only filesystems. In a microkernel, nearly everything is like fuse. A linux kernel compiled such that everything is a loadable module, and not hard linked into the kernel, is close to a microkernel, except without the benefits of actually being a microkernel.

      Microkernels are better. Popularity does not prove superiority, except in the metric of popularity.

    • areyouevenreal@lemm.ee
      link
      fedilink
      arrow-up
      0
      ·
      3 months ago

      But generally microkernels are not solution to problems most people claim they would solve, especially in post-meltdown era.

      Can you elaborate? I am not an OS design expert, and I thought microkernels had some advantages.

      • uis@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        Can you elaborate? I am not an OS design expert, and I thought microkernels had some advantages.

        Many people think that microcernels are only way to run one program on multiple machines without modyfing them. Counterexample to such statement is Plan 9, which had such capability with monolithic kernel.

        • areyouevenreal@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          3 months ago

          That’s not something I ever associated with microkernels to be honest. That’s just clustering.

          I was more interested in having minimal kernels with a bunch of processes handling low level stuff like file systems that could be restarted if they died. The other cool thing was virtualized kernels.