back to article 'It's really hard to find maintainers...' Linus Torvalds ponders the future of Linux

Linux creator Linus Torvalds spoke about the challenge of finding future maintainers for the open-source kernel, at the Open Source Summit and Embedded Linux conference under way this week online. Torvalds does not do keynote talks these days, but he was willing to sit down with VMware's chief open source officer Dirk Hohndel …

  1. jason 7

    Maybe...

    ...next year?

    1. keithpeter Silver badge
      Coat

      Re: Maybe...

      If you think about all the instances of the Linux kernel operating right now - from phones and embedded devices via servers and network devices in data centres, through to high performance compute clusters, isn't the desktop operating system aspect (i.e. endpoint client) almost of measure zero? Nice to have but it hardly defines the project.

      Is it not amazing that a self organised group of programmers managed this huge project?

  2. Anonymous Coward
    Anonymous Coward

    Just give it to Poettering...

    ...I'm sure he'll do the right thing by it.

    1. seven of five

      Re: Just give it to Poettering...

      Some people just want to see the world burn, don´t they?

      I´ll leave it up the the reader whether I mean you or Poettering.

    2. bombastic bob Silver badge
      Trollface

      Re: Just give it to Poettering...

      ...I'm sure he'll do the right thing by it

      you meant that to be satire, right?

      1. Mike Pellatt

        Re: Just give it to Poettering...

        Obviously, or I, for one, wouldn't have upvoted it.

        This isn't Twitter, where it's impossible to tell :-)

      2. Anonymous Coward
        Anonymous Coward

        Re: Just give it to Poettering...

        I definitely did.

    3. imanidiot Silver badge
      Coffee/keyboard

      Re: Just give it to Poettering...

      Don't even joke of such atrocities.

  3. A Non e-mouse Silver badge
    Joke

    With the growing use of eBPF in the kernel, I could see kernel ending up just being a eBPF VM.

  4. Phil O'Sophical Silver badge
    Holmes

    I wonder why?

    Linux creator Linus Torvalds spoke about the challenge of finding future maintainers for the open-source operating system,

    Seriously? People aren't queuing up to be told:

    "SHUT THE **** UP!

    "It's a bug alright -- in the kernel. How long have you been a maintainer? And you *still* haven't learnt the first rule of kernel maintenance?

    And I don't _ever_ want to hear that kind of obvious garbage and idiocy from a kernel maintainer again. Seriously.

    Fix your ******* 'compliance tool,' because it is obviously broken. And fix your approach to kernel programming."

    I'm shocked, shocked, I tell you.

    1. Anonymous Coward
      Anonymous Coward

      Re: I wonder why?

      Linus' potty mouth notwithstanding, let's not forget that some of this shit is hard - my last tussle with the kernel was way back in the 2.mumble days where I had to write a couple of drivers for some hardware in my lab - my C chops were a lot better back then but even so, hacking on the kernel was not for the faint of heart (one bit of hardware was sorta-kinda supported, which made life a bit easier, but the other wasn't so I had to work from datasheets and whatnot and write everything from scratch) - still gives me nightmares.

      You want documentation? Well, there's the code itself ... other than that, good luck!

      I probably wouldn't even know where to start now.

      There's also the 'some of this stuff is boring' aspect - whilst you'll probably have no shortage of people queuing up to work on the latest shiny shiny or the $ARCHITECTURE_DU_JOUR, there's no escaping the fact that the 'boring' stuff in the kernel will need occasional care and feeding as well, and that's not as sexy by half and people will be less inclined to do anything once the current maintainers have moved on[*]

      [*] - I'm one of those developers who actually enjoys working on the 'boring' stuff. It's a dirty job, but someone's gotta do it ...

      1. Anonymous Coward
        Joke

        Re: I wonder why?

        Linus' potty mouth notwithstanding, let's not forget that some of this shit is hard

        It's all just ones and zeroes. If it isn't a one then it's a zero. How hard can that be?

        1. Anonymous Coward
          Anonymous Coward

          Re: I wonder why?

          Systemd only works with 2s.

          1. Circadian
            Trollface

            Re: I wonder why?

            Is that a “potty”/“Poettering” reference?

          2. Anonymous Coward
            Anonymous Coward

            Re: I wonder why?

            Well, you do get a lot more information for your digits with trinary...

        2. Anonymous Coward
          Anonymous Coward

          Re: I wonder why?

          It's all just ones and zeroes. If it isn't a one then it's a zero. How hard can that be?

          Getting the ones and zeroes is the easy bit ... it's putting them together in the right order that's the trick.

          As the late, great Eric Morecambe once said: I'm playing all the right notes, just not necessarily in the right order ...

          ;-)

          1. Anonymous Coward
            Pint

            Re: I wonder why?

            As the late, great Eric Morecambe once said: I'm playing all the right notes, just not necessarily in the right order ...

            The following simple technique can be used to address that. Decide how big your program needs to be. If you get that right then the technique is absolutely guaranteed to produce the desired bug-free program.

            Allocate a block of memory of the necessary size and initialize it to all zeroes. Then:

            1. Execute it as a program. If it does what you want, then job done.

            2. Otherwise, treat it as one single very wide multibyte binary number and increment it. (first time round 000...000b->000...001b, second time round 000...001b->000...010b etc)

            3. Go to step 1

            1. Jan 0 Silver badge

              Re: I wonder why?

              @Smooth Newt

              Toss in a genetic algorithm and you might find your solution before the heat death of the universe.

              1. Anonymous Coward
                Anonymous Coward

                Re: I wonder why?

                Toss in a genetic algorithm and you might find your solution before the heat death of the universe.

                Or you'll re-invent Perl ...

                1. Flywheel

                  Re: I wonder why?

                  Or you'll re-invent Perl ...

                  Apparently Perl 7 is now a Thing. A young Thing, but it exists...

              2. Anonymous Coward
                Pint

                Re: I wonder why?

                @Smooth Newt

                Toss in a genetic algorithm and you might find your solution before the heat death of the universe.

                I have a great technique for generating the genetic algorithm. First you take a block of memory and initialise it to all zeroes...

            2. cantankerous swineherd

              Re: I wonder why?

              test driven development. why isn't everyone doing this?

              1. Anonymous Coward
                Anonymous Coward

                Re: I wonder why?

                It's not for the impatient. Let alone those who have PHBs wanting results last Tuesday. Without a time machine.

            3. Claptrap314 Silver badge

              Re: I wonder why?

              So. I implemented your program, but I ran into a problem. My screen just says, "Go to step 2" over and over again. Now what?

              1. Anonymous Coward
                Boffin

                Re: I wonder why?

                Simple; go to step 2.

            4. Anonymous Coward
              Anonymous Coward

              Re: I wonder why?

              This entirely explains Microsoft Teams.

            5. Persona Silver badge

              Re: I wonder why?

              That's a very poor starting position. Functional programmes tend not to have all their bits set to zero. Start with it filled with random data. That way there is a "chance" it will work first time. In the unlikely event it doesn't you will hit one of the many possible solutions sooner than starting with all zeros..

              1. Anonymous Coward
                Pint

                Re: I wonder why?

                That's a very poor starting position. Functional programmes tend not to have all their bits set to zero. Start with it filled with random data. That way there is a "chance" it will work first time. In the unlikely event it doesn't you will hit one of the many possible solutions sooner than starting with all zeros..

                I guess that is true. 00 is quite often a NOOP instruction - it is on ARM, MIPS and Z80 anyway - so an all zeroes initial condition could be a valid, but very dull, program on those but probably not on anything else.

                Best plan would be some sort of very complex quantum computer that could try all possible bit patterns simultaneously.

                1. mm0zct

                  Re: I wonder why?

                  I quite like ARC, where 0 is branch to self (I.e. a dead loop). Makes tracking down problems a lot easier because when you trample instructions or jump to the wrong location, you usually stop close to the problem, rather than keep executing nonsense.

                2. amanfromMars 1 Silver badge

                  Why Not? Just follow what is seen and ask establishment authorities for more of the evidence.

                  Best plan would be some sort of very complex quantum computer that could try all possible bit patterns simultaneously...... Smooth Newt

                  What about a best plan being some sort of very complex quantum computer that has already tried all possible bit patterns simultaneously, has processed all metadata and now shares the resultant deliberation on the ways forward to a global market fully reliant upon mass multi media presentation of current stealthy operating system utilities with extremely rare, attractive remote virtual facilities servering and servicing novel abilities.

                  A Simple Start for that Program to Realise the View and See that All of it is True, is to Treat it as True in a New Way of Doing Everything Differently and Better with SMARTR Partners rather than denying and doing vain battle against its obviously apparent existence and virtual presence. And share the news that it can no longer be denied from common knowledge.

                  The question then being ....... If everything is new, what would you like Programs and ProgramMING to Present you so Everything can move Forward in any Number of Novel Noble Directions Equipped with All of the Right Means and Memes?

                  Or would you prefer and defer all those sorts of almighty decisions to Programs and ProgramMING which Instruct and Advise Earthly Assets in the Secret Levers of Almighty Command and Immaculate Self Control which deliver Unassailable Lead Events ..... Mega Metadata Beta 0Days?

                  Nuclear Armageddon Morphs into NEUKlearer HyperRadioProACTive IT Operations which are Terribly Silent and Much More Deadly in Deployment than ever was Discovered Underground Testing?!.

                  1. jake Silver badge

                    Re: Why Not? Just follow what is seen and ask establishment authorities for more of the evidence.

                    "What about a best plan being some sort of very complex quantum computer that has already tried all possible bit patterns simultaneously, has processed all metadata"

                    Such a hypothetical machine would, by definition, know everything that there was to know. Gut feeling is that it would probably immediately suicide out of extreme boredom, just to find out what (if anything) was on the other side.

                    1. Anonymous Coward
                      Anonymous Coward

                      Re: Why Not? Just follow what is seen and ask establishment authorities for more of the evidence.

                      Sod off Jake, aka Mr Downvotes.

                3. jelabarre59

                  Re: I wonder why?

                  Best plan would be some sort of very complex quantum computer that could try all possible bit patterns simultaneously.

                  So does that mean "The Ultimate Question" was a compiler for Linux? Or was it that "42" was the ultimate source code?

              2. Anonymous Coward
                Anonymous Coward

                Re: I wonder why?

                Wow - that gives you the best of all worlds.

                Optimised evolution.

            6. Anonymous Coward
              Anonymous Coward

              Re: I wonder why?

              Sounds as if you've been contemplating Jorge Luis Borges' Universal Library...

      2. LucreLout

        Re: I wonder why?

        Linus' potty mouth notwithstanding, let's not forget that some of this shit is hard

        Some of what my team do is hard too, but if someone spoke to a member of my team in the manner described by the person to whom you responded, I would take a dim enough view to invite them to a non-discretionary meeting to adjust their attitude.

        People do their best work when they're supported by those above them in a hierarchy, and where mistakes are learned from rather than punished. Every shit boss I ever had or have ever seen has had the same poor attitude to 'subordinates' as described by the OP. They all had their "reasons" and they all had excuses, and while Linus is undoubtedly smarter than most crap bosses, he's still got a crap boss attitude.

        That he has achieved a lot is beyond question. Could he have achieved more? Maybe.

        1. ghp

          Re: I wonder why?

          I've always preferred working for someone who speaks his mind and knows what he's doing, but rarely had it that way. Insults only hurt when they're true. But I wanted to know: is Linus anyone's boss?

          1. Anonymous Coward
            Anonymous Coward

            Re: I wonder why?

            In his book "Just for Fun" he says:

            "I don’t proactively delegate as much as I wait for people to come forward and volunteer to take over things... I try to manage by not making decisions and letting things occur naturally. That’s when you get the best results.”

            Also on being a manager:

            "...while my Linux management style, such as it is, was earning high marks in the press, I was an undeniable failure during my brief stint as a manager at Transmeta. At one point, it was decided that I should manage a team of developers. I flopped. As anyone knows I'm totally disorganized. I had trouble managing the weekly progress meetings, the performance reviews, the action items. After three months it became obvious my management style wasn't doing anything to help Transmeta, despite the praise I was getting from journalists for the way I was running Linux...."

            My take is that likes to be an engineer or gatekeeper more than a boss.

            1. jake Silver badge

              Re: I wonder why?

              What did anyone with a clue expect?

              A Corporation is almost always an oligarchy mixed with a plutocracy, usually with at least a hint of gerontocracy.

              The Linux kernel developers are as pure a meritocracy as we have on this dampish rock.

              People like Linus are wasted in the traditional management role. I've been saying for decades that in this day and age, where Technology is so important, corporations should have separate Management and Technical tracks for advancement to more senior positions. Management takes care of management, and techs take care of the increasingly more complex technical side. Occasionally, but very, very rarely you can find someone who is both capable and has the capacity (and competency!) to wear both hats.

              I don't expect traditional management to grok this in my lifetime, because quite frankly they aren't equipped to understand the concept.

        2. jake Silver badge

          Re: I wonder why?

          "but if someone spoke to a member of my team in the manner described"

          What sport do you and your team play? Or are they a team as in horses?

          1. LucreLout

            Re: I wonder why?

            What sport do you and your team play?

            Writing software for HF Algorithmic trading for a bank you have heard of, mostly. There's quite a lot of money on the line so every lesson is expensive, but regardless of the cost of a mistake, if you punish it instead of learning from it you're much more likely to have someone repeat it.

            If the person that screwed up is around to tell the story then everyone joining the team learns to avoid the error. Our team is all in the one boat - if we crash into the rocks everyone goes under but if we make it to port then we all get shore leave.

            Or are they a team as in horses?

            No, but they are led by a donkey.

        3. Mike Pellatt

          Re: I wonder why?

          People do their best work when they're supported by those above them in a hierarchy

          Indeed. But the problem there is the hierarchical structure. In an effective collaborative environment, one person can have a good old rant about what someone else has done, and as there's good peer relationships, the problem gets resolved and everyone moves on to the next challenge.

          It's a (long) while since I even looked at the kernel dev process, but despite an initial appearance from the outside of it being a pyramid with Linus at the top, that wasn't how it worked.

          Though quite how systemd got its claws in remains.a mystery to me. Unless RedHat have gone to the dark side......

          1. jake Silver badge

            Re: I wonder why?

            "Though quite how systemd got its claws in remains.a mystery to me."

            Let's be perfectly clear here ... we are talking about the kernel. The systemd cancer is not now, and never will be, a part of the kernel. There is absolutely no need to run the systemd cancer on a Linux system, not now and not into the future.

            "Unless RedHat have gone to the dark side......"

            Well, yes. They have ... just how long was your last nap, anyway?

            1. Waseem Alkurdi

              Re: I wonder why?

              Will never be? After Torvalds steps aside, just give it a few years and watch them do it.

              It's already time to choose from one of the BSDs.

              1. Len
                Devil

                Re: I wonder why?

                Come to FreeBSD, the water is lovely.

              2. jake Silver badge

                Re: I wonder why?

                I seriously doubt the folks who will take over after Linus gets hit by a bus will be in any hurry to include anything anything to do with the systemd cancer in the kernel. Nothing that it does belongs in there. There are many reasons why init is separate from the kernel, and nothing they can add to the systemd cancer will ever change that.

                With that said, I strongly suggest that anybody already using Linux and GNU FOSS solutions also look into the BSDs. All it will cost you is a little time ... and options are always good.

                1. Anonymous Coward
                  Anonymous Coward

                  Re: I wonder why?

                  A bus wouldn't hurt Linus. He knows how to program them.

              3. The Specialist

                Re: I wonder why?

                Yes, I recently jumped in that pool (again) - now that I do get to work from home a lot longer than initially planned.

                I am using OpenBSD for servers facing the enemy and FreeBSD for the rest.

            2. Anonymous Coward
              Anonymous Coward

              Re: I wonder why?

              How long was my last nap? Well fuck you too Jake. Fuck you and fuck off while you're doing it.

              1. This post has been deleted by its author

          2. baud

            Re: I wonder why?

            Redhat is already on the big blue side, so not too far from the dark side

            1. MarkSitkowski

              Re: I wonder why?

              We stopped updating after CentOS 6.9 out of fear of systemd. Can't see any improvements worth having in any of the subsequent releases, so I guess we'll stick with it, or try BSD, sometime.

              1. jake Silver badge

                Re: I wonder why?

                As a BSD fan from before 1BSD, I heartily approve ... IF your systems can easily be shifted over, and your staff has a good handle on the differences between Linux and BSD.

                If you are heavily invested in Linux, check into Slackware.

              2. ghp

                Re: I wonder why?

                You should give Devuan a try.

            2. jake Silver badge

              Re: I wonder why?

              More under the big blue wing than on the big blue side ...

        4. Anonymous Coward
          Anonymous Coward

          Re: I wonder why?

          Really brilliant engineers are rarely good managers. The two feature sets don't have much overlap.

          It could be worse - you might have to work for Dave Cutler. I bet Linus has never punched a hole in a wall.

      3. Anonymous Coward
        Anonymous Coward

        Re: I wonder why?

        Linus' potty mouth notwithstanding, let's not forget that some of this shit is hard

        Yes, of course it's hard, so some appreciation for those who do it is in order. Linus's problem isn't the potty mouth, but the attitude.

        1. jake Silver badge

          Re: I wonder why?

          Says the AC from the safety of his armchair, where he'll never contribute to much of anything because it's hard and he might get frowned at.

      4. Anonymous Coward
        Anonymous Coward

        Re: I wonder why?

        Linus' potty mouth

        I suppose it's better than Linus' pottering mouth...

      5. AndyJF

        Re: I wonder why?

        "[*] - I'm one of those developers who actually enjoys working on the 'boring' stuff. It's a dirty job, but

        someone's gotta do it ..."

        That's job security, right there ;)

    2. Anonymous Coward
      Anonymous Coward

      Re: I wonder why?

      Whilst I agree that most people will turn away for fear of being treated like shit, on the other hand though, for the more thick skinned amongst us, kernel development is just obscure.

      As a somewhat aged techie myself, I can understand where his anger comes from and why younger techies might see it as just raw aggression.

      Id love to be able to develop at the kernel level, but the resources to learn are scarce and generally impenetrable.

      I've written code for over 20 years in various different languages but wouldn't know where to begin with kernel hacking.

      1. John H Woods Silver badge

        re: where to begin

        And that is what the greybeards need to spend their remaining working years doing - creating the in-depth documentation, examples, etc that are needed for new talent to get into this field.

        1. WolfFan Silver badge

          Re: re: where to begin

          For those old enough... remember, Linux kernel hackers are Klingons. Klingon programmers do not comment their code; if it was hard to write, it should be hard to understand. Klingon programmers don’t do documentation, same reason. Klingon programmers don’t do defensive programing, they do offensive programming, and always win. Klingon programs don’t take prisoners. Qapla!

          1. Law

            Re: re: where to begin

            GLORY TO YOU, AND YOUR HOUSE!!

          2. James O'Shea

            Re: re: where to begin

            I see that there are at least 4 Cardassians reading El Reg. Cardassians have no sense of honor and less sense of humor.

            1. Anonymous Coward
              Anonymous Coward

              Re: re: where to begin

              Klingons and humour aren't easily found in the same room either.

        2. Anonymous Coward
          Anonymous Coward

          Re: re: where to begin

          It isn't enough, sadly.

          I take your point. In-depth documentation should exist, as should sample code. When I retired, I left behind the specifications, documentation and example pseudocode which I estimated would keep the development team going for a good 8 months, surely time to recruit a replacement? I believe I was massively over-optimistic.

          But the problem is this. Once upon a time I started programming, working on a machine code program on a 16 bit microprocessor that took up under 2kW. I could comprehend the minimal documentation and understand the entire thing. At the time I could also dismantle and completely refurbish a typical British single or twin motorcycle engine right down to the gearbox. Easy.

          Now consider new bug looking at a program doing something extremely complicated in C, with all kinds of hooks and relationships with other things. How do you get your head around it in order to make a start? Working on a tiny bit is all very well, but moving to the next stage is hard because now you have to understand how it fits in and you need to absorb ever more documentation. It's an enormous uphill and unsurprising that people want to be in at the beginning of something where the initial complexity is manageable.

          When I look under the bonnet of my simple, normally aspirated car these days, I'm confronted with complex hardware I never had to worry about before - catalytic converter, EGR, the brake system being a large complicated valve block with connections to the computer, fuel vapour recovery, another computer and hydraulic system connected to the gearbox. It's obvious why it takes so many people to design and engine when once upon a time Ernest Turner or Joe Craig would nip in the design office after a liquid lunch and knock out a crankshaft or cylinder head.

          tl;dr the problem is not the documentation. It is (as Alan Turing identified in the early 1950s before his tragic death) the proper structuring of the bureaucracy that manages everything. The question has to be whether Torvalds has created a self sustaining and managing bureaucratic framework to hold the whole thing together.

          1. jtaylor

            Re: re: where to begin

            "The question has to be whether Torvalds has created a self sustaining and managing bureaucratic framework to hold the whole thing together."

            Indeed. This is called "succession planning." Many fine organizations have fallen at this hurdle. Linux will need someone with excellent organizational and interpersonal skills to make it through; this is not a problem that can be solved with code.

            1. jake Silver badge

              Re: re: where to begin

              This has been addressed. Look up "what happens if Linus gets hit by a bus".

              1. Anonymous Coward
                Anonymous Coward

                Re: re: where to begin

                I did that. The reply at the top was from Reddit in 2006 and said

                " I assume the bus would receive a profanity laden email laying out how badly it fucked up"

                However, being a little more serious, has LT ever gone away on holiday for a month or two to see how things work in his absence?

      2. BinkyTheMagicPaperclip Silver badge

        Re: I wonder why?

        Set up your kernel debugger (preferably on a pair of VMs if you can), choose the area you want to change, read the code, start making modifications, repeat until bug free. If you've been coding for 20 years you'd definitely be up to the task.

        There's plenty of people to ask about kernel hacking, and if you need to do architecture specific functions, processor documentation is usually pretty decent. It's when you need to prod specific chipsets and add-on card that specifications are less available.

        I'm shortly about to start some kernel mods for an open source OS to add functionality to an older system, and once I get the hang of that, something more complex. I know which bit of code it's running (because the module is named, and relates directly to a source code file), so the first task is a breakpoint. Then step through till it gets to the 'your system is too old' part. At that point improve the error message/check the logic to ensure it's rejecting the system using the correct method.

        If I understand that bit I then know what new functionality is required, which means reading the documentation for kernel support functions and processor datasheets, all of which is actively available, plus some coding in C and assembly. I'm not expecting it to be easy, but I at least know what I need to do.

        1. Anonymous Coward
          Anonymous Coward

          Re: I wonder why?

          >If you've been coding for 20 years you'd definitely be up to the task.

          Depends on what they've been coding...

          > but I at least know what I need to do.

          I would only believe that if you have completed the fundamentals and advanced OS design modules at university and achieved at least a B grade in both modules.

          I had - got A's in these modules and a 1st overall - yet desgning and implementing a commercial fail-safe distributed OS for real certainly twisted my mind - I have no desire to spend the next 20 years going back into kernel space, so have respect for those who are prepared to take on the challenge.

          1. jake Silver badge

            Re: I wonder why?

            Nah. You need a good fundamental grasp of C and how the compiler works, and a willingness to learn something new. Most Linux (BSD, Minix, etc.) kernel hackers aren't actually designing an OS, they are just massaging code that already exists.

          2. amanfromMars 1 Silver badge

            Re: I wonder why?

            yet desgning and implementing a commercial fail-safe distributed OS for real certainly twisted my mind - I have no desire to spend the next 20 years going back into kernel space, so have respect for those who are prepared to take on the challenge. ...... Anonymous Coward

            That is certainly respect well earned, AC, for it is the kernel space which drivers and renders the physical environment a result of mega metadata base manipulation/reorganisation which leads and paints the Greater Bigger Pictures with engaging tales and exciting news for IT Services and Mass Multi Media Moguls to present and realise.

            And as complicated as that may seem to be, it is extremely easily done whenever one has enlightened enlightening scripts to follow as one does whenever blessed with comprehensive instruction books akin to Ye Olde OEM Workshop Manuals.

            Surely though, such has always been the way of quickly and radically fundamentally changing things for humans on Earth? Anything else would suggest there is no intelligent order to guarantee future events with everything then being dressed up for chaos and displayed in mayhem and delivered by Ignorati rather Illuminati.

        2. Anonymous Coward
          Anonymous Coward

          Re: I wonder why?

          Just ***** ****** write it yourself ******* ******

          L

      3. Kabukiwookie

        Re: I wonder why?

        Normally I am fairly composed and thick-skinned, but if had people with the same attitude as Mr Lennart 'wontfix' Poettering in my team, I'd be a potty mouth as well

      4. Claptrap314 Silver badge

        Re: I wonder why?

        Dude, it's just code. I had to write what may have been the first ACPI memory detection routine. While working for AMD on what might have been an AMD-specific problem when the relevant maintainer lived in Portland (Intel's HQ). On that old assembler that used to ship with the kernel. When I barely dared to call myself a proper programmer.

        The point is, I have no idea if that code ever hit the trunk. That wasn't the issue. I needed to enable our customers, and that's what I did. If the code was worthy, Linus would have allowed it. If not, well, fine.

        Same as yours.

      5. jake Silver badge
        Pint

        Re: I wonder why?

        "I've written code for over 20 years in various different languages but wouldn't know where to begin with kernel hacking."

        If one of those languages is C, join the LKML and read along for a while (like usenet, I recommend following along for at least a month, maybe two, before joining in). When you see a place where you can contribute (and you will), just do it. "Doing it wrong" is rarely fatal ... besides, if you were perfect and had nothing left to learn, life would be excruciatingly boring.

        Relax, have a homebrew, and start reading ...

      6. Terry Wrist

        Re: I wonder why?

        The problem with kernel hacking is that the reference code for the hardware is written by verilog idiots that have no idea about software engineering. Furthermore, when they make a mistake, it's always a case of meh, we'll fix it in the software.

        1. Claptrap314 Silver badge

          Re: I wonder why?

          Not idiots, really. More like, "savants". Trust me, if you wrote some verilog for them to look at, they would be giggling about it for weeks.

          While I was doing software microprocessor validation at IBM, I started saying, "You don't want to be in the same county as an FPU I designed or that they programmed." The skills are just that different.

    3. Lee D Silver badge

      Re: I wonder why?

      No problem.

      You be nice to everyone and then take responsibility for when your sign-off appears on a 0-day, root-level compromise of the entire world's back-end systems.

      Or when it BUG()s in the middle of a driver code because the driver author was too lazy to use the proper path to print debug information (hint: BUG instantly crashes the kernel, with no hope of recovery - no production driver should EVER contain the macro BUG for anything). Which was literally one of those patches commented as such. Yes, that one-line debug script would literally instantly stop millions of machines at a random time if it had hit mainstream deployment, which means data loss on an epic scale, not to mention loss of service.

      Sorry, but if you can't handle criticism of such idiocy - however delivered - when you're in charge of even a small part of the world's most widely-deployed and widest-scope OS, then that's the least of your problems.

      Especially when - in every case listed - such stupendously ridiculous code was pushed through several levels of review and maintainers and ended up nearly being pulled into the kernel before it was noticed how ridiculous some of it was (e.g. including their untested code in every single kernel config by default because they didn't know how to make a patch, and nobody bothered to check, etc.)

      1. Someone Else Silver badge

        Re: I wonder why?

        There is a polite way to fire someone....

        1. Mike Pellatt

          Re: I wonder why?

          And there's a way to do it that will be a learning point so they don't f**k up and find themselves being fired again. I'd much rather that outcome for someone I have to "let go" (no, I wouldn't use that phrase).

          "Too polite" is a thing, too.

    4. Claptrap314 Silver badge

      Re: I wonder why?

      You really, REALLY don't have a clue, do you?

      There are actually LOTS of people out there that would LOVE to be maintainers--the problem is that almost all of them would run the kernel into the ground in no more than two releases. Often this is because of incompetence. Sometimes, it is because of a narrow focus on a particular issue to the detriment of others. Some of it is a straight up **** the end user attitude by various companies. (You know I'm talking about.) And some of it is full-on prima-donnaism. (Again, it should be pretty obvious who at least one of these currently is.)

      The only way to maintain the viability of Linux is to keep this binary excrement out of the kernel. On good days, the task is Herculean. On bad ones, I'm sure it feels Sisyphean. He cannot do it alone, and so he has to trust the maintainers to some extent.

      And when he finds out that some of them have been negligent? Sure, he can fire them. But that means either that he has to take on the work himself, or somehow replace them.

      Oh, yeah--tell me again how much money he has to attract new talent?

      So, he uses public shaming. Yeah, I know. Every study ever done says that's the wrong way to fix things. Except--the real world is a whole lot messier than some academic study.

      And--he has user to protect.

      1. jake Silver badge

        Re: I wonder why?

        "So, he uses public shaming as a method of last resort."

        FTFY..

        1. Claptrap314 Silver badge

          Re: I wonder why?

          Thanks. Now, if I could just fix that typo I just spotted...

    5. jake Silver badge

      Re: I wonder why?

      As a guy who has been contributing to the kernel on and off for over a quarter century[0], I think I'm allowed to comment. Essentially, the vast majority of the folks bitching about Linus getting sweary HAVE NOT been subject to the swearing. In other words, they are upset on behalf of other folks[0].

      We only see (saw?) the swearing after a developer ignored input from Linus, and (usually) several other people, over some boneheaded personal mission from gawd/ess that has absolutely no place in kernel code. Usually there is behind-the-scenes email before the gripe goes public. It is always the developer in question who takes it public in the LKML And most of the time, after getting yelled at, said developer has actually (finally) admitted their error, (finally) fixed it, and the rest of us mutter "about time, bone head!" and life continues. The public swearing is (was?) always a last resort. I do not recall anyone bitching about private, out of band swearing.

      And no, it has never made me feel intimidated about contributing to the kernel. Why not? Simple. Because when it is pointed out that I make a mistake, I fix it without bitching about it, that's why. It's really not a big deal. Unless the developer in question chooses to make it a big deal, that is. In other words, said prima donna / drama queen doesn't play well with others, and insists on doing it his/her way. Frankly I'm surprised that Linus has been as tolerant as he has been all these years ... If it was my name attached to the project, I'd have really lit into a few of the idiots ...

      And you commentards who haven't actually spent any time contributing to the kernel, your opinions on the subject are completely worthless. Come back after you've walked a few miles in our moccasins and I might find your commentardary on the subject worth listening to.

      [0] My, doesn't time fly when you're having fun!

      [1] Which is a cardinal sin as far as I'm concerned ... As an adult, I don't need or want anybody else being upset on my behalf, thank you very much.

      1. LucreLout

        Re: I wonder why?

        Essentially, the vast majority of the folks bitching about Linus getting sweary HAVE NOT been subject to the swearing. In other words, they are upset on behalf of other folks

        So your considered view on all those middle class folks at the BLM racist rallies is what exactly? They're not black so they shouldn't comment? Really?

        In other words, said prima donna / drama queen doesn't play well with others, and insists on doing it his/her way.

        Are you talking about the developer or Linus here? Its really hard to tell.

        And you commentards who haven't actually spent any time contributing to the kernel, your opinions on the subject are completely worthless.

        I look forward to near deafening silence on the subjects of taxation, economics, finance etc from the vast majority of commentards then, whose closest experience of any of them is user level rather than developer level (working in the City).

        Sorry, you just don't get to gatekeep what people talk about or whose opinions have a value. Pull your head out of your arse and stop trying to copy Linus - you don't have the talent and I for one wouldn't put up with it even if you did.

        I'm honestly not sure you've thought your post through very much before writing it. Try to expand your line of reasoning into other aspects of your life and see if it still works for you. It won't.

        1. jake Silver badge

          Re: I wonder why?

          Care to try again without the hyperbole, Mr/s Lout? It's unbecoming.

          I'm not going to expand this to other aspects of my life for the simple reason that it doesn't apply elsewhere. It only applies to the meritocracy known as the Linux kernel developers.

          1. LucreLout

            Re: I wonder why?

            Care to try again without the hyperbole, Mr/s Lout? It's unbecoming.

            I'll take that as agreement that you've not though through your position here and that you don't actually have an answer. Which rather begs the question then, why post?

          2. jake Silver badge

            Re: I wonder why?

            Under a minute for the downvote! Awesome! :-)

            (Don't wear out your F5 key. You might need it for something important someday.)

            1. LucreLout

              Re: I wonder why?

              Under a minute for the downvote! Awesome! :-)

              You should see how fast mine arrive!

              I write decidedly subsecond software for a living and I'm not sure I could write something that reacts that fast.

            2. Anonymous Coward
              Anonymous Coward

              Re: I wonder why?

              Unspoken rule: don't talk about downvotes. It just shows that you have low self-esteem, which is relevant for a teenager, but unbecoming of you of all people.

              1. Kabukiwookie

                Re: I wonder why?

                 It just shows that you have low self-esteem

                Is that also why you're posting as anonymous coward?

              2. jake Silver badge

                Re: I wonder why?

                Nah. I was just sharing a laugh. I find the concept of thumbs, as implemented here on ElReg, to be bloody useless ... except sometimes they can add a little amusement when they tip you off that somebody who takes commentardary entirely too seriously has been furiously hitting refresh, just waiting for your next comment to downvote.

                Want another laugh? Seems some brilliant person has written a macro that'll downvote your old posts serially. I just watched my downvote total go up by about 50 in the space of about a minute. There is absolutely no way that someone can do that manually with the ElReg interface.

                Even funnier, they are downvoting my old, original posts from over ten years ago ... posts that were made before ElReg had even implemented the concept of thumbs. I'm laughing ... how on Earth does this person expect to benefit from this utterly pointless exercise? Shirley it's not going to out itself as the serial downvoter, expecting great applause from the peanut gallery ...

                So I've pissed off somebody, about something, somewhere, and yet they can't be arsed to tell me why ... but they will expend time and energy to write code to downvote old posts of mine? That's just plain sad, that is. Poor thing.

                Edit: Chalk up another 50ish downvotes in my old posts in about a minute. One wonders how hard the poor dear was pounding on its keybr0ad as it launched its cute little macro.

                1. Kabukiwookie

                  Re: I wonder why?

                  So I've pissed off somebody, about something, somewhere, and yet they can't be arsed to tell me why ... but they will expend time and energy to write code to downvote old posts of mine? That's just plain sad, that is. Poor thing.

                  There seem to be quite a lot of downvoters who downvote because something that was said hurt their feelings and possibly impacted their cosy pre-established world view, not because the post itself doesn't have merit.

                2. Anonymous Coward
                  Anonymous Coward

                  Re: I wonder why?

                  Whenever I see your handle I'll vote it up systematically. Not able to write macros that 'll vote you up 50x per minute. Sorry.

                  I appreciate your comments.

        2. Tom Graham

          Re: I wonder why?

          "So your considered view on all those middle class folks at the BLM racist rallies is what exactly? They're not black so they shouldn't comment? Really?"

          That might be helpful, yes.

          1. TheMeerkat

            Re: I wonder why?

            We don’t care if Black Lives Matter thugs shout at each other or not.

            What we cate is how they behave towards the rest of us (I.e. whether it is OK to vandalise statures and generally break the law)

            The same with Linus. It is not for me to comment on the Linus’s swearing at kernel developers, but I can comment on whether the new version of kernel fits whatever needs I have or not.

            1. Kabukiwookie

              Re: I wonder why?

              Bullshit. If anyone with a slacker discipline than Linus would take over from him the kernel would be thoroughly fscked within a few releases.

              As a gate keeper he should be strict and kick out people that don't adhere to the scrict coding rules that he demands from contributors.

              If he wasn't so strict and giant security holes would be the result of that you'd be probably one of the first to point the shitty finger of blame at him for not doing a good job.

              Don't like how Linus manages the people contributing to his project, branch off and maintain your own code base.

              Good luck with that.

      2. Jonathan Richards 1
        Joke

        Re: I wonder why?

        > folks[0].

        WARNING: footnote index reuse [0]

        > [1] Which

        ERROR: footnote index not defined [1]

        :)

        1. jake Silver badge
          Pint

          Re: I wonder why?

          Sorry, I fat fingered it. If the off-by-one error caused any of you to ABEND and need a cold start, I apologize profusely. Full refunds will be available at the usual location by close of business today.

          During the meanwhile, this round's on me.

    6. Anonymous Coward
      Anonymous Coward

      Re: I wonder why?

      People still line up to join the Marines and other elite organizations, even though they know that a lot abuse will come their way.

      The point is that it's meaningful, constructive abuse. It's designed to help them get better at what they do.

      It's said that the Red Army used to have a saying for reluctant recruits: "If you don't know how, we'll teach you. If you don't want to, we'll make you".

      That's not for everyone, but for the few who really want to excel.

      1. amanfromMars 1 Silver badge

        Re: I wonder why?

        Here's something which some employ and enjoy and would attribute to their exceptional success to generous excess, Archtech ......

        Proper Preparation and Positive Planning Prevents Piss Poor Performance Permitting Prime Prize Plum Penetrations and Perfect Private Protocolled Pursuit of Public Parametered Projects and Pirate ProgramMING Productions for Pumping and Pimping in Presentations to Populations Puzzled by Progress and Prisonered with Pathetic Past Postings rather than Pioneering with Pilots Practised in Plush Promising Programs.

        ..... and not at all dissimilar to that which the Red Army realise is positively advantageous and mutually beneficial.

        1. jake Silver badge

          Re: I wonder why?

          You must be positively predisposed to predominantly postindustrial psychoanalyses ... or perhaps you are a practitioner of postmillennial perturbations predetermined by probabilistic precautionary philosophic perfectionism?

          1. amanfromMars 1 Silver badge

            Re: I wonder why?

            You must be positively predisposed to predominantly postindustrial psychoanalyses ... or perhaps you are a practitioner of postmillennial perturbations predetermined by probabilistic precautionary philosophic perfectionism? .... jake

            Probably, jake, and pretty phishy it is too.

  5. Anonymous Coward
    Devil

    The next generation will attempt to port the kernel to Javascript...

    and then will rewrite it with a new derived language every six months... of course, it will run on top of Chrome.

    1. bazza Silver badge

      Re: The next generation will attempt to port the kernel to Javascript...

      Ha! They might at that...

      Torvalds seemed quite open to the idea of using Rust, which I think is most encouraging. I've been hoping for the thinking on such a move (but on a bigger scale) would start. Using Rust ought to deliver development timesavings, which would make better use of a maintainer's donated time. And it ought to eliminate a bunch of bug classes, so that should be another long term time saver.

      1. Roland6 Silver badge

        Re: The next generation will attempt to port the kernel to Javascript...

        >Using Rust ought to deliver development timesavings, which would make better use of a maintainer's donated time.

        From what I see, Rust will force some decisions to be made earlier in the development process and so reduce time spent in test and debug due to Rust largely "eliminating a bunch of bug classes". Otherwise, I agree it should mean maintainer's time is better spent focusing on the code logic.

      2. jake Silver badge

        Re: The next generation will attempt to port the kernel to Javascript...

        No, what he said was "It might not be rust" ... Translated, that means "It will not be rust". He's just being diplomatic.

      3. Version 1.0 Silver badge
        Facepalm

        Re: The next generation will attempt to port the kernel to Javascript...

        They might start with Rust but today's generation of new programmers will end up trying to rewrite the kernel in Python ... doesn't anybody think that rewriting the kernel in any language will result in a new world of bugs?

    2. bombastic bob Silver badge
      Meh

      Re: The next generation will attempt to port the kernel to Javascript...

      Saying that the next generation will want to use a "not C" language, one NOT intended by its very nature to be the language of OS kernels [think early days of UNIX and the 'B' lingo, which became 'C'], is rather CONDESCENDING in my view. It assumes that future kernel programmers won't be able to comprehend the need for a lingo that's ALREADY very close to the assembly code, and can even be hand-tweeked to generate efficient assembly, if you understand enough about how the compiler works and the way it generates code.

      It would also be assuming that assembly isn't being used, assuming that garbage collection and excessive validation are allowable, and that complex operations should be "programmed inside the language" where they're almost GUARANTEED to generate less-than-optimal solutions for MOST problems that require things like threads and process control in general.

      We have SEEN the results of "this kind of thinking": WINDOWS

      How long does it take to open up a "File Open" dialog box these days? Then go back to Win '95 or even Win 3.1, and that less "functional" file open dialog box that DID! NOT! USE! OBJECT! ORIENTED! HELL! on EVERY! STINKING! FILE! ENTRY! popped up SO fast you're like "what?"

      And that's my point: when EVERYTHING is being done using "we have fast CPUs now" as an excuse, with bureaucratic top-down "everything is an object as a member of a collection" kinds of thinking, you end up with GROSS inefficiencies that nobody knows how to fix any more... because we're NOT using a lingo like 'C' any more... one that reminds us of how the CPU actually WORKS, because it's low-level enough to be close to the machine code!!!

      [and it has the decency to support "native integer" types, particularly UNSIGNED integers]

      Seriously, though, give "the next generation" some credit. We, the experienced kernel programmers of the world, should MENTOR them, and turn them into proficient C coders instead!

      [then they'll look back and say "why the HELL dd I ever *FEEL* (the 'F' word) that we could program a kernel in RUST ???]

      1. shayneoneill

        Re: The next generation will attempt to port the kernel to Javascript...

        I think part of the enthusiasm for Rust is that its basically C with an angry preprocessor that throws chairs at people when they do stupid things with poimters. You definately *could* write a kernel in Rust (something you couldnt do in ,say, Go or f**ing javascript.

        1. jake Silver badge

          Re: The next generation will attempt to port the kernel to Javascript...

          Sometimes your "stupid things with pointers" is the hack that makes magic happen. I don't need, nor do I want, my compiler telling me what I can and can't do in this type of coding. Kernels aren't the same thing as common or garden applications.

          1. Roland6 Silver badge

            Re: The next generation will attempt to port the kernel to Javascript...

            >Sometimes your "stupid things with pointers" is the hack that makes magic happen.

            Along with those ASM inserts to use the esoteric task switch and memory protection data blocks and instructions that compiler writers tend to ignore.

            I suspect another reason why Linux will continue with C is that it will be a big job to move to another language; although this task might attract developers who aren't interested in being maintainers.

            1. bombastic bob Silver badge
              Devil

              Re: The next generation will attempt to port the kernel to Javascript...

              " it will be a big job to move to another language; although this task might attract developers who aren't interested in being maintainers."

              Before creating and jumping onto a new bandwagon, a bit of recent history: Kotlin uptake isn't happening at the rates that Google might want, for Android development, and it is ALSO important to keep your existing staff from quitting over having to spend month(s) re-learning and _ESSENTIALLY_ becoming like N00Bs again for a while...

              Yes. I'm CONFIDENT it is true: Experienced coders like the results of being experienced, knowing what the code should look like, avoiding what would otherwise be the drudgery of going over insignificant details and nuances of "new shiny" lingo, and getting FREQUENTLY OUTRAGED at perceived UNNECESSARY errors and warnings. Those tedious 'learn new instead of using experience' things while STILL getting the fixes and new features done on time keep programming from being *fun*... and if it's not *fun*, and you are volunteering, you tend to *QUIT*.

              Learning is fun if you're NOT under the gun. Taking a month (or more) off from anything resembling productivity and getting things accomplished... NO THANK YOU!

              So if Java coders (for Android) are holding back on a switch to Kotlin, even for NEW projects, maybe not such a good idea to switch from C to Rust.

              (being old enough, I have seen a lot of "new shiny" lingo hype, most of which sputtered and flamed out quickly, and the TIOBE index is FULL of them)

      2. 9Rune5

        Re: The next generation will attempt to port the kernel to Javascript...

        We have SEEN the results of "this kind of thinking": WINDOWS

        Last time I checked, the Windows DDK was C all the way. It would be strange if the Windows Kernel used a completely different language. (The DDK changed names a few times, but I believe it is still C)

        How long does it take to open up a "File Open" dialog box these days?

        How is that relevant to kernel development?

        That said, I pressed CTRL+O here now. The common file open dialog box popped up in less than a second. I perceive it as slow, but you know what: Had it been developed in a modern language, there'd be async calls to enumerate drives, put the right icons on the special folders, etc. It'd pop up instantly, but possibly not be fully populated right away.

        1. BinkyTheMagicPaperclip Silver badge

          Re: The next generation will attempt to port the kernel to Javascript...

          You do know that multi threaded programming has been fully possible in C right from Windows NT 3.1, not to mention OS/2 in the 80s? (Although the file dialog is written in C++, and calls a lot of interfaces).

          Microsoft are not stupid, and each new release of Windows has been optimised beyond the previous one (Yes, sometimes this is accompanied by a lack of flexibility or functionality, or increase in requirements in other areas).

          If the file dialog doesn't populate bit by bit, there's a reason for it.

          1. 9Rune5

            Re: The next generation will attempt to port the kernel to Javascript...

            You do know that multi threaded programming has been fully possible in C right from Windows NT 3.1,

            ...and do we want a file open dialog that spins up several threads each blocking on I/O? No, we do not want that.

            NT 3.1 included async I/O from the get-go too. But I suspect many of us stayed away from those functions because quite frankly they were a lot of hassle. Plus, the number of devs that do multithreading in a safe and effective way are in a minority. (also a management issue -- manglement rarely let developers do a job properly)

            Things look a lot different now, because with modern dev languages we can finally do async operations in a more natural way while the coder staying productive. You know, if you really want to get down to the metal, there's always machine code. But you won't get much done that way and the result would be much worse.

            There are many ways of getting Explorer stuck. I eventually remembered Mark Russinovich's exploration of one such phenomena: https://docs.microsoft.com/en-us/archive/blogs/markrussinovich/the-case-of-the-intermittent-and-annoying-explorer-hangs

            I haven't tried Rust yet. I hear good things though and it would be interesting to see it used for kernel type work -- if only to be able to compare apples and apples.

  6. BinkyTheMagicPaperclip Silver badge

    It's really hard to find people to do a generally thankless task

    Gosh, wonder why that could be?

    I mean if you want an extreme example, there's the ncurses library maintainership hassle : https://invisible-island.net/ncurses/ncurses-license.html

    Thankless job at the best of times, even worse when you can't easily fire someone.

    1. MacroRodent

      Re: It's really hard to find people to do a generally thankless task

      Thankfully, Linux has had a well-known standard license (GPL2) almost since the beginning, and has tracked contributors closely, so that something as bad as the ncurses scenario hopefully wont happen.

  7. karlkarl Silver badge

    "Apple is now likely to deliver the kind of Arm-based machine Torvalds has been waiting for."

    Only if it isn't criminally locked down like Microsoft's Windows RT platform.

    1. cb7

      iShit not locked down? Ain't gonna happen. Not in my lifetime and not in yours.

      1. Anonymous Coward
        Anonymous Coward

        The computers haven’t ever truly been locked down (yet), just the rest of the stuff.

    2. DS999 Silver badge

      From what I understand the new Mac's will boot only signed code by default, but you will be able to enter EFI config and change that setting.

      The catch for using an ARM Mac as a Linux ARM dev platform is more likely to be drivers, especially for graphics. So you might be better off booting Linux in the built-in hypervisor which will have drivers for everything and let you run full Linux. Even though it isn't bare metal it'll be basically bare metal performance.

      1. Anonymous Coward
        Anonymous Coward

        Citation needed

        See title

    3. Ilgaz

      It will be

      Apple owns, designs the freaking CPU. Just hope old school app installs will work let alone installing Linux. People tend to think like it is PowerPC. Back in the day Apple was busy adding great things like Altivec to the CPU. Now they are only interested in locking down their iThings.

  8. RegGuy1 Silver badge

    Email?

    "It is every day. You read email, you react to email, you have to just be there..."

    Email? Have you not heard of Slack?

    Oh, you have! That's why you use email...

    1. brisalta

      Re: Email?

      Email leaves a trail and list servers maintain an archive so if you need to look something up ten years done the road you can.

      Good luck trying to find a slack conversation in ten years time to look something up.

  9. Anonymous Coward
    Linux

    "COBOL programmers of the 2030s?

    As far as the programmers - aging, moving out of coding, retiring, dying - check, check, check, and check.

    As far as the language - difficult to learn, often not taught in schools, negativity perceived - check, check, and check.

    As far as the code - poor documentation, poor sample code, poor mentoring - check, check, and check.

    As far as external drivers - potential panic from a date apocalypse - check.

    Torvalds hit the nail on the head and 2030 might be optimistic.

    1. bombastic bob Silver badge
      Happy

      Re: "COBOL programmers of the 2030s?

      oh come on, show at least SOME optimism...

      (This is an opportunity to revive interest in 'C' coding)

      smiley face icon even if it's "forced"

      1. brisalta

        Re: "COBOL programmers of the 2030s?

        There is an interesting article regarding COBOL demonstrating that COBOL programmers that retire are actually being replaced and that the average age has stayed the same. It appears that experienced programmers are learning COBOL as a career change choice and replacing those retiring.

        By the way gnucobol is available for Linux.

        C is still taught and I know of people bored with Java programming have looked to C programming and what can be done with it as a career change opportunity as well.

    2. MarkSitkowski

      Re: "COBOL programmers of the 2030s?

      I have some 'C' code, written in 1985, on Unix BSD 4.1c, which has been compiled, over the ages, on Sun3.x, Sun 4.x, Solaris 5, 6, 7, 8, 9 and 10, Cygwin, various flavours of HPUX, IRIX, Ultrix, SCO and AIX, not to mention every version of Linux from the year 2001 to the present.

      Not a single line of code needed to be changed, and there was only one #ifdef, to cater for the fact that Linux has no tell() system call.

      I don't know about COBOL. but I challenge anyone to name another language that's as portable as 'C', and an operating system that's as consistent as standard Unix. The idea of someone writing Unix code in 'Rust' (whatever that may be) simply appalls.

      1. JBowler

        Re: "COBOL programmers of the 2030s?

        >I have some 'C' code, written in 1985

        Please:

        int main(){return 0;}

        Definitely worked in the early '80s. Today, on Windows 10:

        jbowler@Jule:~> echo "int main(){return 0;}" >/tmp/crp.c

        jbowler@Jule:~> gcc -o crp /tmp/crp.c

        jbowler@Jule:~> crp

        If 'crp' is not a typo you can use command-not-found to lookup the package that contains it, like this:

        cnf crp

        jbowler@Jule:~> ./crp

        jbowler@Jule:~> echo $?

        0

        Ok, one typo. But I quoted the whole thing verbatim, no edits, nothing, no macros either.

        awk

        John Bowler (lifelong maintainer of other peoples crp code.)

        1. Anonymous Coward
          Anonymous Coward

          Re: "COBOL programmers of the 2030s?

          God knows what point you're trying to make, perhaps it was a late night? But since when did windows have a /tmp directory or use gcc to compile.

        2. MarkSitkowski

          Re: "COBOL programmers of the 2030s?

          I don't do Windows (except as Cygwin) but here's the above on Sun Solaris:

          csh%[85] echo "int main(){return 0;}" >/tmp/crp.c

          csh%[86] cc -o crp /tmp/crp.c

          csh%[87] crp

          csh%[88]

          I think I'm missing the point...

      2. Teiwaz

        Re: "COBOL programmers of the 2030s?

        I don't know about COBOL. but I challenge anyone to name another language that's as portable as 'C'

        That sounds like a direct comparison.

        COBOL is no threat to 'C', and vice-versa. They both have totally different ideal uses.

        You wouldn't dream of trying to write drivers in COBOL, and anyone trying to write the sort of business logic you can easily do in COBOL in 'C' needs their pointers extracted.

        1. jake Silver badge

          Re: "COBOL programmers of the 2030s?

          COBOL IS DEAD! Long Live COBOL!

          There are more functional lines of COBOL (and Fortran) working in big business today than the average kid who never used a dial telephone could possibly imagine. I do not know of a single COBOL (or Fortran) programmer who is currently out of work. I can't say the same for Java(script), VisBas, C++, C#, and what-have-you.

          When my students ask me what other language(s) to learn, I've been suggesting COBOL (and Fortran (and C)) for about thirty years now. Not a month goes by that I don't get a "THANK YOU!" email from a former student, now making a real salary coding in one of them after dicking around with fad languages for a few years.

          With more than a couple billion lines of code in current use (by some estimates), COBOL's not going anywhere soon. Same for Fortran and C. They might not be sexy, but they do real work, in the real world ... and that's where the big bucks are.

          Remember, kiddies, the Web and associated languages are ephemeral. COBOL (and Fortran (and good old C)) is here to stay. Learn one (or all three), and you'll be employed for life ... or, as in my case, until you decide you want to retire.

          1. Anonymous Coward
            Anonymous Coward

            Re: "COBOL programmers of the 2030s?

            Everything you say is true but the problem Cobol has is that the sort of applications its used in are, to be blunt, as dull as hell. Not many people want to spend their entire career manipulating data tables when there are far more interesting things to do these days compared to the 60s and 70s.

    3. TheMeerkat

      Re: "COBOL programmers of the 2030s?

      Cobol is not difficult to learn

      1. jake Silver badge

        Re: "COBOL programmers of the 2030s?

        Over the years I've often had students ask me "what other programming language should I learn?" Invariably, I reply "COBOL!" ... I have had a lot of email thanking me for that advice. Good COBOL coders are worth their weight in core memory ... Always have been, always will be[1].

        Somewhere, Grace is smiling an evil smile in the way that only she could :-)

        Pardon me while I polish the case containing my nanosecond.

        [1] Yes, I know, that's been depreciated over the years, but what hasn't?

    4. Boris the Cockroach Silver badge
      Linux

      Re: "COBOL programmers of the 2030s?

      Quote:

      As far as the programmers - aging, moving out of coding, retiring, dying - check, check, check, and check.

      As far as the language - difficult to learn, often not taught in schools, negativity perceived - check, check, and check.

      As far as the code - poor documentation, poor sample code, poor mentoring - check, check, and check.

      As far as external drivers - potential panic from a date apocalypse - check.

      Torvalds hit the nail on the head and 2030 might be optimistic.

      To be honest , you could be describing any one of the high skill low status jobs out there in today's world.

      You know.. the stuff that actually makes the world work instead of a flashy website or cool animation.

      I've had my fill of concurrent and system programming and as far as I'm concerned.. you can stuff it.

      So I stick with the robots who wait around endlessly because you've forgotten to put a Sync() in the program... stilll that better than the idiot who starts the robot and does'nt check to sync() with the machine and punches a robot hand through a closed door...

      Maybe we could automate Linus .... a swear bot and a punching robot should do the trick

      1. 9Rune5

        Re: "COBOL programmers of the 2030s?

        Maybe we could automate Linus .... a swear bot and a punching robot should do the trick

        Bender from Futurama?

  10. _LC_
    Boffin

    Another problem of a monolithic monster kernel

    That's just another problem of the monolithic monster kernel.

    Typically, people start small. They have to get used to the process. With Linux there is just a landslide of things you have to know before you can get started. Consequently, almost nobody ever manages to jump that hurdle... :-(

    1. Julz

      Re: Another problem of a monolithic monster kernel

      Micro-kernels are a thing and have been for a while and where well developed at the time LINUX was a gleam in Linus's eyes. I'm sure that many reasons for LINUX not being a micro-kernel can be trotted out but I can't help thinking that its monolithic nature is contributing in large part to the problems being described.

      1. MacroRodent

        Re: Another problem of a monolithic monster kernel

        The Linux kernel is "monolithic", but that does not mean it is not modular. It is. If you modify it, you have the know the interfaces related to your modification, but you do not have to understand all of the kernel in detail.

        For example, adding a new device driver, or maintaining one can be done without understanding all the details of file systems or scheduling.

        1. _LC_
          Thumb Down

          Re: Another problem of a monolithic monster kernel

          But you need the whole calabash of sources around and then the interface changes once more and you're *ucked.

          I went through that while building VMware patches. You always needed the fitting version, otherwise you'll get errors. Eventually I just gave up on VMware. In other words, you have to maintain it and check if it still works and build it anew with every new kernel release. That sucks and is the main reason for having so many IOT devices with ancient kernels (and tons of security issues) around.

          1. MacroRodent

            Re: Another problem of a monolithic monster kernel

            That is a different issue. The Linux kernel crew does not promise, in fact it aggressively denies, that internal kernel interfaces are stable. Only the user space interface is preserved.

            A microkernel could have the same problem, depending on the attitudes of the implementers. They might not care about having stable interfaces between the component processes.

            Personally, I think the Linux kernel should aim for some kind of stability of intra-kernel interfaces at source level, maybe breaking it only every third year or so. On the other hand, you already can use the long-term support kernel series, which already behave like that. You get breakage only when upgrading to a newer series, which you can postpone for years (https://www.kernel.org/category/releases.html).

        2. Ladis

          Re: Another problem of a monolithic monster kernel

          But you have to code it in the same (high) qualify like the rest of the kernel code (knowing all the right ways how to do which stuff). E.g. AMD and other companies' open source drivers were rejected some times. If Linux had stable ABIs people could write drivers separate from the kernel code. Yes, the quality would be lower, but the enter barrier would be much smaller (people could use even any language). The quality part of this would improve over time as it would still be open source (even when not in the language you like).

    2. Anonymous Coward
      Anonymous Coward

      Re: Another problem of a monolithic monster kernel

      Message passing micro kernels have been around since the late 60s so its not like no one has ever heard of them. If they were a good idea almost every OS kernel would be implemented that way. But they're not and their main problem is (ironically) overall system complexity and speed - or lack thereof. Message passing for basic OS functions might seem like a great whiteboard idea but in reality its a dog slow, overcomplex solution to a problem that doesn't exist.

      1. Julz

        Re: Another problem of a monolithic monster kernel

        Not necessarily dog slow. It depends up on how the message passing / switching between kernel actors/modules (or whatever you OS of choice calls them) is handled. Not too dissimilar to the normal issues around context switching from user space to kernel space for things such as system calls. They do have some inbuilt advantages as well. Device drivers tend to run completely in user space and so don't have the inconvenience (mostly) of having context switch in and out of the kernel for each buffer load of data. They also tend to fit better on top of distributed computers or multi-threaded CPUs.

        Declaration of interest; I spent some time working with Chorus Systèmes getting their micro-kernel UNIX OS working in a performant manner on an ICL massively parallel (well for the time) computer which I doubt any of you would have heard of because only three were ever sold. Again, for the time, it wasn't too shabby on the speed front being much faster for large database operations than the other equivalent UNIX big iron boxes of the time.

      2. _LC_

        Re: Another problem of a monolithic monster kernel

        Given today's CPU architectures (multi-core) this can even be beneficial, as you don't need a context switch (another thread can pick it up right away).

    3. jake Silver badge

      Re: Another problem of a monolithic monster kernel

      Oh, c'mon, really?

      This was done to death in the so-called Tanenbaum–Torvalds debate on Usenet back in the early 90s. All kinds of fanbois, sycophants, hangers-on, trolls, and various other interested parties weighed in on the subject, at very great (and boring) length.

      The final resolution? Both monolithic and micro kernels exist. Both have pros and cons. Use the one that suits your needs at the moment, and vive la différence!

      1. Terry Wrist

        Re: Another problem of a monolithic monster kernel

        Those who can do, and those who cannot lecture.

      2. _LC_
        FAIL

        Re: Another problem of a monolithic monster kernel

        They are complaining about decreasing/lack of man-power. On the other side, they are binding man-power in maintaining various longterm kernels in order to somehow counter the atrocities of having a monolithic kernel.

        Doesn't that smell funny to you?

        1. jake Silver badge

          Re: Another problem of a monolithic monster kernel

          To be fair, there are only 6 kernels in long term support (3.16.X was finally EOLed in June, and 5.6.X was initially released at the end of March of this year)). Maintenance on them isn't really all that great a burden, at least not from what I've seen.

          1. _LC_

            Re: Another problem of a monolithic monster kernel

            Really?

            Back-porting patches to changed interfaces is quite a bitch. I gave up on it, as it did eat up too much time. ;-|

      3. Anonymous Coward
        Anonymous Coward

        Re: Another problem of a monolithic monster kernel

        Erm, Jake, you ARE a troll - bit rich you lecturing other people. No wonder you're a downvote magnet with your snotty, arrogant attitude.

  11. Anonymous Coward
    Anonymous Coward

    Re: ... ...

    The Answer to Everything is stable Yes... as always (-:

    1. jake Silver badge
      Pint

      Re: ... ...

      I'll agree with you if you mean slackware-stable :-)

      1. Anonymous Coward
        Anonymous Coward

        Re: ... ...

        What a surprise, Jake being a snide twat. Shock horror! Call the papers!!

  12. Anonymous Coward
    Anonymous Coward

    I can't imagine why!

    I can't imagine why he has trouble attracting maintainers. Perhaps it's his language and attitude? He wouldn't get away with this at a large professional / valley company.

    I considered getting involved a few years back but decided not to because the environment is so toxic. Why would I want to volunteer lots of my time to be potentially treated like crap, or watch others get belittled or treated like crap? A number of years ago he promised to change, but he only mellowed for a while then he got worse again. His problem is he never spent a good amount of time in a large professional company to round him out and have him mature.

    Life is too short. Someone else can do it if it turns them on.

    1. jake Silver badge

      Re: I can't imagine why!

      Don't believe the bullshit spouted by the curtain-twitchers and hand-wringers. The environment isn't toxic at all. If it was, I wouldn't have been contributing for over a quarter century.

      Unless your skin is so thin it tears when you get out of bed in the morning, that is.

      1. Anonymous Coward
        Anonymous Coward

        Re: I can't imagine why!

        You sound horrible, mocking people for having thin skin.

        Says everything really. You're a troll.

POST COMMENT House rules

Not a member of The Register? Create a new account here.

  • Enter your comment

  • Add an icon

Anonymous cowards cannot choose their icon

Other stories you might like