]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
fix up some changelog issues that quilt has :(
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Aug 2025 09:20:09 +0000 (11:20 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Aug 2025 09:20:09 +0000 (11:20 +0200)
queue-6.15/sphinx-kernel_abi-fix-performance-regression-with-o-.patch
queue-6.16/sphinx-kernel_abi-fix-performance-regression-with-o-.patch

index 1b595560a223d77cb6fd242f0fcb0568cb45eb17..aa8ab347d1aacc2b7c05b62d81bf1da3b70e9016 100644 (file)
@@ -27,27 +27,27 @@ $ time make O=/tmp/foo SPHINXDIRS=admin-guide htmldocs
 To get the root cause of the problem (ABI files reported as changed),
 I used this changeset:
 
-       diff --git a/Documentation/conf.py b/Documentation/conf.py
-       index e8766e689c1b..ab486623bd8b 100644
-       --- a/Documentation/conf.py
-       +++ b/Documentation/conf.py
-       @@ -571,3 +571,16 @@ def setup(app):
-            """Patterns need to be updated at init time on older Sphinx versions"""
-
-            app.connect('config-inited', update_patterns)
-       +    app.connect('env-get-outdated', on_outdated)
-       +
-       +def on_outdated(app, env, added, changed, removed):
-       +    """Track cache outdated due to added/changed/removed files"""
-       +    print("\n[OUTDATED]")
-       +    print(f"Added: {added}")
-       +    print(f"Changed: {changed}")
-       +    print(f"Removed: {removed}")
-       +    print(f"All docs count: {len(env.all_docs)}")
-       +    print(f"Found docs count: {len(env.found_docs)}")
-       +
-       +    # Just return what we have
-       +    return added | changed | removed
+#      diff --git a/Documentation/conf.py b/Documentation/conf.py
+#      index e8766e689c1b..ab486623bd8b 100644
+#      --- a/Documentation/conf.py
+#      +++ b/Documentation/conf.py
+#      @@ -571,3 +571,16 @@ def setup(app):
+#           """Patterns need to be updated at init time on older Sphinx versions"""
+#
+#           app.connect('config-inited', update_patterns)
+#      +    app.connect('env-get-outdated', on_outdated)
+#      +
+#      +def on_outdated(app, env, added, changed, removed):
+#      +    """Track cache outdated due to added/changed/removed files"""
+#      +    print("\n[OUTDATED]")
+#      +    print(f"Added: {added}")
+#      +    print(f"Changed: {changed}")
+#      +    print(f"Removed: {removed}")
+#      +    print(f"All docs count: {len(env.all_docs)}")
+#      +    print(f"Found docs count: {len(env.found_docs)}")
+#      +
+#      +    # Just return what we have
+#      +    return added | changed | removed
 
 Reported-by: Akira Yokosawa <akiyks@gmail.com>
 Closes: https://lore.kernel.org/linux-doc/c174f7c5-ec21-4eae-b1c3-f643cca90d9d@gmail.com/
index 09cf44e4e1d335e61d75ce17ec27c1f8ff4eca40..9a23d0ebeb9299b2433a4b78dfa6e34be76dfa6d 100644 (file)
@@ -27,27 +27,27 @@ $ time make O=/tmp/foo SPHINXDIRS=admin-guide htmldocs
 To get the root cause of the problem (ABI files reported as changed),
 I used this changeset:
 
-       diff --git a/Documentation/conf.py b/Documentation/conf.py
-       index e8766e689c1b..ab486623bd8b 100644
-       --- a/Documentation/conf.py
-       +++ b/Documentation/conf.py
-       @@ -571,3 +571,16 @@ def setup(app):
-            """Patterns need to be updated at init time on older Sphinx versions"""
-
-            app.connect('config-inited', update_patterns)
-       +    app.connect('env-get-outdated', on_outdated)
-       +
-       +def on_outdated(app, env, added, changed, removed):
-       +    """Track cache outdated due to added/changed/removed files"""
-       +    print("\n[OUTDATED]")
-       +    print(f"Added: {added}")
-       +    print(f"Changed: {changed}")
-       +    print(f"Removed: {removed}")
-       +    print(f"All docs count: {len(env.all_docs)}")
-       +    print(f"Found docs count: {len(env.found_docs)}")
-       +
-       +    # Just return what we have
-       +    return added | changed | removed
+#      diff --git a/Documentation/conf.py b/Documentation/conf.py
+#      index e8766e689c1b..ab486623bd8b 100644
+#      --- a/Documentation/conf.py
+#      +++ b/Documentation/conf.py
+#      @@ -571,3 +571,16 @@ def setup(app):
+#           """Patterns need to be updated at init time on older Sphinx versions"""
+#
+#           app.connect('config-inited', update_patterns)
+#      +    app.connect('env-get-outdated', on_outdated)
+#      +
+#      +def on_outdated(app, env, added, changed, removed):
+#      +    """Track cache outdated due to added/changed/removed files"""
+#      +    print("\n[OUTDATED]")
+#      +    print(f"Added: {added}")
+#      +    print(f"Changed: {changed}")
+#      +    print(f"Removed: {removed}")
+#      +    print(f"All docs count: {len(env.all_docs)}")
+#      +    print(f"Found docs count: {len(env.found_docs)}")
+#      +
+#      +    # Just return what we have
+#      +    return added | changed | removed
 
 Reported-by: Akira Yokosawa <akiyks@gmail.com>
 Closes: https://lore.kernel.org/linux-doc/c174f7c5-ec21-4eae-b1c3-f643cca90d9d@gmail.com/