From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Piotr Skajewski <piotrx.skajewski@intel.com>,
Dave Switzer <david.switzer@intel.com>,
Tony Nguyen <anthony.l.nguyen@intel.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 132/202] ixgbe: Remove non-inclusive language
Date: Wed, 21 Feb 2024 14:07:13 +0100 [thread overview]
Message-ID: <20240221125935.973314901@linuxfoundation.org> (raw)
In-Reply-To: <20240221125931.742034354@linuxfoundation.org>
4.19-stable review patch. If anyone has any objections, please let me know.
------------------
From: Piotr Skajewski <piotrx.skajewski@intel.com>
[ Upstream commit 93b067f154b3edfd3d75a272fd9433bf787e2e1d ]
Remove non-inclusive language from the driver.
Additionally correct the duplication "from from"
reported by checkpatch after the changes above.
Signed-off-by: Piotr Skajewski <piotrx.skajewski@intel.com>
Tested-by: Dave Switzer <david.switzer@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Stable-dep-of: bbc404d20d1b ("ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550()")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
.../net/ethernet/intel/ixgbe/ixgbe_common.c | 36 +++++++++----------
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 4 +--
drivers/net/ethernet/intel/ixgbe/ixgbe_type.h | 10 +++---
3 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
index 39c5e6fdb72c..162adcc2bc9d 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
@@ -30,7 +30,7 @@ static s32 ixgbe_write_eeprom_buffer_bit_bang(struct ixgbe_hw *hw, u16 offset,
u16 words, u16 *data);
static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw,
u16 offset);
-static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw);
+static s32 ixgbe_disable_pcie_primary(struct ixgbe_hw *hw);
/* Base table for registers values that change by MAC */
const u32 ixgbe_mvals_8259X[IXGBE_MVALS_IDX_LIMIT] = {
@@ -746,10 +746,10 @@ s32 ixgbe_stop_adapter_generic(struct ixgbe_hw *hw)
usleep_range(1000, 2000);
/*
- * Prevent the PCI-E bus from from hanging by disabling PCI-E master
+ * Prevent the PCI-E bus from hanging by disabling PCI-E primary
* access and verify no pending requests
*/
- return ixgbe_disable_pcie_master(hw);
+ return ixgbe_disable_pcie_primary(hw);
}
/**
@@ -2506,15 +2506,15 @@ static u32 ixgbe_pcie_timeout_poll(struct ixgbe_hw *hw)
}
/**
- * ixgbe_disable_pcie_master - Disable PCI-express master access
+ * ixgbe_disable_pcie_primary - Disable PCI-express primary access
* @hw: pointer to hardware structure
*
- * Disables PCI-Express master access and verifies there are no pending
- * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable
- * bit hasn't caused the master requests to be disabled, else 0
- * is returned signifying master requests disabled.
+ * Disables PCI-Express primary access and verifies there are no pending
+ * requests. IXGBE_ERR_PRIMARY_REQUESTS_PENDING is returned if primary disable
+ * bit hasn't caused the primary requests to be disabled, else 0
+ * is returned signifying primary requests disabled.
**/
-static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
+static s32 ixgbe_disable_pcie_primary(struct ixgbe_hw *hw)
{
u32 i, poll;
u16 value;
@@ -2523,23 +2523,23 @@ static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
IXGBE_WRITE_REG(hw, IXGBE_CTRL, IXGBE_CTRL_GIO_DIS);
/* Poll for bit to read as set */
- for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
+ for (i = 0; i < IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT; i++) {
if (IXGBE_READ_REG(hw, IXGBE_CTRL) & IXGBE_CTRL_GIO_DIS)
break;
usleep_range(100, 120);
}
- if (i >= IXGBE_PCI_MASTER_DISABLE_TIMEOUT) {
+ if (i >= IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT) {
hw_dbg(hw, "GIO disable did not set - requesting resets\n");
goto gio_disable_fail;
}
- /* Exit if master requests are blocked */
+ /* Exit if primary requests are blocked */
if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO) ||
ixgbe_removed(hw->hw_addr))
return 0;
- /* Poll for master request bit to clear */
- for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) {
+ /* Poll for primary request bit to clear */
+ for (i = 0; i < IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT; i++) {
udelay(100);
if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO))
return 0;
@@ -2547,13 +2547,13 @@ static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
/*
* Two consecutive resets are required via CTRL.RST per datasheet
- * 5.2.5.3.2 Master Disable. We set a flag to inform the reset routine
- * of this need. The first reset prevents new master requests from
+ * 5.2.5.3.2 Primary Disable. We set a flag to inform the reset routine
+ * of this need. The first reset prevents new primary requests from
* being issued by our device. We then must wait 1usec or more for any
* remaining completions from the PCIe bus to trickle in, and then reset
* again to clear out any effects they may have had on our device.
*/
- hw_dbg(hw, "GIO Master Disable bit didn't clear - requesting resets\n");
+ hw_dbg(hw, "GIO Primary Disable bit didn't clear - requesting resets\n");
gio_disable_fail:
hw->mac.flags |= IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
@@ -2575,7 +2575,7 @@ static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw)
}
hw_dbg(hw, "PCIe transaction pending bit also did not clear.\n");
- return IXGBE_ERR_MASTER_REQUESTS_PENDING;
+ return IXGBE_ERR_PRIMARY_REQUESTS_PENDING;
}
/**
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
index ef92438e4e6d..5939f809568f 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
@@ -5885,8 +5885,8 @@ void ixgbe_reset(struct ixgbe_adapter *adapter)
case IXGBE_ERR_SFP_NOT_PRESENT:
case IXGBE_ERR_SFP_NOT_SUPPORTED:
break;
- case IXGBE_ERR_MASTER_REQUESTS_PENDING:
- e_dev_err("master disable timed out\n");
+ case IXGBE_ERR_PRIMARY_REQUESTS_PENDING:
+ e_dev_err("primary disable timed out\n");
break;
case IXGBE_ERR_EEPROM_VERSION:
/* We are running on a pre-production device, log a warning */
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h b/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
index 41bcbb337e83..73009a1c65a4 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
@@ -1243,7 +1243,7 @@ struct ixgbe_nvm_version {
#define IXGBE_PSRTYPE_RQPL_SHIFT 29
/* CTRL Bit Masks */
-#define IXGBE_CTRL_GIO_DIS 0x00000004 /* Global IO Master Disable bit */
+#define IXGBE_CTRL_GIO_DIS 0x00000004 /* Global IO Primary Disable bit */
#define IXGBE_CTRL_LNK_RST 0x00000008 /* Link Reset. Resets everything. */
#define IXGBE_CTRL_RST 0x04000000 /* Reset (SW) */
#define IXGBE_CTRL_RST_MASK (IXGBE_CTRL_LNK_RST | IXGBE_CTRL_RST)
@@ -1806,7 +1806,7 @@ enum {
/* STATUS Bit Masks */
#define IXGBE_STATUS_LAN_ID 0x0000000C /* LAN ID */
#define IXGBE_STATUS_LAN_ID_SHIFT 2 /* LAN ID Shift*/
-#define IXGBE_STATUS_GIO 0x00080000 /* GIO Master Enable Status */
+#define IXGBE_STATUS_GIO 0x00080000 /* GIO Primary Enable Status */
#define IXGBE_STATUS_LAN_ID_0 0x00000000 /* LAN ID 0 */
#define IXGBE_STATUS_LAN_ID_1 0x00000004 /* LAN ID 1 */
@@ -2188,8 +2188,8 @@ enum {
#define IXGBE_PCIDEVCTRL2_4_8s 0xd
#define IXGBE_PCIDEVCTRL2_17_34s 0xe
-/* Number of 100 microseconds we wait for PCI Express master disable */
-#define IXGBE_PCI_MASTER_DISABLE_TIMEOUT 800
+/* Number of 100 microseconds we wait for PCI Express primary disable */
+#define IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT 800
/* RAH */
#define IXGBE_RAH_VIND_MASK 0x003C0000
@@ -3662,7 +3662,7 @@ struct ixgbe_info {
#define IXGBE_ERR_ADAPTER_STOPPED -9
#define IXGBE_ERR_INVALID_MAC_ADDR -10
#define IXGBE_ERR_DEVICE_NOT_SUPPORTED -11
-#define IXGBE_ERR_MASTER_REQUESTS_PENDING -12
+#define IXGBE_ERR_PRIMARY_REQUESTS_PENDING -12
#define IXGBE_ERR_INVALID_LINK_SETTINGS -13
#define IXGBE_ERR_AUTONEG_NOT_COMPLETE -14
#define IXGBE_ERR_RESET_FAILED -15
--
2.43.0
next prev parent reply other threads:[~2024-02-21 13:18 UTC|newest]
Thread overview: 209+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-21 13:05 [PATCH 4.19 000/202] 4.19.307-rc1 review Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 001/202] PCI: mediatek: Clear interrupt status before dispatching handler Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 002/202] include/linux/units.h: add helpers for kelvin to/from Celsius conversion Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 003/202] units: Add Watt units Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 004/202] units: change from L to UL Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 005/202] units: add the HZ macros Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 006/202] serial: sc16is7xx: set safe default SPI clock frequency Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 007/202] driver core: add device probe log helper Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 008/202] spi: introduce SPI_MODE_X_MASK macro Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 009/202] serial: sc16is7xx: add check for unsupported SPI modes during probe Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 010/202] ext4: allow for the last group to be marked as trimmed Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 011/202] crypto: api - Disallow identical driver names Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 012/202] PM: hibernate: Enforce ordering during image compression/decompression Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 013/202] hwrng: core - Fix page fault dead lock on mmap-ed hwrng Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 014/202] rpmsg: virtio: Free driver_override when rpmsg_remove() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 015/202] parisc/firmware: Fix F-extend for PDC addresses Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 016/202] nouveau/vmm: dont set addr on the fail path to avoid warning Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 017/202] block: Remove special-casing of compound pages Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 018/202] powerpc: Use always instead of always-y in for crtsavres.o Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 019/202] x86/CPU/AMD: Fix disabling XSAVES on AMD family 0x17 due to erratum Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 020/202] driver core: Annotate dev_err_probe() with __must_check Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 021/202] Revert "driver core: Annotate dev_err_probe() with __must_check" Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 022/202] driver code: print symbolic error code Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 023/202] drivers: core: fix kernel-doc markup for dev_err_probe() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 024/202] net/smc: fix illegal rmb_desc access in SMC-D connection dump Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 025/202] vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 026/202] llc: make llc_ui_sendmsg() more robust against bonding changes Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 027/202] llc: Drop support for ETH_P_TR_802_2 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 028/202] net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 029/202] tracing: Ensure visibility when inserting an element into tracing_map Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 030/202] tcp: Add memory barrier to tcp_push() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 031/202] netlink: fix potential sleeping issue in mqueue_flush_file Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 032/202] net/mlx5: Use kfree(ft->g) in arfs_create_groups() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 033/202] net/mlx5e: fix a double-free in arfs_create_groups Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 034/202] netfilter: nf_tables: restrict anonymous set and map names to 16 bytes Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 035/202] fjes: fix memleaks in fjes_hw_setup Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 036/202] net: fec: fix the unhandled context fault from smmu Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 037/202] btrfs: dont warn if discard range is not aligned to sector Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 038/202] btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 039/202] netfilter: nf_tables: reject QUEUE/DROP verdict parameters Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 040/202] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 041/202] drm: Dont unref the same fb many times by mistake due to deadlock handling Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 042/202] drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 043/202] drm/bridge: nxp-ptn3460: simplify some " Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 044/202] drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 045/202] gpio: eic-sprd: Clear interrupt after set the interrupt type Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 046/202] mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 047/202] tick/sched: Preserve number of idle sleeps across CPU hotplug events Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 048/202] x86/entry/ia32: Ensure s32 is sign extended to s64 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 049/202] net/sched: cbs: Fix not adding cbs instance to list Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 050/202] powerpc/mm: Fix null-pointer dereference in pgtable_cache_add Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 051/202] powerpc: Fix build error due to is_valid_bugaddr() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 052/202] powerpc/mm: Fix build failures due to arch_reserved_kernel_pages() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 053/202] powerpc/lib: Validate size for vector operations Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 054/202] audit: Send netlink ACK before setting connection in auditd_set Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 055/202] ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 056/202] PNP: ACPI: fix fortify warning Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 057/202] ACPI: extlog: fix NULL pointer dereference check Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 058/202] FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 059/202] UBSAN: array-index-out-of-bounds in dtSplitRoot Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 060/202] jfs: fix slab-out-of-bounds Read in dtSearch Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 061/202] jfs: fix array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 062/202] jfs: fix uaf in jfs_evict_inode Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 063/202] pstore/ram: Fix crash when setting number of cpus to an odd number Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 064/202] crypto: stm32/crc32 - fix parsing list of devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 065/202] afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 066/202] rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 067/202] jfs: fix array-index-out-of-bounds in diNewExt Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 068/202] s390/ptrace: handle setting of fpc register correctly Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 069/202] KVM: s390: fix setting of fpc register Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 070/202] SUNRPC: Fix a suspicious RCU usage warning Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 071/202] ext4: fix inconsistent between segment fstrim and full fstrim Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 072/202] ext4: unify the type of flexbg_size to unsigned int Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 073/202] ext4: remove unnecessary check from alloc_flex_gd() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 074/202] ext4: avoid online resizing failures due to oversized flex bg Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 075/202] scsi: lpfc: Fix possible file string name overflow when updating firmware Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 076/202] PCI: Add no PM reset quirk for NVIDIA Spectrum devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 077/202] bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 078/202] ARM: dts: imx7s: Fix lcdif compatible Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 079/202] ARM: dts: imx7s: Fix nand-controller #size-cells Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 080/202] wifi: ath9k: Fix potential array-index-out-of-bounds read in ath9k_htc_txstatus() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 081/202] bpf: Add map and need_defer parameters to .map_fd_put_ptr() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 082/202] scsi: libfc: Dont schedule abort twice Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 083/202] scsi: libfc: Fix up timeout error in fc_fcp_rec_error() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 084/202] ARM: dts: rockchip: fix rk3036 hdmi ports node Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 085/202] ARM: dts: imx25/27-eukrea: Fix RTC node name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 086/202] ARM: dts: imx: Use flash@0,0 pattern Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 087/202] ARM: dts: imx27: Fix sram node Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 088/202] ARM: dts: imx1: " Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 089/202] ARM: dts: imx27-apf27dev: Fix LED name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 090/202] ARM: dts: imx23-sansa: Use preferred i2c-gpios properties Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 091/202] ARM: dts: imx23/28: Fix the DMA controller node name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 092/202] md: Whenassemble the array, consult the superblock of the freshest device Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 093/202] wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 094/202] wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 095/202] wifi: cfg80211: free beacon_ies when overridden from hidden BSS Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 096/202] f2fs: fix to check return value of f2fs_reserve_new_block() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 097/202] ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 098/202] fast_dput(): handle underflows gracefully Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 099/202] RDMA/IPoIB: Fix error code return in ipoib_mcast_join Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 100/202] drm/drm_file: fix use of uninitialized variable Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 101/202] drm/framebuffer: Fix " Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 102/202] drm/mipi-dsi: Fix detach call without attach Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 103/202] media: stk1160: Fixed high volume of stk1160_dbg messages Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 104/202] media: rockchip: rga: fix swizzling for RGB formats Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 105/202] PCI: add INTEL_HDA_ARL to pci_ids.h Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 106/202] ALSA: hda: Intel: add HDA_ARL PCI ID support Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 107/202] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 108/202] IB/ipoib: Fix mcast list locking Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 109/202] media: ddbridge: fix an error code problem in ddb_probe Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 110/202] drm/msm/dpu: Ratelimit framedone timeout msgs Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 111/202] clk: hi3620: Fix memory leak in hi3620_mmc_clk_init() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 112/202] clk: mmp: pxa168: Fix memory leak in pxa168_clk_init() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 113/202] drm/amd/display: make flip_timestamp_in_us a 64-bit variable Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 114/202] drm/amdgpu: Let KFD sync with VM fences Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 115/202] drm/amdgpu: Drop fence check in to_amdgpu_amdkfd_fence() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 116/202] leds: trigger: panic: Dont register panic notifier if creating the trigger failed Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 117/202] um: Fix naming clash between UML and scheduler Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 118/202] um: Dont use vfprintf() for os_info() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 119/202] um: net: Fix return type of uml_net_start_xmit() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 120/202] mfd: ti_am335x_tscadc: Fix TI SoC dependencies Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 121/202] PCI: Only override AMD USB controller if required Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 122/202] usb: hub: Replace hardcoded quirk value with BIT() macro Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 123/202] misc: lis3lv02d_i2c: Add missing setting of the reg_ctrl callback Greg Kroah-Hartman
2024-02-21 18:16 ` Hans de Goede
2024-02-21 13:07 ` [PATCH 4.19 124/202] libsubcmd: Fix memory leak in uniq() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 125/202] =?UTF-8?q?virtio=5Fnet:=20Fix=20"=E2=80=98%d=E2=80=99=20directive?= =?UTF-8?q?=20writing=20between=201=20and=2011=20bytes=20into=20a=20region?= =?UTF-8?q?=20of=20size=2010"=20warnings?= Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 126/202] blk-mq: fix IO hang from sbitmap wakeup race Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 127/202] ceph: fix deadlock or deadcode of misusing dget() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 128/202] drm/amdgpu: Release adev->pm.fw before return in amdgpu_device_need_post() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 129/202] wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 130/202] scsi: isci: Fix an error code problem in isci_io_request_build() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 131/202] net: remove unneeded break Greg Kroah-Hartman
2024-02-21 13:07 ` Greg Kroah-Hartman [this message]
2024-02-21 13:07 ` [PATCH 4.19 133/202] ixgbe: Refactor returning internal error codes Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 134/202] ixgbe: Refactor overtemp event handling Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 135/202] ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 136/202] ipv6: Ensure natural alignment of const ipv6 loopback and router addresses Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 137/202] llc: call sock_orphan() at release time Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 138/202] netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 139/202] net: ipv4: fix a memleak in ip_setup_cork Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 140/202] af_unix: fix lockdep positive in sk_diag_dump_icons() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 141/202] net: sysfs: Fix /sys/class/net/<iface> path Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 142/202] HID: apple: Add support for the 2021 Magic Keyboard Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 143/202] HID: apple: Swap the Fn and Left Control keys on Apple keyboards Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 144/202] HID: apple: Add 2021 magic keyboard FN key mapping Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 145/202] bonding: remove print in bond_verify_device_path Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 146/202] dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 147/202] phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 148/202] atm: idt77252: fix a memleak in open_card_ubr0 Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 149/202] hwmon: (aspeed-pwm-tacho) mutex for tach reading Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 150/202] hwmon: (coretemp) Fix out-of-bounds memory access Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 151/202] hwmon: (coretemp) Fix bogus core_id to attr name mapping Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 152/202] inet: read sk->sk_family once in inet_recv_error() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 153/202] rxrpc: Fix response to PING RESPONSE ACKs to a dead call Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 154/202] tipc: Check the bearer type before calling tipc_udp_nl_bearer_add() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 155/202] ppp_async: limit MRU to 64K Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 156/202] netfilter: nft_compat: reject unused compat flag Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 157/202] netfilter: nft_compat: restrict match/target protocol to u16 Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 158/202] net/af_iucv: clean up a try_then_request_module() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 159/202] USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 160/202] USB: serial: option: add Fibocom FM101-GL variant Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 161/202] USB: serial: cp210x: add ID for IMST iM871A-USB Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 162/202] Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 163/202] vhost: use kzalloc() instead of kmalloc() followed by memset() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 164/202] hrtimer: Report offline hrtimer enqueue Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 165/202] btrfs: forbid creating subvol qgroups Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 166/202] btrfs: send: return EOPNOTSUPP on unknown flags Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 167/202] spi: ppc4xx: Drop write-only variable Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 168/202] ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 169/202] Documentation: net-sysfs: describe missing statistics Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 170/202] net: sysfs: Fix /sys/class/net/<iface> path for statistics Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 171/202] MIPS: Add memory clobber to csum_ipv6_magic() inline assembler Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 172/202] i40e: Fix waiting for queues of all VSIs to be disabled Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 173/202] tracing/trigger: Fix to return error if failed to alloc snapshot Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 174/202] mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 175/202] HID: wacom: generic: Avoid reporting a serial of 0 to userspace Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 176/202] HID: wacom: Do not register input devices until after hid_hw_start Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 177/202] USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 178/202] usb: f_mass_storage: forbid async queue when shutdown happen Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 179/202] scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 180/202] firewire: core: correct documentation of fw_csr_string() kernel API Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 181/202] nfc: nci: free rx_data_reassembly skb on NCI device cleanup Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 182/202] xen-netback: properly sync TX responses Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 183/202] binder: signal epoll threads of self-work Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 184/202] ext4: fix double-free of blocks due to wrong extents moved_len Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 185/202] staging: iio: ad5933: fix type mismatch regression Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 186/202] ring-buffer: Clean ring_buffer_poll_wait() error return Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 187/202] serial: max310x: set default value when reading clock ready bit Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 188/202] serial: max310x: improve crystal stable clock detection Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 189/202] x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 190/202] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 191/202] ALSA: hda/conexant: Add quirk for SWS JS201D Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 192/202] nilfs2: fix data corruption in dsync block recovery for small block sizes Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 193/202] nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 194/202] nfp: use correct macro for LengthSelect in BAR config Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 195/202] irqchip/irq-brcmstb-l2: Add write memory barrier before exit Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 196/202] pmdomain: core: Move the unused cleanup to a _sync initcall Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 197/202] Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d" Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 198/202] sched/membarrier: reduce the ability to hammer on sys_membarrier Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 199/202] nilfs2: fix potential bug in end_buffer_async_write Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 200/202] nilfs2: replace WARN_ONs for invalid DAT metadata block requests Greg Kroah-Hartman
2024-02-21 15:16 ` Ryusuke Konishi
2024-02-21 13:08 ` [PATCH 4.19 201/202] lsm: new security_file_ioctl_compat() hook Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 202/202] netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() Greg Kroah-Hartman
2024-02-21 19:48 ` [PATCH 4.19 000/202] 4.19.307-rc1 review Jon Hunter
2024-02-21 23:42 ` Shuah Khan
2024-02-22 15:16 ` Naresh Kamboju
2024-02-22 19:20 ` Harshit Mogalapalli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240221125935.973314901@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=anthony.l.nguyen@intel.com \
--cc=david.switzer@intel.com \
--cc=patches@lists.linux.dev \
--cc=piotrx.skajewski@intel.com \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).