From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Christophe Leroy <christophe.leroy@csgroup.eu>,
andy.shevchenko@gmail.com, Andreas Kemnade <andreas@kemnade.info>,
Lee Jones <lee@kernel.org>, Aaro Koskinen <aaro.koskinen@iki.fi>,
Linus Walleij <linus.walleij@linaro.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.3 215/431] ARM/mfd/gpio: Fixup TPS65010 regression on OMAP1 OSK1
Date: Sun, 9 Jul 2023 13:12:43 +0200 [thread overview]
Message-ID: <20230709111456.204407285@linuxfoundation.org> (raw)
In-Reply-To: <20230709111451.101012554@linuxfoundation.org>
From: Linus Walleij <linus.walleij@linaro.org>
[ Upstream commit c32c81f3dbdfd68f6ab20a29ad86f811aed36e4e ]
Aaro reports problems on the OSK1 board after we altered
the dynamic base for GPIO allocations.
It appears this happens because the OMAP driver now
allocates GPIO numbers dynamically, so all that is
references by number is a bit up in the air.
Let's bite the bullet and try to just move the gpio_chip
in the tps65010 MFD driver over to using dynamic allocations.
Alter everything in the OSK1 board file to use a GPIO
descriptor table and lookups.
Utilize the NULL device to define some board-specific
GPIO lookups and use these to immediately look up the
same GPIOs, convert to IRQ numbers and pass as resources
to the devices. This is ugly but should work.
The .setup() callback for tps65010 was used for some GPIO
hogging, but since the OSK1 is the only user in the entire
kernel we can alter the signatures to something that
is helpful and make a clean transition.
Fixes: 92bf78b33b0b ("gpio: omap: use dynamic allocation of base")
Cc: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: andy.shevchenko@gmail.com
Cc: Andreas Kemnade <andreas@kemnade.info>
Acked-by: Lee Jones <lee@kernel.org>
Reviewed-by: Lee Jones <lee@kernel.org>
Reported-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
arch/arm/mach-omap1/board-osk.c | 139 ++++++++++++++++++++++----------
drivers/mfd/tps65010.c | 14 ++--
include/linux/mfd/tps65010.h | 11 +--
3 files changed, 104 insertions(+), 60 deletions(-)
diff --git a/arch/arm/mach-omap1/board-osk.c b/arch/arm/mach-omap1/board-osk.c
index df758c1f92373..a8ca8d427182d 100644
--- a/arch/arm/mach-omap1/board-osk.c
+++ b/arch/arm/mach-omap1/board-osk.c
@@ -25,7 +25,8 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <linux/gpio.h>
+#include <linux/gpio/consumer.h>
+#include <linux/gpio/driver.h>
#include <linux/gpio/machine.h>
#include <linux/kernel.h>
#include <linux/init.h>
@@ -64,13 +65,12 @@
/* TPS65010 has four GPIOs. nPG and LED2 can be treated like GPIOs with
* alternate pin configurations for hardware-controlled blinking.
*/
-#define OSK_TPS_GPIO_BASE (OMAP_MAX_GPIO_LINES + 16 /* MPUIO */)
-# define OSK_TPS_GPIO_USB_PWR_EN (OSK_TPS_GPIO_BASE + 0)
-# define OSK_TPS_GPIO_LED_D3 (OSK_TPS_GPIO_BASE + 1)
-# define OSK_TPS_GPIO_LAN_RESET (OSK_TPS_GPIO_BASE + 2)
-# define OSK_TPS_GPIO_DSP_PWR_EN (OSK_TPS_GPIO_BASE + 3)
-# define OSK_TPS_GPIO_LED_D9 (OSK_TPS_GPIO_BASE + 4)
-# define OSK_TPS_GPIO_LED_D2 (OSK_TPS_GPIO_BASE + 5)
+#define OSK_TPS_GPIO_USB_PWR_EN 0
+#define OSK_TPS_GPIO_LED_D3 1
+#define OSK_TPS_GPIO_LAN_RESET 2
+#define OSK_TPS_GPIO_DSP_PWR_EN 3
+#define OSK_TPS_GPIO_LED_D9 4
+#define OSK_TPS_GPIO_LED_D2 5
static struct mtd_partition osk_partitions[] = {
/* bootloader (U-Boot, etc) in first sector */
@@ -174,11 +174,20 @@ static const struct gpio_led tps_leds[] = {
/* NOTE: D9 and D2 have hardware blink support.
* Also, D9 requires non-battery power.
*/
- { .gpio = OSK_TPS_GPIO_LED_D9, .name = "d9",
- .default_trigger = "disk-activity", },
- { .gpio = OSK_TPS_GPIO_LED_D2, .name = "d2", },
- { .gpio = OSK_TPS_GPIO_LED_D3, .name = "d3", .active_low = 1,
- .default_trigger = "heartbeat", },
+ { .name = "d9", .default_trigger = "disk-activity", },
+ { .name = "d2", },
+ { .name = "d3", .default_trigger = "heartbeat", },
+};
+
+static struct gpiod_lookup_table tps_leds_gpio_table = {
+ .dev_id = "leds-gpio",
+ .table = {
+ /* Use local offsets on TPS65010 */
+ GPIO_LOOKUP_IDX("tps65010", OSK_TPS_GPIO_LED_D9, NULL, 0, GPIO_ACTIVE_HIGH),
+ GPIO_LOOKUP_IDX("tps65010", OSK_TPS_GPIO_LED_D2, NULL, 1, GPIO_ACTIVE_HIGH),
+ GPIO_LOOKUP_IDX("tps65010", OSK_TPS_GPIO_LED_D3, NULL, 2, GPIO_ACTIVE_LOW),
+ { }
+ },
};
static struct gpio_led_platform_data tps_leds_data = {
@@ -192,29 +201,34 @@ static struct platform_device osk5912_tps_leds = {
.dev.platform_data = &tps_leds_data,
};
-static int osk_tps_setup(struct i2c_client *client, void *context)
+/* The board just hold these GPIOs hogged from setup to teardown */
+static struct gpio_desc *eth_reset;
+static struct gpio_desc *vdd_dsp;
+
+static int osk_tps_setup(struct i2c_client *client, struct gpio_chip *gc)
{
+ struct gpio_desc *d;
if (!IS_BUILTIN(CONFIG_TPS65010))
return -ENOSYS;
/* Set GPIO 1 HIGH to disable VBUS power supply;
* OHCI driver powers it up/down as needed.
*/
- gpio_request(OSK_TPS_GPIO_USB_PWR_EN, "n_vbus_en");
- gpio_direction_output(OSK_TPS_GPIO_USB_PWR_EN, 1);
+ d = gpiochip_request_own_desc(gc, OSK_TPS_GPIO_USB_PWR_EN, "n_vbus_en",
+ GPIO_ACTIVE_HIGH, GPIOD_OUT_HIGH);
/* Free the GPIO again as the driver will request it */
- gpio_free(OSK_TPS_GPIO_USB_PWR_EN);
+ gpiochip_free_own_desc(d);
/* Set GPIO 2 high so LED D3 is off by default */
tps65010_set_gpio_out_value(GPIO2, HIGH);
/* Set GPIO 3 low to take ethernet out of reset */
- gpio_request(OSK_TPS_GPIO_LAN_RESET, "smc_reset");
- gpio_direction_output(OSK_TPS_GPIO_LAN_RESET, 0);
+ eth_reset = gpiochip_request_own_desc(gc, OSK_TPS_GPIO_LAN_RESET, "smc_reset",
+ GPIO_ACTIVE_HIGH, GPIOD_OUT_LOW);
/* GPIO4 is VDD_DSP */
- gpio_request(OSK_TPS_GPIO_DSP_PWR_EN, "dsp_power");
- gpio_direction_output(OSK_TPS_GPIO_DSP_PWR_EN, 1);
+ vdd_dsp = gpiochip_request_own_desc(gc, OSK_TPS_GPIO_DSP_PWR_EN, "dsp_power",
+ GPIO_ACTIVE_HIGH, GPIOD_OUT_HIGH);
/* REVISIT if DSP support isn't configured, power it off ... */
/* Let LED1 (D9) blink; leds-gpio may override it */
@@ -232,15 +246,22 @@ static int osk_tps_setup(struct i2c_client *client, void *context)
/* register these three LEDs */
osk5912_tps_leds.dev.parent = &client->dev;
+ gpiod_add_lookup_table(&tps_leds_gpio_table);
platform_device_register(&osk5912_tps_leds);
return 0;
}
+static void osk_tps_teardown(struct i2c_client *client, struct gpio_chip *gc)
+{
+ gpiochip_free_own_desc(eth_reset);
+ gpiochip_free_own_desc(vdd_dsp);
+}
+
static struct tps65010_board tps_board = {
- .base = OSK_TPS_GPIO_BASE,
.outmask = 0x0f,
.setup = osk_tps_setup,
+ .teardown = osk_tps_teardown,
};
static struct i2c_board_info __initdata osk_i2c_board_info[] = {
@@ -263,11 +284,6 @@ static void __init osk_init_smc91x(void)
{
u32 l;
- if ((gpio_request(0, "smc_irq")) < 0) {
- printk("Error requesting gpio 0 for smc91x irq\n");
- return;
- }
-
/* Check EMIFS wait states to fix errors with SMC_GET_PKT_HDR */
l = omap_readl(EMIFS_CCS(1));
l |= 0x3;
@@ -279,10 +295,6 @@ static void __init osk_init_cf(int seg)
struct resource *res = &osk5912_cf_resources[1];
omap_cfg_reg(M7_1610_GPIO62);
- if ((gpio_request(62, "cf_irq")) < 0) {
- printk("Error requesting gpio 62 for CF irq\n");
- return;
- }
switch (seg) {
/* NOTE: CS0 could be configured too ... */
@@ -308,18 +320,17 @@ static void __init osk_init_cf(int seg)
seg, omap_readl(EMIFS_CCS(seg)), omap_readl(EMIFS_ACS(seg)));
omap_writel(0x0004a1b3, EMIFS_CCS(seg)); /* synch mode 4 etc */
omap_writel(0x00000000, EMIFS_ACS(seg)); /* OE hold/setup */
-
- /* the CF I/O IRQ is really active-low */
- irq_set_irq_type(gpio_to_irq(62), IRQ_TYPE_EDGE_FALLING);
}
static struct gpiod_lookup_table osk_usb_gpio_table = {
.dev_id = "ohci",
.table = {
/* Power GPIO on the I2C-attached TPS65010 */
- GPIO_LOOKUP("tps65010", 0, "power", GPIO_ACTIVE_HIGH),
+ GPIO_LOOKUP("tps65010", OSK_TPS_GPIO_USB_PWR_EN, "power",
+ GPIO_ACTIVE_HIGH),
GPIO_LOOKUP(OMAP_GPIO_LABEL, 9, "overcurrent",
GPIO_ACTIVE_HIGH),
+ { }
},
};
@@ -341,8 +352,25 @@ static struct omap_usb_config osk_usb_config __initdata = {
#define EMIFS_CS3_VAL (0x88013141)
+static struct gpiod_lookup_table osk_irq_gpio_table = {
+ .dev_id = NULL,
+ .table = {
+ /* GPIO used for SMC91x IRQ */
+ GPIO_LOOKUP(OMAP_GPIO_LABEL, 0, "smc_irq",
+ GPIO_ACTIVE_HIGH),
+ /* GPIO used for CF IRQ */
+ GPIO_LOOKUP("gpio-48-63", 14, "cf_irq",
+ GPIO_ACTIVE_HIGH),
+ /* GPIO used by the TPS65010 chip */
+ GPIO_LOOKUP("mpuio", 1, "tps65010",
+ GPIO_ACTIVE_HIGH),
+ { }
+ },
+};
+
static void __init osk_init(void)
{
+ struct gpio_desc *d;
u32 l;
osk_init_smc91x();
@@ -359,10 +387,31 @@ static void __init osk_init(void)
osk_flash_resource.end = osk_flash_resource.start = omap_cs3_phys();
osk_flash_resource.end += SZ_32M - 1;
- osk5912_smc91x_resources[1].start = gpio_to_irq(0);
- osk5912_smc91x_resources[1].end = gpio_to_irq(0);
- osk5912_cf_resources[0].start = gpio_to_irq(62);
- osk5912_cf_resources[0].end = gpio_to_irq(62);
+
+ /*
+ * Add the GPIOs to be used as IRQs and immediately look them up
+ * to be passed as an IRQ resource. This is ugly but should work
+ * until the day we convert to device tree.
+ */
+ gpiod_add_lookup_table(&osk_irq_gpio_table);
+
+ d = gpiod_get(NULL, "smc_irq", GPIOD_IN);
+ if (IS_ERR(d)) {
+ pr_err("Unable to get SMC IRQ GPIO descriptor\n");
+ } else {
+ irq_set_irq_type(gpiod_to_irq(d), IRQ_TYPE_EDGE_RISING);
+ osk5912_smc91x_resources[1] = DEFINE_RES_IRQ(gpiod_to_irq(d));
+ }
+
+ d = gpiod_get(NULL, "cf_irq", GPIOD_IN);
+ if (IS_ERR(d)) {
+ pr_err("Unable to get CF IRQ GPIO descriptor\n");
+ } else {
+ /* the CF I/O IRQ is really active-low */
+ irq_set_irq_type(gpiod_to_irq(d), IRQ_TYPE_EDGE_FALLING);
+ osk5912_cf_resources[0] = DEFINE_RES_IRQ(gpiod_to_irq(d));
+ }
+
platform_add_devices(osk5912_devices, ARRAY_SIZE(osk5912_devices));
l = omap_readl(USB_TRANSCEIVER_CTRL);
@@ -372,13 +421,15 @@ static void __init osk_init(void)
gpiod_add_lookup_table(&osk_usb_gpio_table);
omap1_usb_init(&osk_usb_config);
+ omap_serial_init();
+
/* irq for tps65010 chip */
/* bootloader effectively does: omap_cfg_reg(U19_1610_MPUIO1); */
- if (gpio_request(OMAP_MPUIO(1), "tps65010") == 0)
- gpio_direction_input(OMAP_MPUIO(1));
-
- omap_serial_init();
- osk_i2c_board_info[0].irq = gpio_to_irq(OMAP_MPUIO(1));
+ d = gpiod_get(NULL, "tps65010", GPIOD_IN);
+ if (IS_ERR(d))
+ pr_err("Unable to get TPS65010 IRQ GPIO descriptor\n");
+ else
+ osk_i2c_board_info[0].irq = gpiod_to_irq(d);
omap_register_i2c_bus(1, 400, osk_i2c_board_info,
ARRAY_SIZE(osk_i2c_board_info));
}
diff --git a/drivers/mfd/tps65010.c b/drivers/mfd/tps65010.c
index fb733288cca3b..faea4ff44c6fe 100644
--- a/drivers/mfd/tps65010.c
+++ b/drivers/mfd/tps65010.c
@@ -506,12 +506,8 @@ static void tps65010_remove(struct i2c_client *client)
struct tps65010 *tps = i2c_get_clientdata(client);
struct tps65010_board *board = dev_get_platdata(&client->dev);
- if (board && board->teardown) {
- int status = board->teardown(client, board->context);
- if (status < 0)
- dev_dbg(&client->dev, "board %s %s err %d\n",
- "teardown", client->name, status);
- }
+ if (board && board->teardown)
+ board->teardown(client, &tps->chip);
if (client->irq > 0)
free_irq(client->irq, tps);
cancel_delayed_work_sync(&tps->work);
@@ -619,7 +615,7 @@ static int tps65010_probe(struct i2c_client *client)
tps, DEBUG_FOPS);
/* optionally register GPIOs */
- if (board && board->base != 0) {
+ if (board) {
tps->outmask = board->outmask;
tps->chip.label = client->name;
@@ -632,7 +628,7 @@ static int tps65010_probe(struct i2c_client *client)
/* NOTE: only partial support for inputs; nyet IRQs */
tps->chip.get = tps65010_gpio_get;
- tps->chip.base = board->base;
+ tps->chip.base = -1;
tps->chip.ngpio = 7;
tps->chip.can_sleep = 1;
@@ -641,7 +637,7 @@ static int tps65010_probe(struct i2c_client *client)
dev_err(&client->dev, "can't add gpiochip, err %d\n",
status);
else if (board->setup) {
- status = board->setup(client, board->context);
+ status = board->setup(client, &tps->chip);
if (status < 0) {
dev_dbg(&client->dev,
"board %s %s err %d\n",
diff --git a/include/linux/mfd/tps65010.h b/include/linux/mfd/tps65010.h
index a1fb9bc5311de..5edf1aef11185 100644
--- a/include/linux/mfd/tps65010.h
+++ b/include/linux/mfd/tps65010.h
@@ -28,6 +28,8 @@
#ifndef __LINUX_I2C_TPS65010_H
#define __LINUX_I2C_TPS65010_H
+struct gpio_chip;
+
/*
* ----------------------------------------------------------------------------
* Registers, all 8 bits
@@ -176,12 +178,10 @@ struct i2c_client;
/**
* struct tps65010_board - packages GPIO and LED lines
- * @base: the GPIO number to assign to GPIO-1
* @outmask: bit (N-1) is set to allow GPIO-N to be used as an
* (open drain) output
* @setup: optional callback issued once the GPIOs are valid
* @teardown: optional callback issued before the GPIOs are invalidated
- * @context: optional parameter passed to setup() and teardown()
*
* Board data may be used to package the GPIO (and LED) lines for use
* in by the generic GPIO and LED frameworks. The first four GPIOs
@@ -193,12 +193,9 @@ struct i2c_client;
* devices in their initial states using these GPIOs.
*/
struct tps65010_board {
- int base;
unsigned outmask;
-
- int (*setup)(struct i2c_client *client, void *context);
- int (*teardown)(struct i2c_client *client, void *context);
- void *context;
+ int (*setup)(struct i2c_client *client, struct gpio_chip *gc);
+ void (*teardown)(struct i2c_client *client, struct gpio_chip *gc);
};
#endif /* __LINUX_I2C_TPS65010_H */
--
2.39.2
next prev parent reply other threads:[~2023-07-09 11:27 UTC|newest]
Thread overview: 435+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-09 11:09 [PATCH 6.3 000/431] 6.3.13-rc1 review Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 001/431] mm: call arch_swap_restore() from do_swap_page() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 002/431] drm: use mgr->dev in drm_dbg_kms in drm_dp_add_payload_part2 Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 003/431] fs: pipe: reveal missing function protoypes Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 004/431] block: Fix the type of the second bdev_op_is_zoned_write() argument Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 005/431] splice: Fix filemap_splice_read() to use the correct inode Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 006/431] erofs: kill hooked chains to avoid loops on deduplicated compressed images Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 007/431] x86/resctrl: Only show tasks pid in current pid namespace Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 008/431] blk-iocost: use spin_lock_irqsave in adjust_inuse_and_calc_cost Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 009/431] x86/sev: Fix calculation of end address based on number of pages Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 010/431] blk-cgroup: Reinit blkg_iostat_set after clearing in blkcg_reset_stats() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 011/431] virt: sevguest: Add CONFIG_CRYPTO dependency Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 012/431] blk-mq: fix potential io hang by wrong wake_batch Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 013/431] lockd: drop inappropriate svc_get() from locked_get() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 014/431] nvme-core: fix memory leak in dhchap_secret_store Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 015/431] nvme-core: fix memory leak in dhchap_ctrl_secret Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 016/431] nvme-core: add missing fault-injection cleanup Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 017/431] nvme-core: fix dev_pm_qos memleak Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 018/431] md/raid10: check slab-out-of-bounds in md_bitmap_get_counter Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 019/431] md/raid10: fix overflow of md/safe_mode_delay Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 020/431] md/raid10: fix wrong setting of max_corr_read_errors Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 021/431] md/raid10: fix null-ptr-deref of mreplace in raid10_sync_request Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 022/431] md/raid10: fix io loss while replacement replace rdev Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 023/431] md/raid1-10: factor out a helper to add bio to plug Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 024/431] md/raid1-10: factor out a helper to submit normal write Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 025/431] md/raid1-10: submit write io directly if bitmap is not enabled Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 026/431] block: fix blktrace debugfs entries leakage Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 027/431] irqchip/loongson-eiointc: Fix irq affinity setting during resume Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 028/431] splice: dont call file_accessed in copy_splice_read Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 029/431] irqchip/stm32-exti: Fix warning on initialized field overwritten Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 030/431] irqchip/jcore-aic: Fix missing allocation of IRQ descriptors Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 031/431] svcrdma: Prevent page release when nothing was received Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 032/431] erofs: fix compact 4B support for 16k block size Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 033/431] posix-timers: Prevent RT livelock in itimer_delete() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 034/431] tick/rcu: Fix bogus ratelimit condition Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 035/431] tracing/timer: Add missing hrtimer modes to decode_hrtimer_mode() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 036/431] btrfs: make btrfs_split_bio work on struct btrfs_bio Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 037/431] btrfs: fix file_offset for REQ_BTRFS_ONE_ORDERED bios that get split Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 038/431] clocksource/drivers/cadence-ttc: Fix memory leak in ttc_timer_probe Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 039/431] PM: domains: fix integer overflow issues in genpd_parse_state() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 040/431] perf/arm-cmn: Fix DTC reset Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 041/431] x86/mm: Allow guest.enc_status_change_prepare() to fail Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 042/431] x86/tdx: Fix race between set_memory_encrypted() and load_unaligned_zeropad() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 043/431] drivers/perf: hisi: Dont migrate perf to the CPU going to teardown Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 044/431] perf: arm_cspmu: Set irq affinitiy only if overflow interrupt is used Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 045/431] perf/arm_cspmu: Fix event attribute type Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 046/431] APEI: GHES: correctly return NULL for ghes_get_devices() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 047/431] powercap: RAPL: fix invalid initialization for pl4_supported field Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 048/431] powercap: RAPL: Fix CONFIG_IOSF_MBI dependency Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 049/431] PM: domains: Move the verification of in-params from genpd_add_device() Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 050/431] ARM: 9303/1: kprobes: avoid missing-declaration warnings Greg Kroah-Hartman
2023-07-09 11:09 ` [PATCH 6.3 051/431] cpufreq: intel_pstate: Fix energy_performance_preference for passive Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 052/431] thermal/drivers/qcom/tsens-v0_1: Add support for MSM8226 Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 053/431] thermal/drivers/qcom/tsens-v0_1: Fix mdm9607 slope values Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 054/431] thermal/drivers/qcom/tsens-v0_1: Add mdm9607 correction offsets Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 055/431] thermal/drivers/sun8i: Fix some error handling paths in sun8i_ths_probe() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 056/431] thermal/hwmon: Use the right device for devm_thermal_add_hwmon_sysfs() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 057/431] thermal/drivers/qoriq: Only enable supported sensors Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 058/431] rcu: Make rcu_cpu_starting() rely on interrupts being disabled Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 059/431] rcu-tasks: Stop rcu_tasks_invoke_cbs() from using never-onlined CPUs Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 060/431] rcutorture: Correct name of use_softirq module parameter Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 061/431] rcuscale: Move shutdown from wait_event() to wait_event_idle() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 062/431] rcu/rcuscale: Move rcu_scale_*() after kfree_scale_cleanup() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 063/431] rcu/rcuscale: Stop kfree_scale_thread thread(s) after unloading rcuscale Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 064/431] x86/mtrr: Remove physical address size calculation Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 065/431] x86/mtrr: Replace size_or_mask and size_and_mask with a much easier concept Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 066/431] x86/mtrr: Support setting MTRR state for software defined MTRRs Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 067/431] x86/xen: Set MTRR state when running as Xen PV initial domain Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 068/431] kselftest: vDSO: Fix accumulation of uninitialized ret when CLOCK_REALTIME is undefined Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 069/431] perf/ibs: Fix interface via core pmu events Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 070/431] x86/mm: Fix __swp_entry_to_pte() for Xen PV guests Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 071/431] locking/atomic: arm: fix sync ops Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 072/431] evm: Complete description of evm_inode_setattr() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 073/431] evm: Fix build warnings Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 074/431] ima: " Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 075/431] pstore/ram: Add check for kstrdup Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 076/431] sched/core: Avoid multiple calling update_rq_clock() in __cfsb_csd_unthrottle() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 077/431] igc: Enable and fix RX hash usage by netstack Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 078/431] wifi: ath9k: fix AR9003 mac hardware hang check register offset calculation Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 079/431] wifi: ath9k: avoid referencing uninit memory in ath9k_wmi_ctrl_rx Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 080/431] libbpf: btf_dump_type_data_check_overflow needs to consider BTF_MEMBER_BITFIELD_SIZE Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 081/431] samples/bpf: Fix buffer overflow in tcp_basertt Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 082/431] spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 083/431] wifi: wilc1000: fix for absent RSN capabilities WFA testcase Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 084/431] wifi: mwifiex: Fix the size of a memory allocation in mwifiex_ret_802_11_scan() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 085/431] sctp: add bpf_bypass_getsockopt proto callback Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 086/431] libbpf: fix offsetof() and container_of() to work with CO-RE Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 087/431] bpf: Dont EFAULT for {g,s}setsockopt with wrong optlen Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 088/431] spi: dw: Round of n_bytes to power of 2 Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 089/431] nfc: llcp: fix possible use of uninitialized variable in nfc_llcp_send_connect() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 090/431] bpftool: JIT limited misreported as negative value on aarch64 Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 091/431] bpf: Remove bpf trampoline selector Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 092/431] bpf: Fix memleak due to fentry attach failure Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 093/431] selftests/bpf: Do not use sign-file as testcase Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 094/431] regulator: core: Fix more error checking for debugfs_create_dir() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 095/431] regulator: core: Streamline debugfs operations Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 096/431] wifi: orinoco: Fix an error handling path in spectrum_cs_probe() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 097/431] wifi: orinoco: Fix an error handling path in orinoco_cs_probe() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 098/431] wifi: atmel: Fix an error handling path in atmel_probe() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 099/431] wifi: wl3501_cs: Fix an error handling path in wl3501_probe() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 100/431] wifi: ray_cs: Fix an error handling path in ray_probe() Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 101/431] wifi: ath9k: dont allow to overwrite ENDPOINT0 attributes Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 102/431] wifi: rtw88: usb: silence log flooding error message Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 103/431] samples/bpf: xdp1 and xdp2 reduce XDPBUFSIZE to 60 Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 104/431] wifi: ath10k: Trigger STA disconnect after reconfig complete on hardware restart Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 105/431] tools/resolve_btfids: Fix setting HOSTCFLAGS Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 106/431] wifi: mac80211: recalc min chandef for new STA links Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 107/431] selftests/bpf: Fix check_mtu using wrong variable type Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 108/431] wifi: rsi: Do not configure WoWlan in shutdown hook if not enabled Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 109/431] wifi: rsi: Do not set MMC_PM_KEEP_POWER in shutdown Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 110/431] ice: handle extts in the miscellaneous interrupt thread Greg Kroah-Hartman
2023-07-09 11:10 ` [PATCH 6.3 111/431] selftests: cgroup: fix unexpected failure on test_memcg_low Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 112/431] watchdog/perf: define dummy watchdog_update_hrtimer_threshold() on correct config Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 113/431] watchdog/perf: more properly prevent false positives with turbo modes Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 114/431] kexec: fix a memory leak in crash_shrink_memory() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 115/431] mmc: mediatek: Avoid ugly error message when SDIO wakeup IRQ isnt used Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 116/431] memstick r592: make memstick_debug_get_tpc_name() static Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 117/431] selftests/bpf: Fix invalid pointer check in get_xlated_program() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 118/431] wifi: ath9k: Fix possible stall on ath9k_txq_list_has_key() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 119/431] wifi: mac80211: Fix permissions for valid_links debugfs entry Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 120/431] rtnetlink: extend RTEXT_FILTER_SKIP_STATS to IFLA_VF_INFO Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 121/431] wifi: ath11k: Add missing check for ioremap Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 122/431] wifi: ath11k: Add missing ops config for IPQ5018 in ath11k_ahb_probe() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 123/431] wifi: ath11k: Restart firmware after cold boot calibration for IPQ5018 Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 124/431] wifi: ath11k: Add missing hw_ops->get_ring_selector() " Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 125/431] wifi: iwlwifi: pull from TXQs with softirqs disabled Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 126/431] wifi: iwlwifi: pcie: fix NULL pointer dereference in iwl_pcie_irq_rx_msix_handler() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 127/431] wifi: mac80211: Remove "Missing iftype sband data/EHT cap" spam Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 128/431] wifi: cfg80211: rewrite merging of inherited elements Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 129/431] wifi: cfg80211: drop incorrect nontransmitted BSS update code Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 130/431] wifi: cfg80211: fix regulatory disconnect with OCB/NAN Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 131/431] wifi: ieee80211: Fix the common size calculation for reconfiguration ML Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 132/431] mmc: Add MMC_QUIRK_BROKEN_SD_CACHE for Kingston Canvas Go Plus from 11/2019 Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 133/431] wifi: iwlwifi: mvm: indicate HW decrypt for beacon protection Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 134/431] wifi: ath9k: convert msecs to jiffies where needed Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 135/431] bpf: Factor out socket lookup functions for the TC hookpoint Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 136/431] bpf: Call __bpf_sk_lookup()/__bpf_skc_lookup() directly via " Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 137/431] bpf: Fix bpf socket lookup from tc/xdp to respect socket VRF bindings Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 138/431] can: length: fix bitstuffing count Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 139/431] can: kvaser_pciefd: Add function to set skb hwtstamps Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 140/431] can: kvaser_pciefd: Set hardware timestamp on transmitted packets Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 141/431] net: stmmac: fix double serdes powerdown Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 142/431] netlink: fix potential deadlock in netlink_set_err() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 143/431] netlink: do not hard code device address lenth in fdb dumps Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 144/431] bonding: do not assume skb mac_header is set Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 145/431] selftests: rtnetlink: remove netdevsim device after ipsec offload test Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 146/431] gtp: Fix use-after-free in __gtp_encap_destroy() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 147/431] net: axienet: Move reset before 64-bit DMA detection Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 148/431] ocfs2: Fix use of slab data with sendpage Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 149/431] sfc: fix crash when reading stats while NIC is resetting Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 150/431] net: nfc: Fix use-after-free caused by nfc_llcp_find_local Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 151/431] lib/ts_bm: reset initial match offset for every block of text Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 152/431] netfilter: conntrack: dccp: copy entire header to stack buffer, not just basic one Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 153/431] netfilter: nf_conntrack_sip: fix the ct_sip_parse_numerical_param() return value Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 154/431] ipvlan: Fix return value of ipvlan_queue_xmit() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 155/431] net: dsa: avoid suspicious RCU usage for synced VLAN-aware MAC addresses Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 156/431] netlink: Add __sock_i_ino() for __netlink_diag_dump() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 157/431] drm/amd/display: Add logging for display MALL refresh setting Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 158/431] drm/amd/display: fix is_timing_changed() prototype Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 159/431] radeon: avoid double free in ci_dpm_init() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 160/431] drm/amd/display: Explicitly specify update type per plane info change Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 161/431] bootmem: remove the vmemmap pages from kmemleak in free_bootmem_page Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 162/431] drm/i915/guc: More debug print updates - GuC SLPC Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 163/431] drm/i915/guc/slpc: Provide sysfs for efficient freq Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 164/431] drm/bridge: it6505: Move a variable assignment behind a null pointer check in receive_timing_debugfs_show() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 165/431] Input: drv260x - sleep between polling GO bit Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 166/431] Input: cyttsp4_core - change del_timer_sync() to timer_shutdown_sync() Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 167/431] drm/bridge: ti-sn65dsi83: Fix enable error path Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 168/431] drm/bridge: tc358768: always enable HS video mode Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 169/431] drm/bridge: tc358768: fix PLL parameters computation Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 170/431] drm/bridge: tc358768: fix PLL target frequency Greg Kroah-Hartman
2023-07-09 11:11 ` [PATCH 6.3 171/431] drm/bridge: tc358768: fix TCLK_ZEROCNT computation Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 172/431] drm/bridge: tc358768: Add atomic_get_input_bus_fmts() implementation Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 173/431] drm/bridge: tc358768: fix TCLK_TRAILCNT computation Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 174/431] drm/bridge: tc358768: fix THS_ZEROCNT computation Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 175/431] drm/bridge: tc358768: fix TXTAGOCNT computation Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 176/431] drm/bridge: tc358768: fix THS_TRAILCNT computation Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 177/431] drm/vram-helper: fix function names in vram helper doc Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 178/431] ARM: dts: BCM5301X: Drop "clock-names" from the SPI node Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 179/431] ARM: dts: meson8b: correct uart_B and uart_C clock references Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 180/431] clk: vc5: Fix .driver_data content in i2c_device_id Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 181/431] clk: vc7: " Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 182/431] clk: rs9: Check for vendor/device ID Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 183/431] clk: rs9: Support device specific dif bit calculation Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 184/431] clk: rs9: Add support for 9FGV0441 Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 185/431] clk: rs9: Fix .driver_data content in i2c_device_id Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 186/431] Input: adxl34x - do not hardcode interrupt trigger type Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 187/431] drm: sun4i_tcon: use devm_clk_get_enabled in `sun4i_tcon_init_clocks` Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 188/431] drm/panel: sharp-ls043t1le01: adjust mode settings Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 189/431] driver: soc: xilinx: use _safe loop iterator to avoid a use after free Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 190/431] ASoC: dt-bindings: mediatek,mt8188-afe: correct clock name Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 191/431] ASoC: Intel: sof_sdw: remove SOF_SDW_TGL_HDMI for MeteorLake devices Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 192/431] drm/vkms: isolate pixel conversion functionality Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 193/431] drm: Add fixed-point helper to get rounded integer values Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 194/431] drm/vkms: Fix RGB565 pixel conversion Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 195/431] ARM: dts: stm32: Move ethernet MAC EEPROM from SoM to carrier boards Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 196/431] bus: ti-sysc: Fix dispc quirk masking bool variables Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 197/431] arm64: dts: microchip: sparx5: do not use PSCI on reference boards Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 198/431] drm/bridge: tc358767: Switch to devm MIPI-DSI helpers Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 199/431] clk: imx: scu: use _safe list iterator to avoid a use after free Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 200/431] hwmon: (f71882fg) prevent possible division by zero Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 201/431] RDMA/bnxt_re: Disable/kill tasklet only if it is enabled Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 202/431] RDMA/bnxt_re: Fix to remove unnecessary return labels Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 203/431] RDMA/bnxt_re: Use unique names while registering interrupts Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 204/431] RDMA/bnxt_re: Remove a redundant check inside bnxt_re_update_gid Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 205/431] RDMA/bnxt_re: Fix to remove an unnecessary log Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 206/431] drm/msm/dsi: dont allow enabling 14nm VCO with unprogrammed rate Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 207/431] drm/msm/disp/dpu: get timing engine status from intf status register Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 208/431] drm/msm/dpu: Set DPU_DATA_HCTL_EN for in INTF_SC7180_MASK Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 209/431] drm/nouveau: dispnv50: fix missing-prototypes warning Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 210/431] iommu/virtio: Detach domain on endpoint release Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 211/431] iommu/virtio: Return size mapped for a detached domain Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 212/431] clk: renesas: rzg2l: Fix CPG_SIPLL5_CLK1 register write Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 213/431] ARM: dts: gta04: Move model property out of pinctrl node Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 214/431] drm/bridge: anx7625: Prevent endless probe loop Greg Kroah-Hartman
2023-07-09 11:12 ` Greg Kroah-Hartman [this message]
2023-07-09 11:12 ` [PATCH 6.3 216/431] ARM: omap1: Drop header on AMS Delta Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 217/431] ARM: omap1: Remove reliance on GPIO numbers from PalmTE Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 218/431] ARM: omap1: Remove reliance on GPIO numbers from SX1 Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 219/431] ARM/mmc: Convert old mmci-omap to GPIO descriptors Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 220/431] ARM: omap1: Exorcise the legacy GPIO header Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 221/431] ARM/musb: omap2: Remove global GPIO numbers from TUSB6010 Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 222/431] ARM: dts: qcom: msm8974: do not use underscore in node name (again) Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 223/431] arm64: dts: qcom: pm8998: dont use GIC_SPI for SPMI interrupts Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 224/431] arm64: dts: qcom: ipq6018: correct qrng unit address Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 225/431] arm64: dts: qcom: msm8916: correct camss " Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 226/431] arm64: dts: qcom: msm8916: correct MMC " Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 227/431] arm64: dts: qcom: msm8916: Move WCN compatible to boards Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 228/431] arm64: dts: qcom: msm8916: correct WCNSS unit address Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 229/431] arm64: dts: qcom: msm8953: correct IOMMU " Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 230/431] arm64: dts: qcom: msm8976: correct MMC " Greg Kroah-Hartman
2023-07-09 11:12 ` [PATCH 6.3 231/431] arm64: dts: qcom: msm8994: correct SPMI " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 232/431] arm64: dts: qcom: msm8996: correct camss " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 233/431] arm64: dts: qcom: sdm630: " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 234/431] arm64: dts: qcom: sdm845: " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 235/431] arm64: dts: qcom: sm6115: correct thermal-sensor " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 236/431] arm64: dts: qcom: sm8350: correct DMA controller " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 237/431] arm64: dts: qcom: sm8350: correct PCI phy " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 238/431] arm64: dts: qcom: sm8550: add QCE IP family compatible values Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 239/431] arm64: dts: qcom: sm8550: correct crypto unit address Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 240/431] arm64: dts: qcom: sm8550: correct pinctrl " Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 241/431] arm64: dts: qcom: sdm845-polaris: add missing touchscreen child node reg Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 242/431] arm64: dts: qcom: apq8016-sbc: Fix regulator constraints Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 243/431] arm64: dts: qcom: apq8016-sbc: Fix 1.8V power rail on LS expansion Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 244/431] drm/bridge: ti-sn65dsi83: Fix enable/disable flow to meet spec Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 245/431] drm/panel: simple: fix active size for Ampire AM-480272H3TMQW-T01H Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 246/431] ARM: ep93xx: fix missing-prototype warnings Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 247/431] ARM: omap2: fix missing tick_broadcast() prototype Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 248/431] arm64: dts: qcom: pm7250b: add missing spmi-vadc include Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 249/431] arm64: dts: qcom: apq8096: fix fixed regulator name property Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 250/431] arm64: dts: mediatek: mt8183: Add mediatek,broken-save-restore-fw to kukui Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 251/431] ARM: dts: stm32: Shorten the AV96 HDMI sound card name Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 252/431] memory: brcmstb_dpfe: fix testing array offset after use Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 253/431] ARM: dts: qcom: apq8074-dragonboard: Set DMA as remotely controlled Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 254/431] ASoC: es8316: Increment max value for ALC Capture Target Volume control Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 255/431] ASoC: es8316: Do not set rate constraints for unsupported MCLKs Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 256/431] ARM: dts: meson8: correct uart_B and uart_C clock references Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 257/431] soc/fsl/qe: fix usb.c build errors Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 258/431] RDMA/irdma: avoid fortify-string warning in irdma_clr_wqes Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 259/431] IB/hfi1: Fix wrong mmu_node used for user SDMA packet after invalidate Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 260/431] RDMA/hns: Fix hns_roce_table_get return value Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 261/431] ARM: dts: iwg20d-q7-common: Fix backlight pwm specifier Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 262/431] arm64: dts: renesas: ulcb-kf: Remove flow control for SCIF1 Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 263/431] drm/msm/dpu: set DSC flush bit correctly at MDP CTL flush register Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 264/431] drm/msm/dpu: always clear every individual pending flush mask Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 265/431] fbdev: omapfb: lcd_mipid: Fix an error handling path in mipid_spi_probe() Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 266/431] arm64: dts: ti: k3-j7200: Fix physical address of pin Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 267/431] Input: pm8941-powerkey - fix debounce on gen2+ PMICs Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 268/431] ARM: dts: stm32: Fix audio routing on STM32MP15xx DHCOM PDK2 Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 269/431] ARM: dts: stm32: fix i2s endpoint format property for stm32mp15xx-dkx Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 270/431] hwmon: (gsc-hwmon) fix fan pwm temperature scaling Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 271/431] hwmon: (pmbus/adm1275) Fix problems with temperature monitoring on ADM1272 Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 272/431] ARM: dts: BCM5301X: fix duplex-full => full-duplex Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 273/431] clk: Export clk_hw_forward_rate_request() Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 274/431] MIPS: DTS: CI20: Fix ACT8600 regulator node names Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 275/431] drm/amd/display: Fix a test CalculatePrefetchSchedule() Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 276/431] drm/amd/display: Fix a test dml32_rq_dlg_get_rq_reg() Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 277/431] drm/amdkfd: Fix potential deallocation of previously deallocated memory Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 278/431] soc: mediatek: SVS: Fix MT8192 GPU node name Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 279/431] drm/amd/display: Fix artifacting on eDP panels when engaging freesync video mode Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 280/431] drm/radeon: fix possible division-by-zero errors Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 281/431] HID: uclogic: Modular KUnit tests should not depend on KUNIT=y Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 282/431] RDMA/rxe: Fix access checks in rxe_check_bind_mw Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 283/431] amdgpu: validate offset_in_bo of drm_amdgpu_gem_va Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 284/431] drm/msm/a6xx: dont set IO_PGTABLE_QUIRK_ARM_OUTER_WBWA with coherent SMMU Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 285/431] drm/msm/a5xx: really check for A510 in a5xx_gpu_init Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 286/431] RDMA/bnxt_re: wraparound mbox producer index Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 287/431] RDMA/bnxt_re: Avoid calling wake_up threads from spin_lock context Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 288/431] clk: imx: clk-imxrt1050: fix memory leak in imxrt1050_clocks_probe Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 289/431] clk: imx: clk-imx8mn: fix memory leak in imx8mn_clocks_probe Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 290/431] clk: imx93: fix memory leak and missing unwind goto in imx93_clocks_probe Greg Kroah-Hartman
2023-07-09 11:13 ` [PATCH 6.3 291/431] clk: imx: clk-imx8mp: improve error handling in imx8mp_clocks_probe() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 292/431] clk: mediatek: fix of_iomap memory leak Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 293/431] arm64: dts: qcom: qdu1000: Flush RSC sleep & wake votes Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 294/431] arm64: dts: qcom: sdm670: " Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 295/431] arm64: dts: qcom: sdm845: " Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 296/431] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 297/431] arm64: dts: qcom: sm8250-edo: Panel framebuffer is 2.5k instead of 4k Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 298/431] arm64: dts: qcom: sm8550: Add missing interconnect path to USB HC Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 299/431] clk: bcm: rpi: Fix off by one in raspberrypi_discover_clocks() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 300/431] clk: clocking-wizard: Fix Oops in clk_wzrd_register_divider() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 301/431] clk: tegra: tegra124-emc: Fix potential memory leak Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 302/431] arm64: dts: ti: k3-j721e-beagleboneai64: Fix mailbox node status Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 303/431] arm64: dts: ti: k3-j784s4-evm: Fix main_i2c0 alias Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 304/431] arm64: dts: ti: k3-j784s4-evm: Enable MCU CPSW2G Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 305/431] arm64: dts: ti: k3-j784s4: Fix wakeup pinmux range and pinctrl node offsets Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 306/431] arm64: dts: ti: k3-am69-sk: Fix main_i2c0 alias Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 307/431] ALSA: ac97: Fix possible NULL dereference in snd_ac97_mixer Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 308/431] drm/msm/dpu: do not enable color-management if DSPPs are not available Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 309/431] drm/msm/dpu: Fix slice_last_group_size calculation Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 310/431] drm/msm/dsi: Remove incorrect references to slice_count Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 311/431] drm/msm/dp: Drop aux devices together with DP controller Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 312/431] drm/msm/dp: Free resources after unregistering them Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 313/431] arm64: dts: mediatek: Add cpufreq nodes for MT8192 Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 314/431] arm64: dts: mediatek: mt8192: Fix CPUs capacity-dmips-mhz Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 315/431] arm64: dts: mt7986: increase bl2 partition on NAND of Bananapi R3 Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 316/431] drm/amdgpu: Fix memcpy() in sienna_cichlid_append_powerplay_table function Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 317/431] drm/amdgpu: Fix usage of UMC fill record in RAS Greg Kroah-Hartman
2023-07-10 2:55 ` Zhou1, Tao
2023-07-09 11:14 ` [PATCH 6.3 318/431] drm/msm/dpu: correct MERGE_3D length Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 319/431] clk: mediatek: clk-mt8173-apmixedsys: Fix return value for of_iomap() error Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 320/431] clk: mediatek: clk-mt8173-apmixedsys: Fix iomap not released issue Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 321/431] clk: vc5: check memory returned by kasprintf() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 322/431] clk: cdce925: check return value of kasprintf() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 323/431] clk: si5341: return error if one synth clock registration fails Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 324/431] clk: si5341: check return value of {devm_}kasprintf() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 325/431] clk: si5341: free unused memory on probe failure Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 326/431] clk: keystone: sci-clk: check return value of kasprintf() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 327/431] clk: ti: clkctrl: " Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 328/431] drivers: meson: secure-pwrc: always enable DMA domain Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 329/431] ovl: update of dentry revalidate flags after copy up Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 330/431] ASoC: imx-audmix: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 331/431] clk: Fix memory leak in devm_clk_notifier_register() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 332/431] ARM: dts: lan966x: kontron-d10: fix board reset Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 333/431] ARM: dts: lan966x: kontron-d10: fix SPI CS Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 334/431] ASoC: amd: acp: clear pdm dma interrupt mask Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 335/431] MIPS: DTS: CI20: Add parent supplies to ACT8600 regulators Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 336/431] MIPS: DTS: CI20: Raise VDDCORE voltage to 1.125 volts Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 337/431] iommufd: Do not access the area pointer after unlocking Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 338/431] iommufd: Call iopt_area_contig_done() under the lock Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 339/431] PCI: cadence: Fix Gen2 Link Retraining process Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 340/431] PCI: vmd: Reset VMD config register between soft reboots Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 341/431] scsi: qedf: Fix NULL dereference in error handling Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 342/431] pinctrl: bcm2835: Handle gpiochip_add_pin_range() errors Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 343/431] platform/x86: lenovo-yogabook: Fix work race on remove() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 344/431] platform/x86: lenovo-yogabook: Reprobe devices " Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 345/431] platform/x86: lenovo-yogabook: Set default keyboard backligh brightness on probe() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 346/431] PCI/ASPM: Disable ASPM on MFD function removal to avoid use-after-free Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 347/431] scsi: 3w-xxxx: Add error handling for initialization failure in tw_probe() Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 348/431] pinctrl: at91: Dont mix non-devm calls with devm ones Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 349/431] pinctrl: at91: Use dev_err_probe() instead of custom messaging Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 350/431] pinctrl: at91: fix a couple NULL vs IS_ERR() checks Greg Kroah-Hartman
2023-07-09 11:14 ` [PATCH 6.3 351/431] PCI: pciehp: Cancel bringup sequence if card is not present Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 352/431] perf evsel: Dont let for_each_group() treat the head of the list as one of its nodes Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 353/431] PCI: ftpci100: Release the clock resources Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 354/431] pinctrl: sunplus: Add check for kmalloc Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 355/431] scsi: ufs: Declare ufshcd_{hold,release}() once Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 356/431] PCI: Add pci_clear_master() stub for non-CONFIG_PCI Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 357/431] scsi: lpfc: Revise NPIV ELS unsol rcv cmpl logic to drop ndlp based on nlp_state Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 358/431] scsi: ufs: core: Increase the START STOP UNIT timeout from one to ten seconds Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 359/431] scsi: ufs: core: Fix handling of lrbp->cmd Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 360/431] pinctrl: tegra: Duplicate pinmux functions table Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 361/431] perf bench: Add missing setlocale() call to allow usage of %d style formatting Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 362/431] pinctrl: cherryview: Return correct value if pin in push-pull mode Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 363/431] platform/x86:intel/pmc: Remove Meteor Lake S platform support Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 364/431] platform/x86: think-lmi: mutex protection around multiple WMI calls Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 365/431] platform/x86: think-lmi: Correct System password interface Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 366/431] platform/x86: think-lmi: Correct NVME password handling Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 367/431] pinctrl:sunplus: Add check for kmalloc Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 368/431] pinctrl: npcm7xx: Add missing check for ioremap Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 369/431] kcsan: Dont expect 64 bits atomic builtins from 32 bits architectures Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 370/431] powerpc/interrupt: Dont read MSR from interrupt_exit_kernel_prepare() Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 371/431] powerpc/signal32: Force inlining of __unsafe_save_user_regs() and save_tm_user_regs_unsafe() Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 372/431] perf script: Fix allocation of evsel->priv related to per-event dump files Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 373/431] platform/x86: thinkpad_acpi: Fix lkp-tests warnings for platform profiles Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 374/431] perf dwarf-aux: Fix off-by-one in die_get_varname() Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 375/431] perf tests task_analyzer: Fix bad substitution ${$1} Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 376/431] perf tests task_analyzer: Skip tests if no libtraceevent support Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 377/431] platform/x86/dell/dell-rbtn: Fix resources leaking on error path Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 378/431] perf tool x86: Consolidate is_amd check into single function Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 379/431] perf tool x86: Fix perf_env memory leak Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 380/431] powerpc/64s: Fix VAS mm use after free Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 381/431] pinctrl: freescale: Fix a memory out of bounds when num_configs is 1 Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 382/431] pinctrl: microchip-sgpio: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 383/431] pinctrl: at91-pio4: " Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 384/431] perf stat: Reset aggr stats for each run Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 385/431] scsi: ufs: core: Remove a ufshcd_add_command_trace() call Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 386/431] scsi: ufs: core: mcq: Fix the incorrect OCS value for the device command Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 387/431] powerpc/powernv/sriov: perform null check on iov before dereferencing iov Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 388/431] powerpc: update ppc_save_regs to save current r1 in pt_regs Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 389/431] platform/x86:intel/pmc: Update maps for Meteor Lake P/M platforms Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 390/431] riscv: uprobes: Restore thread.bad_cause Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 391/431] powerpc/book3s64/mm: Fix DirectMap stats in /proc/meminfo Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 392/431] powerpc/mm/dax: Fix the condition when checking if altmap vmemap can cross-boundary Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 393/431] perf test: Set PERF_EXEC_PATH for script execution Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 394/431] PCI: endpoint: Fix a Kconfig prompt of vNTB driver Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 395/431] PCI: endpoint: functions/pci-epf-test: Fix dma_chan direction Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 396/431] PCI: vmd: Fix uninitialized variable usage in vmd_enable_domain() Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 397/431] vfio/mdev: Move the compat_class initialization to module init Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 398/431] hwrng: virtio - Fix race on data_avail and actual data Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 399/431] modpost: remove broken calculation of exception_table_entry size Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 400/431] crypto: nx - fix build warnings when DEBUG_FS is not enabled Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 401/431] modpost: fix section mismatch message for R_ARM_ABS32 Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 402/431] modpost: fix section mismatch message for R_ARM_{PC24,CALL,JUMP24} Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 403/431] crypto: marvell/cesa - Fix type mismatch warning Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 404/431] crypto: jitter - correct health test during initialization Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 405/431] modpost: fix off by one in is_executable_section() Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 406/431] ARC: define ASM_NL and __ALIGN(_STR) outside #ifdef __ASSEMBLY__ guard Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 407/431] crypto: qat - unmap buffer before free for DH Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 408/431] crypto: qat - unmap buffers before free for RSA Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 409/431] NFSv4.2: fix wrong shrinker_id Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 410/431] NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION Greg Kroah-Hartman
2023-07-09 11:15 ` [PATCH 6.3 411/431] SMB3: Do not send lease break acknowledgment if all file handles have been closed Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 412/431] dax: Fix dax_mapping_release() use after free Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 413/431] dax: Introduce alloc_dev_dax_id() Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 414/431] dax/kmem: Pass valid argument to memory_group_register_static Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 415/431] hwrng: st - keep clock enabled while hwrng is registered Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 416/431] kbuild: Fix CFI failures with GCOV Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 417/431] kbuild: Disable GCOV for *.mod.o Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 418/431] cxl/region: Move cache invalidation before region teardown, and before setup Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 419/431] cxl/region: Flag partially torn down regions as unusable Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 420/431] cxl/region: Fix state transitions after reset failure Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 421/431] kbuild: builddeb: always make modules_install, to install modules.builtin* Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 422/431] kbuild: deb-pkg: remove the CONFIG_MODULES check in buildeb Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 423/431] efi/libstub: Disable PCI DMA before grabbing the EFI memory map Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 424/431] cifs: prevent use-after-free by freeing the cfile later Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 425/431] cifs: do all necessary checks for credits within or before locking Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 426/431] smb: client: fix broken file attrs with nodfs mounts Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 427/431] smb: client: fix shared DFS root mounts with different prefixes Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 428/431] ksmbd: avoid field overflow warning Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 429/431] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 430/431] x86/efi: Make efi_set_virtual_address_map IBT safe Greg Kroah-Hartman
2023-07-09 11:16 ` [PATCH 6.3 431/431] md/raid1-10: fix casting from randomized structure in raid1_submit_write() Greg Kroah-Hartman
2023-07-09 20:06 ` [PATCH 6.3 000/431] 6.3.13-rc1 review Daniel Díaz
2023-07-09 20:22 ` Greg Kroah-Hartman
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=20230709111456.204407285@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=aaro.koskinen@iki.fi \
--cc=andreas@kemnade.info \
--cc=andy.shevchenko@gmail.com \
--cc=christophe.leroy@csgroup.eu \
--cc=lee@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=patches@lists.linux.dev \
--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