All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Goffredo Baroncelli <kreijack@libero.it>,
	Anand Jain <anand.jain@oracle.com>, Qu Wenruo <wqu@suse.com>,
	David Sterba <dsterba@suse.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 264/290] btrfs: check superblock to ensure the fs was not modified at thaw time
Date: Tue, 10 Jan 2023 19:05:56 +0100	[thread overview]
Message-ID: <20230110180041.094494249@linuxfoundation.org> (raw)
In-Reply-To: <20230110180031.620810905@linuxfoundation.org>

From: Qu Wenruo <wqu@suse.com>

[ Upstream commit a05d3c9153145283ce9c58a1d7a9056fbb85f6a1 ]

[BACKGROUND]
There is an incident report that, one user hibernated the system, with
one btrfs on removable device still mounted.

Then by some incident, the btrfs got mounted and modified by another
system/OS, then back to the hibernated system.

After resuming from the hibernation, new write happened into the victim btrfs.

Now the fs is completely broken, since the underlying btrfs is no longer
the same one before the hibernation, and the user lost their data due to
various transid mismatch.

[REPRODUCER]
We can emulate the situation using the following small script:

  truncate -s 1G $dev
  mkfs.btrfs -f $dev
  mount $dev $mnt
  fsstress -w -d $mnt -n 500
  sync
  xfs_freeze -f $mnt
  cp $dev $dev.backup

  # There is no way to mount the same cloned fs on the same system,
  # as the conflicting fsid will be rejected by btrfs.
  # Thus here we have to wipe the fs using a different btrfs.
  mkfs.btrfs -f $dev.backup

  dd if=$dev.backup of=$dev bs=1M
  xfs_freeze -u $mnt
  fsstress -w -d $mnt -n 20
  umount $mnt
  btrfs check $dev

The final fsck will fail due to some tree blocks has incorrect fsid.

This is enough to emulate the problem hit by the unfortunate user.

[ENHANCEMENT]
Although such case should not be that common, it can still happen from
time to time.

>From the view of btrfs, we can detect any unexpected super block change,
and if there is any unexpected change, we just mark the fs read-only,
and thaw the fs.

By this we can limit the damage to minimal, and I hope no one would lose
their data by this anymore.

Suggested-by: Goffredo Baroncelli <kreijack@libero.it>
Link: https://lore.kernel.org/linux-btrfs/83bf3b4b-7f4c-387a-b286-9251e3991e34@bluemole.com/
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/btrfs/disk-io.c | 25 ++++++++++++++-----
 fs/btrfs/disk-io.h |  4 +++-
 fs/btrfs/super.c   | 60 ++++++++++++++++++++++++++++++++++++++++++++++
 fs/btrfs/volumes.c |  2 +-
 4 files changed, 83 insertions(+), 8 deletions(-)

diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 2fd46093e5bb..6484f61c6fbb 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -2491,8 +2491,8 @@ static int btrfs_read_roots(struct btrfs_fs_info *fs_info)
  * 		1, 2	2nd and 3rd backup copy
  * 	       -1	skip bytenr check
  */
