Bonum Certa Men Certa

Intel, Facing Mass Layoffs (Including Many Key Engineers Who Work on Linux Kernel), is Pushing for Slop Inside Linux

posted by Roy Schestowitz on Nov 17, 2025,
updated Nov 17, 2025

Recent 'Vibe Coding' Doesn't Work

Linux and slop were debated in LWN several times recently. GAFAM et al were lobbying to externalise costs by offloading to LLMs, replacing proper, well-tested code (and documentation thereof) with slop.

Terrible idea!

In their own words (this past Friday):

From: Dave Hansen <dave.hansen@linux.intel.com>
To: dave@sr71.net
Cc: Dave Hansen <dave.hansen@linux.intel.com>,
        Shuah Khan <shuah@kernel.org>, Kees Cook <kees@kernel.org>,
        Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
        Miguel Ojeda <ojeda@kernel.org>, NeilBrown <neilb@ownmail.net>,
        Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
        Dan Williams <dan.j.williams@intel.com>,
        Theodore Ts'o <tytso@mit.edu>, Sasha Levin <sashal@kernel.org>,
        Jonathan Corbet <corbet@lwn.net>,
        Vlastimil Babka <vbabka@suse.cz>,
        workflows@vger.kernel.org, ksummit@lists.linux.dev
Subject: [PATCH] [v3] Documentation: Provide guidelines for tool-generated content
Date: Fri, 14 Nov 2025 10:35:28 -0800   [thread overview]
Message-ID: <20251114183528.1239900-1-dave.hansen@linux.intel.com> (raw)

In the last few years, the capabilities of coding tools have exploded. As those capabilities have expanded, contributors and maintainers have more and more questions about how and when to apply those capabilities.
Add new Documentation to guide contributors on how to best use kernel development tools, new and old.
Note, though, there are fundamentally no new or unique rules in this new document. It clarifies expectations that the kernel community has had for many years. For example, researchers are already asked to disclose the tools they use to find issues in Documentation/process/researcher-guidelines.rst. This new document just reiterates existing best practices for development tooling.
In short: Please show your work and make sure your contribution is easy to review.
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Reviewed-by: Shuah Khan <shuah@kernel.org> Reviewed-by: Kees Cook <kees@kernel.org> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Miguel Ojeda <ojeda@kernel.org> Cc: NeilBrown <neilb@ownmail.net> Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> Cc: Dan Williams <dan.j.williams@intel.com> Cc: Theodore Ts'o <tytso@mit.edu> Cc: Sasha Levin <sashal@kernel.org> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: workflows@vger.kernel.org Cc: ksummit@lists.linux.dev
--
There has been a ton of feedback since v2. Thanks everyone! I've tried to respect all of the feedback, but some of it has been contradictory and I haven't been able to incorporate everything.
Please speak up if I missed something important here.
Changes from v2: * Mention testing (Shuah) * Remove "very", rename LLM => coding assistant (Dan) * More formatting sprucing up and minor typos (Miguel) * Make changelog and text less flashy (Christian) * Tone down critical=>helpful (Neil)
Changes from v1: * Rename to generated-content.rst and add to documentation index. (Jon) * Rework subject to align with the new filename * Replace commercial names with generic ones. (Jon) * Be consistent about punctuation at the end of bullets for whole sentences. (Miguel) * Formatting sprucing up and minor typos (Miguel)
This document was a collaborative effort from all the members of the TAB. I just reformatted it into .rst and wrote the changelog. --- Documentation/process/generated-content.rst | 96 +++++++++++++++++++++ Documentation/process/index.rst | 1 + 2 files changed, 97 insertions(+) create mode 100644 Documentation/process/generated-content.rst
diff --git a/Documentation/process/generated-content.rst b/Documentation/process/generated-content.rst new file mode 100644 index 0000000000000..acdf23819d685 --- /dev/null +++ b/Documentation/process/generated-content.rst @@ -0,0 +1,96 @@ +============================================ +Kernel Guidelines for Tool Generated Content +============================================ + +Purpose +======= + +Kernel contributors have been using tooling to generate contributions +for a long time. These tools can increase the volume of contributions. +At the same time, reviewer and maintainer bandwidth is a scarce +resource. Understanding which portions of a contribution come from +humans versus tools is helpful to maintain those resources and keep +kernel development healthy. + +The goal here is to clarify community expectations around tools. This +lets everyone become more productive while also maintaining high +degrees of trust between submitters and reviewers. + +Out of Scope +============ + +These guidelines do not apply to tools that make trivial tweaks to +preexisting content. Nor do they pertain to AI tooling that helps with +menial tasks. Some examples: + + - Spelling and grammar fix ups, like rephrasing to imperative voice + - Typing aids like identifier completion, common boilerplate or + trivial pattern completion + - Purely mechanical transformations like variable renaming + - Reformatting, like running Lindent, ``clang-format`` or + ``rust-fmt`` + +Even if your tool use is out of scope you should still always consider +if it would help reviewing your contribution if the reviewer knows +about the tool that you used. + +In Scope +======== + +These guidelines apply when a meaningful amount of content in a kernel +contribution was not written by a person in the Signed-off-by chain, +but was instead created by a tool. + +Detection of a problem and testing the fix for it is also part of the +development process; if a tool was used to find a problem addressed by +a change, that should be noted in the changelog. This not only gives +credit where it is due, it also helps fellow developers find out about +these tools. + +Some examples: + - Any tool-suggested fix such as ``checkpatch.pl --fix`` + - Coccinelle scripts + - A chatbot generated a new function in your patch to sort list entries. + - A .c file in the patch was originally generated by a coding + assistant but cleaned up by hand. + - The changelog was generated by handing the patch to a generative AI + tool and asking it to write the changelog. + - The changelog was translated from another language. + +If in doubt, choose transparency and assume these guidelines apply to +your contribution. + +Guidelines +========== + +First, read the Developer's Certificate of Origin: +Documentation/process/submitting-patches.rst. Its rules are simple +and have been in place for a long time. They have covered many +tool-generated contributions. Ensure that you understand your entire +submission and are prepared to respond to review comments. + +Second, when making a contribution, be transparent about the origin of +content in cover letters and changelogs. You can be more transparent +by adding information like this: + + - What tools were used? + - The input to the tools you used, like the Coccinelle source script. + - If code was largely generated from a single or short set of + prompts, include those prompts. For longer sessions, include a + summary of the prompts and the nature of resulting assistance. + - Which portions of the content were affected by that tool? + - How is the submission tested and tools used to test the fix? + +As with all contributions, individual maintainers have discretion to +choose how they handle the contribution. For example, they might: + + - Treat it just like any other contribution. + - Reject it outright. + - Treat the contribution specially like reviewing with extra scrutiny, + or at a lower priority than human-generated content + - Suggest a better prompt instead of suggesting specific code changes. + - Ask for some other special steps, like asking the contributor to + elaborate on how the tool or model was trained. + - Ask the submitter to explain in more detail about the contribution + so that the maintainer can feel comfortable that the submitter fully + understands how the code works. diff --git a/Documentation/process/index.rst b/Documentation/process/index.rst index aa12f26601949..e1a8a31389f53 100644 --- a/Documentation/process/index.rst +++ b/Documentation/process/index.rst @@ -68,6 +68,7 @@ beyond). stable-kernel-rules management-style researcher-guidelines + generated-content Dealing with bugs ----------------- -- 2.34.1

