All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] CODING_STYLE: Establish a policy with regards to copyright notices
@ 2026-01-27 18:24 Alejandro Vallejo
  2026-01-28  7:04 ` Jan Beulich
  2026-01-28  8:10 ` Roger Pau Monné
  0 siblings, 2 replies; 13+ messages in thread
From: Alejandro Vallejo @ 2026-01-27 18:24 UTC (permalink / raw)
  To: xen-devel
  Cc: Alejandro Vallejo, Andrew Cooper, Anthony PERARD, Michal Orzel,
	Jan Beulich, Julien Grall, Roger Pau Monné,
	Stefano Stabellini

This patch modifies CODING_STYLE to severely discourage use of copyright
notices when their presence is not legally mandatory.

Copyright notices are redundant on commit, misleading from the time the file
receives contributions from anyone not represented by such notice, and actively
harmful for attribution by the time the original code is long gone. They are
plain wrong when added on code motion.... the list goes on.

All attribution worth keeping is version-controlled through Signed-off-by,
Co-authored and the like, DCO and the cumulative contents of git history.
License banners have already been superseded by the contents of licenses/ and
SPDX tags.

Other FOSS projects have already moved away from explicit copyright notices
where possible, and severely discourage their use when not.

Apache and LLVM take active issue with copyrighted contributions and Chromium
takes issues with copyrighted contributions not attributed to the project. Some
Linux subsystem maintainers already frown upon copyright notices too, even if
it hasn't reached the point of being a mandated requirement yet.

Signed-off-by: Alejandro Vallejo <alejandro.garciavallejo@amd.com>
---
The actual changes are almost verbatim from the LLVM guideline, but it's not
exact. Wording can be adjusted as needed. I care about the core of the proposal.
Saying "please, drop the notice" on contributions where it's clearly not a
legal requirement, or have the contributor state that it is a legal requirement
and why. For fairness sake for all contributors to the project.

I'd prefer taking the Apache approach for new contributions, but I want
some discussions to happen first.

Thoughts?

Relevant examples:

  - LLVM: They banned copyright notices, unless part of a vendored
    components.
    - Links:
      - https://llvm.org/docs/DeveloperPolicy.html#embedded-copyright-or-contributed-by-statements
    - Relevant quote:
        The LLVM project does not accept contributions that include
        in-source copyright notices except where such notices are
        part of a larger external project being added as a vendored
        dependency.

  - Apache: They banned optional copyright notices and relegated
            mandatory notices to a NOTICES file that also contains an
            Apache copyright notice. See links.
    - Links:
       - https://www.apache.org/legal/src-headers.html
       - https://infra.apache.org/licensing-howto.html#mod-notice
    - Relevant quote:
        If the source file is submitted with a copyright notice included
        in it, the copyright owner (or owner's agent) must either:
          * remove such notices, or
          * move them to the NOTICE file associated with each applicable
            project release, or
          * provide written permission for the ASF to make such removal
            or relocation of the notices.

  - btrfs: They are highly discouraged.
    - Links:
      - https://lore.kernel.org/20220909101521.GS32411@twin.jikos.cz/
      - https://lwn.net/ml/linux-fsdevel/20221026074145.2be5ca09@gandalf.local.home/
      - https://archive.kernel.org/oldwiki/btrfs.wiki.kernel.org/index.php/Developer's_FAQ.html#Copyright_notices_in_files.2C_SPDX
      - https://lwn.net/Articles/912355/
    - Relevant quote:
      Let's say it's OK for substantial amount of code. What if somebody
      moves existing code that he did not write to a new file and adds
      a copyright notice? We got stuck there, both sides have different
      answer. I see it at minimum as unfair to the original code authors
      if not completely wrong because it could appear as "stealing"
      ownership.

There's more cases of other projects taking similar stances.
---
 CODING_STYLE | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/CODING_STYLE b/CODING_STYLE
index aae5a47ac2..97f80245ed 100644
--- a/CODING_STYLE
+++ b/CODING_STYLE
@@ -24,6 +24,24 @@ license, e.g.:
 
 See LICENSES/ for a list of licenses and SPDX tags currently used.
 
+Copyright notices
+-----------------
+
+Copyright for the code in the Xen Project is held by the respective
+contributors. Because you (or your company) retain ownership of the code you
+contribute, you know it may only be used under the terms of the open source
+license you contributed it under: the license for your contributions cannot be
+changed in the future without your approval.
+
+The Xen Project does not accept contributions that include in-source copyright
+notices except in the following cases:
+  * where a committed file already contains it.
+  * where a committed file is renamed.
+  * where such notices are on files from an external project being imported.
+
+The best way to track contributions is through revision control history. See DCO
+under CONTRIBUTING for existing mechanisms of attribution.
+
 MISRA C
 -------
 

base-commit: 02bbdda863697096b63e83c2c0a37aa167045476
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2026-01-28 22:07 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-27 18:24 [RFC PATCH] CODING_STYLE: Establish a policy with regards to copyright notices Alejandro Vallejo
2026-01-28  7:04 ` Jan Beulich
2026-01-28  9:09   ` Alejandro Vallejo
2026-01-28 10:45     ` Jan Beulich
2026-01-28 11:14       ` Alejandro Vallejo
2026-01-28 11:32       ` Alejandro Vallejo
2026-01-28 22:07         ` Stefano Stabellini
2026-01-28  8:10 ` Roger Pau Monné
2026-01-28  9:18   ` Alejandro Vallejo
2026-01-28  9:41     ` Roger Pau Monné
2026-01-28 10:16       ` Alejandro Vallejo
2026-01-28 10:31         ` Roger Pau Monné
2026-01-28 11:13           ` Alejandro Vallejo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.