-static int validate_super(struct btrfs_fs_info *fs_info,
-			    struct btrfs_super_block *sb, int mirror_num)
+int btrfs_validate_super(struct btrfs_fs_info *fs_info,
+			 struct btrfs_super_block *sb, int mirror_num)
 {
 	u64 nodesize = btrfs_super_nodesize(sb);
 	u64 sectorsize = btrfs_super_sectorsize(sb);
@@ -2675,7 +2675,7 @@ static int validate_super(struct btrfs_fs_info *fs_info,
  */
 static int btrfs_validate_mount_super(struct btrfs_fs_info *fs_info)
 {
-	return validate_super(fs_info, fs_info->super_copy, 0);
+	return btrfs_validate_super(fs_info, fs_info->super_copy, 0);
 }
 
 /*
@@ -2689,7 +2689,7 @@ static int btrfs_validate_write_super(struct btrfs_fs_info *fs_info,
 {
 	int ret;
 
-	ret = validate_super(fs_info, sb, -1);
+	ret = btrfs_validate_super(fs_info, sb, -1);
 	if (ret < 0)
 		goto out;
 	if (!btrfs_supported_super_csum(btrfs_super_csum_type(sb))) {
@@ -3703,7 +3703,7 @@ static void btrfs_end_super_write(struct bio *bio)
 }
 
 struct btrfs_super_block *btrfs_read_dev_one_super(struct block_device *bdev,
-						   int copy_num)
+						   int copy_num, bool drop_cache)
 {
 	struct btrfs_super_block *super;
 	struct page *page;
@@ -3721,6 +3721,19 @@ struct btrfs_super_block *btrfs_read_dev_one_super(struct block_device *bdev,
 	if (bytenr + BTRFS_SUPER_INFO_SIZE >= i_size_read(bdev->bd_inode))
 		return ERR_PTR(-EINVAL);
 
+	if (drop_cache) {
+		/* This should only be called with the primary sb. */
+		ASSERT(copy_num == 0);
+
+		/*
+		 * Drop the page of the primary superblock, so later read will
+		 * always read from the device.
+		 */
+		invalidate_inode_pages2_range(mapping,
+				bytenr >> PAGE_SHIFT,
+				(bytenr + BTRFS_SUPER_INFO_SIZE) >> PAGE_SHIFT);
+	}
+
 	page = read_cache_page_gfp(mapping, bytenr >> PAGE_SHIFT, GFP_NOFS);
 	if (IS_ERR(page))
 		return ERR_CAST(page);
@@ -3752,7 +3765,7 @@ struct btrfs_super_block *btrfs_read_dev_super(struct block_device *bdev)
 	 * later supers, using BTRFS_SUPER_MIRROR_MAX instead
 	 */
 	for (i = 0; i < 1; i++) {
-		super = btrfs_read_dev_one_super(bdev, i);
+		super = btrfs_read_dev_one_super(bdev, i, false);
 		if (IS_ERR(super))
 			continue;
 
diff --git a/fs/btrfs/disk-io.h b/fs/btrfs/disk-io.h
index 1b8fd3deafc9..9de0c39f63a2 100644
--- a/fs/btrfs/disk-io.h
+++ b/fs/btrfs/disk-io.h
@@ -56,10 +56,12 @@ int __cold open_ctree(struct super_block *sb,
 	       struct btrfs_fs_devices *fs_devices,
 	       char *options);
 void __cold close_ctree(struct btrfs_fs_info *fs_info);
+int btrfs_validate_super(struct btrfs_fs_info *fs_info,
+			 struct btrfs_super_block *sb, int mirror_num);
 int write_all_supers(struct btrfs_fs_info *fs_info, int max_mirrors);
 struct btrfs_super_block *btrfs_read_dev_super(struct block_device *bdev);
 struct btrfs_super_block *btrfs_read_dev_one_super(struct block_device *bdev,
-						   int copy_num);
+						   int copy_num, bool drop_cache);
 int btrfs_commit_super(struct btrfs_fs_info *fs_info);
 struct btrfs_root *btrfs_read_tree_root(struct btrfs_root *tree_root,
 					struct btrfs_key *key);
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 61b84391be58..bde5ead01c24 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -2497,11 +2497,71 @@ static int btrfs_freeze(struct super_block *sb)
 	return btrfs_commit_transaction(trans);
 }
 
