Skip to content

Commit 5155967

Browse files
committed
Rebuild rocky9_2 with kernel-5.14.0-284.30.1.el9_2
Rebuild_History BUILDABLERebuilding Kernel from rpm changelog with Fuzz Limit: 87.50% Number of commits in upstream range v4.18~1..master: 488125 Number of commits in rpm: 628 Number of commits matched with upstream: 607 (96.66%) Number of commits in upstream but not in rpm: 487519 Number of commits NOT found in upstream: 21 (3.34%) Rebuilding Kernel on Branch rocky9_2_rebuild_kernel-5.14.0-284.30.1.el9_2 for kernel-5.14.0-284.30.1.el9_2 Clean Cherry Picks: 493 (81.22%) Empty Cherry Picks: 109 (17.96%) _______________________________ Full Details Located here: ciq/ciq_backports/kernel-5.14.0-284.30.1.el9_2/rebuild.details.txt Includes: * git commit header above * Empty Commits with upstream SHA * RPM ChangeLog Entries that could not be matched Individual Empty Commit failures contained in the same containing directory. The git message for empty commits will have the path for the failed commit. File names are the first 8 characters of the upstream SHA
1 parent 3a6b90e commit 5155967

File tree

3,436 files changed

+22035
-15496
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,436 files changed

+22035
-15496
lines changed
File renamed without changes.

Documentation/networking/device_drivers/atm/cxacru-cf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#! /usr/bin/python3 -s
22
# Copyright 2009 Simon Arlott
33
#
44
# This program is free software; you can redistribute it and/or modify it

Documentation/networking/device_drivers/ethernet/intel/ice.rst

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -84,24 +84,6 @@ Once the VM shuts down, or otherwise releases the VF, the command will
8484
complete.
8585

8686

87-
Important notes for SR-IOV and Link Aggregation
88-
-----------------------------------------------
89-
Link Aggregation is mutually exclusive with SR-IOV.
90-
91-
- If Link Aggregation is active, SR-IOV VFs cannot be created on the PF.
92-
- If SR-IOV is active, you cannot set up Link Aggregation on the interface.
93-
94-
Bridging and MACVLAN are also affected by this. If you wish to use bridging or
95-
MACVLAN with SR-IOV, you must set up bridging or MACVLAN before enabling
96-
SR-IOV. If you are using bridging or MACVLAN in conjunction with SR-IOV, and
97-
you want to remove the interface from the bridge or MACVLAN, you must follow
98-
these steps:
99-
100-
1. Destroy SR-IOV VFs if they exist
101-
2. Remove the interface from the bridge or MACVLAN
102-
3. Recreate SRIOV VFs as needed
103-
104-
10587
Additional Features and Configurations
10688
======================================
10789

Documentation/networking/rxrpc.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,8 +880,8 @@ The kernel interface functions are as follows:
880880

881881
notify_end_rx can be NULL or it can be used to specify a function to be
882882
called when the call changes state to end the Tx phase. This function is
883-
called with the call-state spinlock held to prevent any reply or final ACK
884-
from being delivered first.
883+
called with a spinlock held to prevent the last DATA packet from being
884+
transmitted until the function returns.
885885

886886
(#) Receive data from a call::
887887

Documentation/sphinx/kernel_include.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#! /usr/bin/python3 -s
22
# -*- coding: utf-8; mode: python -*-
33
# pylint: disable=R0903, C0330, R0914, R0912, E0401
44

Documentation/sphinx/maintainers_include.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#! /usr/bin/python3 -s
22
# SPDX-License-Identifier: GPL-2.0
33
# -*- coding: utf-8; mode: python -*-
44
# pylint: disable=R0903, C0330, R0914, R0912, E0401

Documentation/sphinx/rstFlatTable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#! /usr/bin/python3 -s
22
# -*- coding: utf-8; mode: python -*-
33
# pylint: disable=C0330, R0903, R0912
44

Documentation/target/tcm_mod_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#! /usr/bin/python3 -s
22
# The TCM v4 multi-protocol fabric module generation script for drivers/target/$NEW_MOD
33
#
44
# Copyright (c) 2010 Rising Tide Systems

Documentation/trace/postprocess/decode_msr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#! /usr/bin/python3 -s
22
# add symbolic names to read_msr / write_msr in trace
33
# decode_msr msr-index.h < trace
44
import sys

Documentation/translations/zh_CN/process/magic-number.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Linux 魔术数
2525
...
2626
};
2727

28-
当你以后给内核添加增强功能的时候,请遵守这条规则!这样就会节省数不清的调试时间,特别是一些古怪的情况,例如,数组超出范围并且重新写了超出部分。遵守这个规则,这些情况可以被快速地,安全地避免。
28+
当你以后给内核添加增强功能的时候,请遵守这条规则!这样就会节省数不清的调试时间,特别是一些古怪的情况,例如,数组超出范围并且重新写了超出部分。遵守这个规则,这些情况可以被快速地,安全地避免。
2929

3030
Theodore Ts'o
3131
31 Mar 94

0 commit comments

Comments
 (0)