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

GAFAM "doesn't depend on any sort of lock-in, humans just don't want to be free anymore," according to MinceR
As many readers are aware, our criticism of UEFI (restricted boot in particular) attracted a lot of online harassment against us, including stalking and libel
The Register MS Has Just Been Paid to Promote the Ponzi Scheme Some More ("AI" Keyword Stuffing)
This won't end well for The Register MS
Perpetuating the Lie of "No Red Hat Layoffs" Because of the Bluewashing (Red Hat Became Just "IBM")
Many Red Hat employees were pushed out and/or removed lately
EPO People Power - Part XIII - If the EPO's Chief Propagandist (Berenguer) Told the Police He Was a Spanish Tourist (or Similar) or That He Does Not Reside in Munich, Then He May Have Lied to the Police (in Addition to Doing Cocaine in Public)
Lying to the police in Germany is a criminal offense
 
Claims of More IBM Layoffs a Week Before 'Christmas Week'
Of course, as usual, nobody in the media says anything
Wrapping Up and Ending "Slopwatch"
An "end-of-life" improvement
Gemini Links 15/12/2025: How We Lost Communication to Entertainment, Dichotomy Between the Real and the Digital
Links for the day
The New Chief Editor at The Register MS is a Microsofter, Now They Increase Microsoft Coverage and Add Microsoft Slant to 'Linux' Coverage
Did Microsoft pay some more?
IBM Layoffs in India and IBM's CEO Spins His Lack of Market Share as a Strength
If this leadership carries on, the only red left at IBM won't be Red Hat but a red stain
Links 15/12/2025: "Life in Prison" for Criticising China, Tikhanovskaya Says 'Pressure Works'
Links for the day
Due to 'Secure Boot' (An Anti-Security Measure, a Kill Switch) Computer Users Are Afraid of GNU/Linux
This is what Microsoft wanted
'Crypto' 'Currencies' Are a Ponzi Scheme. So Is "AI". Both Destroy the Planet, Not Just the Economy.
Believe it or not, millions of these GPUs just sit there boxed, unopened, unconnected, unused
Microsoft Colonialism in Africa is Not Sustainable
Microsoft's situation in Nigeria is not
Links 15/12/2025: Chromebooks as Work Machines, "Americans [Who] Moved to Australia" to Avoid Cheeto
Links for the day
Breaking Your Proprietary Router in the Name of "Security"
Each time they "patch" the router something that previously worked OK is likely to just break
IBM May be Breaking the Law to Silence Staff It Laid Off
Observation to add regarding IBM layoffs
Demonisation Attacks on Richard Matthew Stallman (RMS) - Including Antisemitic Attacks - Have Not Worked
Name-calling doesn't work
Slop ("AI") Will Replace People and Take Away Jobs, Say the Slopfarms With Fake (LLM-Generated) Text and Slop Images
"AI" often means slave labour in a poor country
More Than a Million Bytes Should be Enough for Most Computer Programs
Who said computing would improve over time?
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Sunday, December 14, 2025
IRC logs for Sunday, December 14, 2025
Another "AI" (Slop) Use Cases Turns Out to be a Fraud
Those who talk about this fraud get SLAPPed
They Say Rules Are Made to be Broken, at Microsoft That Became an Imperative (e.g. Accounting Fraud, Bribery and So on)
Its biggest client is itself
In Russia, Microsoft is Already a Dying Breed Online
A lot of Europe also dumps Microsoft. Europe is a big revenue source of Microsoft.
The Future of News on the World Wide Web
No "greener pastures" on the Web
𝐈𝐁𝐌 𝐂𝐄𝐎 𝐀𝐫𝐯𝐢𝐧𝐝 𝐊𝐫𝐢𝐬𝐡𝐧𝐚: Proof That at IBM People Fall Upwards
IBM is collapsing
EPO People Power - Part XII - The Mobbing Got So Bad People Were Unable to Work
What's at stake here isn't just the EPO or the patent system
Links 14/12/2025: "Chile to ban smartphones in classroom" and "Portugal updates cybercrime law to exempt security researchers"
Links for the day
Gemini Links 14/12/2025: "GUI TUI CLI" and EmacsConf 2025 Video
Links for the day
Links 14/12/2025: Tensions in Asia, US Making Deals With Belarus
Links for the day
A Utopian and Very Dumb Vision of Technology, Based on Accounting Fraud
the "industry" has become insane and a lot of "the media" is going along with it
Links 14/12/2025: "The Slop of Things to Come", Goldman Sachs Nervous About Slop Bubble
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Saturday, December 13, 2025
IRC logs for Saturday, December 13, 2025
Google News is Google Noise
Google News is really hopeless, even on weekends
IBM: We Pay You to be Obedient or Deny You What You're Entitled to If You Don't Act Obediently
Good luck starting legal battles with a company that has almost as many lawyers (including aggressive patent lawyers) as it has geeks
Links 13/12/2025: Jimmy Lai and Media Freedom on Trial, "OpenAI Researcher Quits, Saying Company Hiding the Truth"
Links for the day
Gemini Links 13/12/2025: Extensive Catchup With Gopherholes
Links for the day
Deliberate Lies or Glaring Distortions
Calling Torvalds anything "Soviet" or "Russian" would overlook the fact he comes from Finland and has Swedish roots
Canonical and Ubuntu: Working for Microsoft, Promoting Proprietary Surveillance (Dis)Services
Canonical started with a rich and overambitious Debian Developer. He wanted to become richer.
Russian "Hybrid Attacks" Are Typically Microsoft TCO and/or Windows TCO (Total Cost of Ownership)
Information-related warfare relies a lot on computer systems
EPO People Power - Part XI - The Media in Europe is Ill and Complicit in Ills
We must all recognise that there's a problem here
Running With Technology
At least they always run Linux (all of them, since 2015)
Dealing With "Tech Cults"
If you think you identified a "Tech Cult", walk away
It Seems Like IBM is Firing 'Everybody' (Anywhere, Any Age, No Matter What Team)
Healthy companies would sack IBM's management (sacked by Board, bylaws etc.) but IBM is a sick company
Latest Stallman Talk (Event in Argentina) Published
Less than a day ago they released his talk
GAFAM is a Financial Problem and Sovereignty Risk, a Policy-Level (National Level) Boycott is Needed
Europe has plenty of skilled computer engineers
LLM Slop Becoming Rarer
Today we've found no LLM slop in our RSS feeds regarding "Linux"
2026 Could Very Well be Last Year of XBox, Microsoft Dropped the Ball
It would be shocking is XBox can stage any kind of comeback
Links 13/12/2025: Social Control Media Bans and "Could Finland be Hiding a Blue Zone?"
Links for the day
Expecting Mass Layoffs, More Microsoft Workers Join Unions
they see tough times ahead
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Friday, December 12, 2025
IRC logs for Friday, December 12, 2025