This will certainly lessen the reliability of Linux code and worsen stability, as testing code made by machines is far from trivial and it can be subpar, performance-wise. Put another way, this will also harm the environment (much like slop training and prompting, set aside the legal issues of harvesting).

With Intel and GAFAM inside the Linux Foundation's Linux Kernel Code of Conduct (CoC) we can expect that antagonising the above would be deemed a CoC violation.

Well the real Linus please stand up?

Other Recent Techrights' Posts

Loads of People Exit IBM Tomorrow
Way to slam the door on on those who march or walk on
 
Links 04/12/2025: "People Hooked on [Slop] Far Are More Likely to Experience Mental Distress", Monopolies in Europe, and "Blogging Makes Me Feel Like A Worse Writer"
Links for the day
Dr. Andy Farnell: Can we regain control (of technology)?
"Technology as spiralling mass hysteria has the unsettling potential to draw even rational sceptics like myself into disaffection"
Links 04/12/2025: "Hey Hi" Implosion and Half of Europeans See Cheeto Trump as Enemy of Europe
Links for the day
Communication Needs Open Standards and Open Data
Standards are imperative
The "Hey Hi" House of Cards
The "Hey Hi" bubble is living on borrowed time (days or weeks) and it can implode any time now
Supporting the Free Software Foundation (FSF) Also Supports GNU Development
The FSF is mostly raising money to pay salaries
IBM's "AK Sez" Campaign
In today's media, to be characterised as important and smart one needn't be important and smart
Microsoft's Vista 11 Not Gaining, Just Plateauing or Even Going Down (Over Time)
"Desktop Windows version Market Share Worldwide"
Bubbles Popping, "Hey Hi" (AI) a Passing Fad
"Microsoft slides amid report it's cutting software sales quotas tied to AI"
At The Register MS, "Exclusive Webinar" Means Sponsored Video Ad Disguised as an Article
Why would one choose to watch these?
IBM Forces Staff to Sign an NDA If They Want Severance Package, in Effect Bribing Them or Denying Them Money They're Entitled to If They 'Disparage' IBM
We wrote about the legality or illegality of this in relation to Microsoft two years ago
IBM and Red Hat Not Done With 2025 Layoffs ("RAs") Yet
IBM isn't quite done laying off people this year, with only 3 weeks till Christmas
Gemini Links 04/12/2025: Christmas Looms, Devuan, and Programming
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Wednesday, December 03, 2025
IRC logs for Wednesday, December 03, 2025
Slopwatch: It's Blowing, Jim (Gym), the Bubble is Blowing Up
Let's race to "zero GPT"
At IBM, "Last Day" Can be Same as Layoffs ("RAs"), Might be Euphemism Advanced by PR/HR Under NDA-Tied Conditions
They try to act all happy cheerful (in public) about becoming unemployed
Links 03/12/2025: "Disastrous Hey Hi (AI)", Breaches of Confidentiality, and "Global Democratic Recession"
Links for the day
Fake Security and 'Free' Certificates as a Trap of Planned Obsolescence and Top-Down Centralisation
The boiling frogs
Links 03/12/2025: UK Budget Leak and Criticism of Peace Posturing Over Ukraine
Links for the day
So Far Rust in Ubuntu Has Turned Out to be an Expensive Mistake
it is certainly seeming or feeling like the wrong people are in charge and they make bad decisions based on false reasoning
Gemini Links 03/12/2025: Obsession, Ubuntu, and Programming With Scheme
Links for the day
The Next Stages of EPO Coverage (and Why That Matters)
What's at stake here?
Wayland Rejection Is Not Racist
We need to collectively reject that
Reflections on a Month of Techrights Search
it looks like we've survived nearly a month without the search functionality being leveraged to stage DDoS attacks
New Year's Resolutions 4 Weeks Ahead of 2026
the main New Year's Resolution was... sleep
IBM Layoffs: It's Like They Read From a Script, Like They've Signed a Non-Disparagement Agreement/Clause
Some new departures
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, December 02, 2025
IRC logs for Tuesday, December 02, 2025
Keep the Pressure Up at Europe's Second-Largest Institution, the EPO
Some of the information concerns corruption, not just "money issues"
"The News" is Sponsored and It Lies (for Money), It Even Makes Up Phony Rankings
Many people exit IBM this month
Links 02/12/2025: Microsoft SharePoint Exploited, Openwashing Still a Thing, Europe Want a Seat at the Table With Russia Negotiations
Links for the day
Gemini Links 02/12/2025: Kentucky, Resilience, Raspberry Pi Pico, and Efficient Route Metrics
Links for the day
Steam Survey Signals Steep GNU/Linux Growth
the new (and latest) figures from Steam Survey affirm a trend of steady GNU/Linux growth
Short Survey of Past Media Coverage About Campinos, EUIPO, and a Call for Action on EPO Press Coverage
Of course Campinos got a sniff or a taste of lawlessness and impunity in Spain. Then he exported that to Germany.
Links 02/12/2025: "Around 500 million PCs are holding off upgrading to Windows 11" and "LLMs are a failure"
Links for the day
IBM's CEO Now on a Buzzwords Propaganda Tour
truly ridiculous
Attempts to Censor People Are a Sign That Arguments Were Lost, Gagging the Opposition Attempted Instead
no matter how supposedly "prestigious" an institution may be, it can still be corrupt and intolerant of criticism
"The Mafia" at the EPO Now Attacks Staff That Points Out Misconduct at the EPO
portraying the criticism as the real problem rather than the behaviour being criticised
Tomi Ahonen's Site is Gone, Memory-holed by Typepad's Shutdown
They had people assigned to do books to rewrite history and pretend that this sabotage never happened
Many IBM Layoffs Revealed This Week, Probably to Peak ("Last Day") December 4th
"In recent years, Executives and Upper management is hired from business schools, these people have no technical background. Technical people became slide makers and meetings organizers, thus, mediocrity became the rule. IBM is at the end of the road, slow death and embarrassment."
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Monday, December 01, 2025
IRC logs for Monday, December 01, 2025