+static int check_dev_super(struct btrfs_device *dev)
+{
+	struct btrfs_fs_info *fs_info = dev->fs_info;
+	struct btrfs_super_block *sb;
+	int ret = 0;
+
+	/* This should be called with fs still frozen. */
+	ASSERT(test_bit(BTRFS_FS_FROZEN, &fs_info->flags));
+
+	/* Missing dev, no need to check. */
+	if (!dev->bdev)
+		return 0;
+
+	/* Only need to check the primary super block. */
+	sb = btrfs_read_dev_one_super(dev->bdev, 0, true);
+	if (IS_ERR(sb))
+		return PTR_ERR(sb);
+
+	/* Btrfs_validate_super() includes fsid check against super->fsid. */
+	ret = btrfs_validate_super(fs_info, sb, 0);
+	if (ret < 0)
+		goto out;
+
+	if (btrfs_super_generation(sb) != fs_info->last_trans_committed) {
+		btrfs_err(fs_info, "transid mismatch, has %llu expect %llu",
+			btrfs_super_generation(sb),
+			fs_info->last_trans_committed);
+		ret = -EUCLEAN;
+		goto out;
+	}
+out:
+	btrfs_release_disk_super(sb);
+	return ret;
+}
+
 static int btrfs_unfreeze(struct super_block *sb)
 {
 	struct btrfs_fs_info *fs_info = btrfs_sb(sb);
+	struct btrfs_device *device;
+	int ret = 0;
 
+	/*
+	 * Make sure the fs is not changed by accident (like hibernation then
+	 * modified by other OS).
+	 * If we found anything wrong, we mark the fs error immediately.
+	 *
+	 * And since the fs is frozen, no one can modify the fs yet, thus
+	 * we don't need to hold device_list_mutex.
+	 */
+	list_for_each_entry(device, &fs_info->fs_devices->devices, dev_list) {
+		ret = check_dev_super(device);
+		if (ret < 0) {
+			btrfs_handle_fs_error(fs_info, ret,
+				"super block on devid %llu got modified unexpectedly",
+				device->devid);
+			break;
+		}
+	}
 	clear_bit(BTRFS_FS_FROZEN, &fs_info->flags);
+
+	/*
+	 * We still return 0, to allow VFS layer to unfreeze the fs even the
+	 * above checks failed. Since the fs is either fine or read-only, we're
+	 * safe to continue, without causing further damage.
+	 */
 	return 0;
 }
 
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 6b86a3cec04c..f01549b8c7c5 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -2074,7 +2074,7 @@ void btrfs_scratch_superblocks(struct btrfs_fs_info *fs_info,
 		struct page *page;
 		int ret;
 
-		disk_super = btrfs_read_dev_one_super(bdev, copy_num);
+		disk_super = btrfs_read_dev_one_super(bdev, copy_num, false);
 		if (IS_ERR(disk_super))
 			continue;
 
-- 
2.35.1




  parent reply	other threads:[~2023-01-10 18:34 UTC|newest]

Thread overview: 305+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-10 18:01 [PATCH 5.15 000/290] 5.15.87-rc1 review Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 001/290] usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 002/290] cifs: fix oops during encryption Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 003/290] Revert "selftests/bpf: Add test for unstable CT lookup API" Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 004/290] nvme-pci: fix doorbell buffer value endianness Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 005/290] nvme-pci: fix mempool alloc size Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 006/290] nvme-pci: fix page size checks Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 007/290] ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 008/290] ACPI: resource: do IRQ override on LENOVO IdeaPad Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 009/290] ACPI: resource: do IRQ override on XMG Core 15 Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 010/290] ACPI: resource: do IRQ override on Lenovo 14ALC7 Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 011/290] block, bfq: fix uaf for bfqq in bfq_exit_icq_bfqq Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 012/290] ata: ahci: Fix PCS quirk application for suspend Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 013/290] nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 014/290] nvmet: dont defer passthrough commands with trivial effects to the workqueue Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 015/290] fs/ntfs3: Validate BOOT record_size Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 016/290] fs/ntfs3: Add overflow check for attribute size Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 017/290] fs/ntfs3: Validate data run offset Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 018/290] fs/ntfs3: Add null pointer check to attr_load_runs_vcn Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 019/290] fs/ntfs3: Fix memory leak on ntfs_fill_super() error path Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 020/290] fs/ntfs3: Add null pointer check for inode operations Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 021/290] fs/ntfs3: Validate attribute name offset Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 022/290] fs/ntfs3: Validate buffer length while parsing index Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 023/290] fs/ntfs3: Validate resident attribute name Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 024/290] fs/ntfs3: Fix slab-out-of-bounds read in run_unpack Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 025/290] soundwire: dmi-quirks: add quirk variant for LAPBC710 NUC15 Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 026/290] fs/ntfs3: Validate index root when initialize NTFS security Greg Kroah-Hartman
2023-01-10 18:01 ` [PATCH 5.15 027/290] fs/ntfs3: Use __GFP_NOWARN allocation at wnd_init() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 028/290] fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_fill_super() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 029/290] fs/ntfs3: Delete duplicate condition in ntfs_read_mft() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 030/290] fs/ntfs3: Fix slab-out-of-bounds in r_page Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 031/290] objtool: Fix SEGFAULT Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 032/290] powerpc/rtas: avoid device tree lookups in rtas_os_term() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 033/290] powerpc/rtas: avoid scheduling " Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 034/290] HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 035/290] HID: plantronics: Additional PIDs for double volume key presses quirk Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 036/290] pstore: Properly assign mem_type property Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 037/290] pstore/zone: Use GFP_ATOMIC to allocate zone buffer Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 038/290] hfsplus: fix bug causing custom uid and gid being unable to be assigned with mount Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 039/290] binfmt: Fix error return code in load_elf_fdpic_binary() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 040/290] ovl: Use ovl mounters fsuid and fsgid in ovl_link() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 041/290] ALSA: line6: correct midi status byte when receiving data from podxt Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 042/290] ALSA: line6: fix stack overflow in line6_midi_transmit Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 043/290] pnode: terminate at peers of source Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 044/290] mfd: mt6360: Add bounds checking in Regmap read/write call-backs Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 045/290] md: fix a crash in mempool_free Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 046/290] mm, compaction: fix fast_isolate_around() to stay within boundaries Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 047/290] f2fs: should put a page when checking the summary info Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 048/290] f2fs: allow to read node block after shutdown Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 049/290] mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 050/290] tpm: acpi: Call acpi_put_table() to fix memory leak Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 051/290] tpm: tpm_crb: Add the missed " Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 052/290] tpm: tpm_tis: " Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 053/290] SUNRPC: Dont leak netobj memory when gss_read_proxy_verf() fails Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 054/290] kcsan: Instrument memcpy/memset/memmove with newer Clang Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 055/290] ASoC: Intel/SOF: use set_stream() instead of set_tdm_slots() for HDAudio Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 056/290] ASoC/SoundWire: dai: expand stream concept beyond SoundWire Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 057/290] rcu-tasks: Simplify trc_read_check_handler() atomic operations Greg Kroah-Hartman
2023-01-10 18:26   ` Joel Fernandes
2023-01-10 18:27     ` Joel Fernandes
2023-01-10 18:34       ` Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 058/290] net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSO Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 059/290] net/af_packet: make sure to pull mac header Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 060/290] media: stv0288: use explicitly signed char Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 061/290] soc: qcom: Select REMAP_MMIO for LLCC driver Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 062/290] kest.pl: Fix grub2 menu handling for rebooting Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 063/290] ktest.pl minconfig: Unset configs instead of just removing them Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 064/290] jbd2: use the correct print format Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 065/290] perf/x86/intel/uncore: Disable I/O stacks to PMU mapping on ICX-D Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 066/290] perf/x86/intel/uncore: Clear attr_update properly Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 067/290] arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 068/290] mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 069/290] btrfs: fix resolving backrefs for inline extent followed by prealloc Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 070/290] ARM: ux500: do not directly dereference __iomem Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 071/290] arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 072/290] selftests: Use optional USERCFLAGS and USERLDFLAGS Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 073/290] PM/devfreq: governor: Add a private governor_data for governor Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 074/290] cpufreq: Init completion before kobject_init_and_add() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 075/290] ALSA: patch_realtek: Fix Dell Inspiron Plus 16 Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 076/290] ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 077/290] fs: dlm: fix sock release if listen fails Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 078/290] fs: dlm: retry accept() until -EAGAIN or error returns Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 079/290] mptcp: mark ops structures as ro_after_init Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 080/290] mptcp: remove MPTCP ifdef in TCP SYN cookies Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 081/290] dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 082/290] dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 083/290] dm thin: Use last transactions pmd->root when commit failed Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 084/290] dm thin: resume even if in FAIL mode Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 085/290] dm thin: Fix UAF in run_timer_softirq() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 086/290] dm integrity: Fix UAF in dm_integrity_dtr() Greg Kroah-Hartman
2023-01-10 18:02 ` [PATCH 5.15 087/290] dm clone: Fix UAF in clone_dtr() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 088/290] dm cache: Fix UAF in destroy() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 089/290] dm cache: set needs_check flag after aborting metadata Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 090/290] tracing/hist: Fix out-of-bound write on action_data.var_ref_idx Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 091/290] perf/core: Call LSM hook after copying perf_event_attr Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 092/290] of/kexec: Fix reading 32-bit "linux,initrd-{start,end}" values Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 093/290] KVM: VMX: Resume guest immediately when injecting #GP on ECREATE Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 094/290] KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 095/290] KVM: nVMX: Properly expose ENABLE_USR_WAIT_PAUSE control to L1 Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 096/290] x86/microcode/intel: Do not retry microcode reloading on the APs Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 097/290] ftrace/x86: Add back ftrace_expected for ftrace bug reports Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 098/290] x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 099/290] x86/kprobes: Fix optprobe optimization " Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 100/290] tracing: Fix race where eprobes can be called before the event Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 101/290] tracing: Fix complicated dependency of CONFIG_TRACER_MAX_TRACE Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 102/290] tracing/hist: Fix wrong return value in parse_action_params() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 103/290] tracing/probes: Handle system names with hyphens Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 104/290] tracing: Fix infinite loop in tracing_read_pipe on overflowed print_trace_line Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 105/290] staging: media: tegra-video: fix chan->mipi value on error Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 106/290] staging: media: tegra-video: fix device_node use after free Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 107/290] ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 108/290] media: dvb-core: Fix double free in dvb_register_device() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 109/290] media: dvb-core: Fix UAF due to refcount races at releasing Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 110/290] cifs: fix confusing debug message Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 111/290] cifs: fix missing display of three mount options Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 112/290] rtc: ds1347: fix value written to century register Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 113/290] block: mq-deadline: Do not break sequential write streams to zoned HDDs Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 114/290] md/bitmap: Fix bitmap chunk size overflow issues Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 115/290] efi: Add iMac Pro 2017 to uefi skip cert quirk Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 116/290] wifi: wilc1000: sdio: fix module autoloading Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 117/290] ASoC: jz4740-i2s: Handle independent FIFO flush bits Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 118/290] ipu3-imgu: Fix NULL pointer dereference in imgu_subdev_set_selection() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 119/290] ipmi: fix long wait in unload when IPMI disconnect Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 120/290] mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 121/290] ima: Fix a potential NULL pointer access in ima_restore_measurement_list Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 122/290] ipmi: fix use after free in _ipmi_destroy_user() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 123/290] PCI: Fix pci_device_is_present() for VFs by checking PF Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 124/290] PCI/sysfs: Fix double free in error path Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 125/290] riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 126/290] riscv: mm: notify remote harts about mmu cache updates Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 127/290] crypto: n2 - add missing hash statesize Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 128/290] crypto: ccp - Add support for TEE for PCI ID 0x14CA Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 129/290] driver core: Fix bus_type.match() error handling in __driver_attach() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 130/290] phy: qcom-qmp-combo: fix sc8180x reset Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 131/290] iommu/amd: Fix ivrs_acpihid cmdline parsing code Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 132/290] remoteproc: core: Do pm_relax when in RPROC_OFFLINE state Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 133/290] parisc: led: Fix potential null-ptr-deref in start_task() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 134/290] device_cgroup: Roll back to original exceptions after copy failure Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 135/290] drm/connector: send hotplug uevent on connector cleanup Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 136/290] drm/vmwgfx: Validate the box size for the snooped cursor Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 137/290] drm/i915/dsi: fix VBT send packet port selection for dual link DSI Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 138/290] drm/ingenic: Fix missing platform_driver_unregister() call in ingenic_drm_init() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 139/290] ext4: silence the warning when evicting inode with dioread_nolock Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 140/290] ext4: add inode table check in __ext4_get_inode_loc to aovid possible infinite loop Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 141/290] ext4: remove trailing newline from ext4_msg() message Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 142/290] fs: ext4: initialize fsdata in pagecache_write() Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 143/290] ext4: fix use-after-free in ext4_orphan_cleanup Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 144/290] ext4: fix undefined behavior in bit shift for ext4_check_flag_values Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 145/290] ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 146/290] ext4: add helper to check quota inums Greg Kroah-Hartman
2023-01-10 18:03 ` [PATCH 5.15 147/290] ext4: fix bug_on in __es_tree_search caused by bad quota inode Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 148/290] ext4: fix reserved cluster accounting in __es_remove_extent() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 149/290] ext4: check and assert if marking an no_delete evicting inode dirty Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 150/290] ext4: fix bug_on in __es_tree_search caused by bad boot loader inode Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 151/290] ext4: fix leaking uninitialized memory in fast-commit journal Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 152/290] ext4: fix uninititialized value in ext4_evict_inode Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 153/290] ext4: init quota for old.inode in ext4_rename Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 154/290] ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 155/290] ext4: fix corruption when online resizing a 1K bigalloc fs Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 156/290] ext4: fix error code return to user-space in ext4_get_branch() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 157/290] ext4: avoid BUG_ON when creating xattrs Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 158/290] ext4: fix kernel BUG in ext4_write_inline_data_end() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 159/290] ext4: fix inode leak in ext4_xattr_inode_create() on an error path Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 160/290] ext4: initialize quota before expanding inode in setproject ioctl Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 161/290] ext4: avoid unaccounted block allocation when expanding inode Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 162/290] ext4: allocate extended attribute value in vmalloc area Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 163/290] drm/amdgpu: handle polaris10/11 overlap asics (v2) Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 164/290] drm/amdgpu: make display pinning more flexible (v2) Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 165/290] block: mq-deadline: Fix dd_finish_request() for zoned devices Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 166/290] tracing: Fix issue of missing one synthetic field Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 167/290] ext4: remove unused enum EXT4_FC_COMMIT_FAILED Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 168/290] ext4: use ext4_debug() instead of jbd_debug() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 169/290] ext4: introduce EXT4_FC_TAG_BASE_LEN helper Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 170/290] ext4: factor out ext4_fc_get_tl() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 171/290] ext4: fix potential out of bound read in ext4_fc_replay_scan() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 172/290] ext4: disable fast-commit of encrypted dir operations Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 173/290] ext4: dont set up encryption key during jbd2 transaction Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 174/290] ext4: add missing validation of fast-commit record lengths Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 175/290] ext4: fix unaligned memory access in ext4_fc_reserve_space() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 176/290] ext4: fix off-by-one errors in fast-commit block filling Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 177/290] ARM: renumber bits related to _TIF_WORK_MASK Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 178/290] phy: qcom-qmp-combo: fix out-of-bounds clock access Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 179/290] btrfs: replace strncpy() with strscpy() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 180/290] btrfs: move missing device handling in a dedicate function Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 181/290] btrfs: fix extent map use-after-free when handling missing device in read_one_chunk Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 182/290] x86/mce: Get rid of msr_ops Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 183/290] x86/MCE/AMD: Clear DFR errors found in THR handler Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 184/290] media: s5p-mfc: Fix to handle reference queue during finishing Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 185/290] media: s5p-mfc: Clear workbit to handle error condition Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 186/290] media: s5p-mfc: Fix in register read and write for H264 Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 187/290] perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 188/290] perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged data Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 189/290] ravb: Fix "failed to switch device to config mode" message during unbind Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 190/290] ext4: goto right label failed_mount3a Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 191/290] ext4: correct inconsistent error msg in nojournal mode Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 192/290] mbcache: automatically delete entries from cache on freeing Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 193/290] ext4: fix deadlock due to mbcache entry corruption Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 194/290] drm/i915/migrate: dont check the scratch page Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 195/290] drm/i915/migrate: fix offset calculation Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 196/290] drm/i915/migrate: fix length calculation Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 197/290] SUNRPC: ensure the matching upcall is in-flight upon downcall Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 198/290] btrfs: fix an error handling path in btrfs_defrag_leaves() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 199/290] bpf: pull before calling skb_postpull_rcsum() Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 200/290] drm/panfrost: Fix GEM handle creation ref-counting Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 201/290] netfilter: nf_tables: consolidate set description Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 202/290] netfilter: nf_tables: add function to create set stateful expressions Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 203/290] netfilter: nf_tables: perform type checking for existing sets Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 204/290] vmxnet3: correctly report csum_level for encapsulated packet Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 205/290] netfilter: nf_tables: honor set timeout and garbage collection updates Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 206/290] veth: Fix race with AF_XDP exposing old or uninitialized descriptors Greg Kroah-Hartman
2023-01-10 18:04 ` [PATCH 5.15 207/290] nfsd: shut down the NFSv4 state objects before the filecache Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 208/290] net: hns3: add interrupts re-initialization while doing VF FLR Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 209/290] net: hns3: refactor hns3_nic_reuse_page() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 210/290] net: hns3: extract macro to simplify ring stats update code Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 211/290] net: hns3: fix miss L3E checking for rx packet Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 212/290] net: hns3: fix VF promisc mode not update when mac table full Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 213/290] net: sched: fix memory leak in tcindex_set_parms Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 214/290] qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 215/290] net: dsa: mv88e6xxx: depend on PTP conditionally Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 216/290] nfc: Fix potential resource leaks Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 217/290] vdpa_sim: fix possible memory leak in vdpasim_net_init() and vdpasim_blk_init() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 218/290] vhost/vsock: Fix error handling in vhost_vsock_init() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 219/290] vringh: fix range used in iotlb_translate() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 220/290] vhost: fix range used in translate_desc() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 221/290] vdpa_sim: fix vringh initialization in vdpasim_queue_ready() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 222/290] net/mlx5: E-Switch, properly handle ingress tagged packets on VST Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 223/290] net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 224/290] net/mlx5: Avoid recovery in probe flows Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 225/290] net/mlx5e: IPoIB, Dont allow CQE compression to be turned on by default Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 226/290] net/mlx5e: TC, Refactor mlx5e_tc_add_flow_mod_hdr() to get flow attr Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 227/290] net/mlx5e: Always clear dest encap in neigh-update-del Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 228/290] net/mlx5e: Fix hw mtu initializing at XDP SQ allocation Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 229/290] net: amd-xgbe: add missed tasklet_kill Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 230/290] net: ena: Fix toeplitz initial hash value Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 231/290] net: ena: Dont register memory info on XDP exchange Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 232/290] net: ena: Account for the number of processed bytes in XDP Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 233/290] net: ena: Use bitmask to indicate packet redirection Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 234/290] net: ena: Fix rx_copybreak value update Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 235/290] net: ena: Set default value for RX interrupt moderation Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 236/290] net: ena: Update NUMA TPH hint register upon NUMA node update Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 237/290] net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 238/290] RDMA/mlx5: Fix mlx5_ib_get_hw_stats when used for device Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 239/290] RDMA/mlx5: Fix validation of max_rd_atomic caps for DC Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 240/290] drm/meson: Reduce the FIFO lines held when AFBC is not used Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 241/290] filelock: new helper: vfs_inode_has_locks Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 242/290] ceph: switch to vfs_inode_has_locks() to fix file lock bug Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 243/290] gpio: sifive: Fix refcount leak in sifive_gpio_probe Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 244/290] net: sched: atm: dont intepret cls results when asked to drop Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 245/290] net: sched: cbq: " Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 246/290] net: sparx5: Fix reading of the MAC address Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 247/290] netfilter: ipset: fix hash:net,port,net hang with /0 subnet Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 248/290] netfilter: ipset: Rework long task execution when adding/deleting entries Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 249/290] perf tools: Fix resources leak in perf_data__open_dir() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 250/290] drm/imx: ipuv3-plane: Fix overlay plane width Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 251/290] fs/ntfs3: dont hold ni_lock when calling truncate_setsize() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 252/290] drivers/net/bonding/bond_3ad: return when theres no aggregator Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 253/290] octeontx2-pf: Fix lmtst ID used in aura free Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 254/290] usb: rndis_host: Secure rndis_query check against int overflow Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 255/290] perf stat: Fix handling of --for-each-cgroup with --bpf-counters to match non BPF mode Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 256/290] drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 257/290] caif: fix memory leak in cfctrl_linkup_request() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 258/290] udf: Fix extension of the last extent in the file Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 259/290] ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 260/290] nvme: fix multipath crash caused by flush request when blktrace is enabled Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 261/290] io_uring: check for valid register opcode earlier Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 262/290] nvmet: use NVME_CMD_EFFECTS_CSUPP instead of open coding it Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 263/290] nvme: also return I/O command effects from nvme_command_effects Greg Kroah-Hartman
2023-01-10 18:05 ` Greg Kroah-Hartman [this message]
2023-01-10 18:05 ` [PATCH 5.15 265/290] x86/kexec: Fix double-free of elf header buffer Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 266/290] x86/bugs: Flush IBP in ib_prctl_set() Greg Kroah-Hartman
2023-01-10 18:05 ` [PATCH 5.15 267/290] nfsd: fix handling of readdir in v4root vs. mount upcall timeout Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 268/290] fbdev: matroxfb: G200eW: Increase max memory from 1 MB to 16 MB Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 269/290] block: dont allow splitting of a REQ_NOWAIT bio Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 270/290] io_uring: fix CQ waiting timeout handling Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 271/290] thermal: int340x: Add missing attribute for data rate base Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 272/290] riscv: uaccess: fix type of 0 variable on error in get_user() Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 273/290] riscv, kprobes: Stricter c.jr/c.jalr decoding Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 274/290] drm/i915/gvt: fix gvt debugfs destroy Greg Kroah-Hartman
2023-01-10 18:06   ` Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 275/290] drm/i915/gvt: fix vgpu debugfs clean in remove Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 276/290] hfs/hfsplus: use WARN_ON for sanity check Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 277/290] hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 278/290] ksmbd: fix infinite loop in ksmbd_conn_handler_loop() Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 279/290] ksmbd: check nt_len to be at least CIFS_ENCPWD_SIZE in ksmbd_decode_ntlmssp_auth_blob Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 280/290] Revert "ACPI: PM: Add support for upcoming AMD uPEP HID AMDI007" Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 281/290] mptcp: dedicated request sock for subflow in v6 Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 282/290] mptcp: use proper req destructor for IPv6 Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 283/290] ext4: dont allow journal inode to have encrypt flag Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 284/290] selftests: set the BUILD variable to absolute path Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 285/290] btrfs: make thaw time super block check to also verify checksum Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 286/290] net: hns3: fix return value check bug of rx copybreak Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 287/290] mbcache: Avoid nesting of cache->c_list_lock under bit locks Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 288/290] efi: random: combine bootloader provided RNG seed with RNG protocol output Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 289/290] io_uring: Fix unsigned res comparison with zero in io_fixup_rw_res() Greg Kroah-Hartman
2023-01-10 18:06 ` [PATCH 5.15 290/290] drm/mgag200: Fix PLL setup for G200_SE_A rev >=4 Greg Kroah-Hartman
2023-01-10 19:05 ` [PATCH 5.15 000/290] 5.15.87-rc1 review Florian Fainelli
2023-01-11  0:40 ` Shuah Khan
2023-01-11 10:22 ` Naresh Kamboju
2023-01-11 11:17 ` Jon Hunter
2023-01-11 13:02 ` Sudip Mukherjee
2023-01-11 13:11 ` Bagas Sanjaya
2023-01-11 17:23 ` Allen Pais
2023-01-12  0:39 ` Guenter Roeck
2023-01-12  2:44 ` Kelsey Steele
2023-01-12 10:34 ` Ron Economos

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=20230110180041.094494249@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=anand.jain@oracle.com \
    --cc=dsterba@suse.com \
    --cc=kreijack@libero.it \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=wqu@suse.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.