From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Qing Wang <wangqing@vivo.com>,
Ryusuke Konishi <konishi.ryusuke@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 173/186] nilfs2: replace snprintf in show functions with sysfs_emit
Date: Tue, 10 Sep 2024 11:34:28 +0200 [thread overview]
Message-ID: <20240910092601.755275877@linuxfoundation.org> (raw)
In-Reply-To: <20240910092554.645718780@linuxfoundation.org>
5.10-stable review patch. If anyone has any objections, please let me know.
------------------
From: Qing Wang <wangqing@vivo.com>
[ Upstream commit 3bcd6c5bd483287f4a09d3d59a012d47677b6edc ]
Patch series "nilfs2 updates".
This patch (of 2):
coccicheck complains about the use of snprintf() in sysfs show functions.
Fix the coccicheck warning:
WARNING: use scnprintf or sprintf.
Use sysfs_emit instead of scnprintf or sprintf makes more sense.
Link: https://lkml.kernel.org/r/1635151862-11547-1-git-send-email-konishi.ryusuke@gmail.com
Link: https://lkml.kernel.org/r/1634095759-4625-1-git-send-email-wangqing@vivo.com
Link: https://lkml.kernel.org/r/1635151862-11547-2-git-send-email-konishi.ryusuke@gmail.com
Signed-off-by: Qing Wang <wangqing@vivo.com>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Stable-dep-of: 683408258917 ("nilfs2: protect references to superblock parameters exposed in sysfs")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/nilfs2/sysfs.c | 76 +++++++++++++++++++++++------------------------
1 file changed, 38 insertions(+), 38 deletions(-)
diff --git a/fs/nilfs2/sysfs.c b/fs/nilfs2/sysfs.c
index 57afd06db62d..63ab8f9e6db3 100644
--- a/fs/nilfs2/sysfs.c
+++ b/fs/nilfs2/sysfs.c
@@ -108,7 +108,7 @@ static ssize_t
nilfs_snapshot_inodes_count_show(struct nilfs_snapshot_attr *attr,
struct nilfs_root *root, char *buf)
{
- return snprintf(buf, PAGE_SIZE, "%llu\n",
+ return sysfs_emit(buf, "%llu\n",
(unsigned long long)atomic64_read(&root->inodes_count));
}
@@ -116,7 +116,7 @@ static ssize_t
nilfs_snapshot_blocks_count_show(struct nilfs_snapshot_attr *attr,
struct nilfs_root *root, char *buf)
{
- return snprintf(buf, PAGE_SIZE, "%llu\n",
+ return sysfs_emit(buf, "%llu\n",
(unsigned long long)atomic64_read(&root->blocks_count));
}
@@ -129,7 +129,7 @@ static ssize_t
nilfs_snapshot_README_show(struct nilfs_snapshot_attr *attr,
struct nilfs_root *root, char *buf)
{
- return snprintf(buf, PAGE_SIZE, snapshot_readme_str);
+ return sysfs_emit(buf, snapshot_readme_str);
}
NILFS_SNAPSHOT_RO_ATTR(inodes_count);
@@ -230,7 +230,7 @@ static ssize_t
nilfs_mounted_snapshots_README_show(struct nilfs_mounted_snapshots_attr *attr,
struct the_nilfs *nilfs, char *buf)
{
- return snprintf(buf, PAGE_SIZE, mounted_snapshots_readme_str);
+ return sysfs_emit(buf, mounted_snapshots_readme_str);
}
NILFS_MOUNTED_SNAPSHOTS_RO_ATTR(README);
@@ -268,7 +268,7 @@ nilfs_checkpoints_checkpoints_number_show(struct nilfs_checkpoints_attr *attr,
ncheckpoints = cpstat.cs_ncps;
- return snprintf(buf, PAGE_SIZE, "%llu\n", ncheckpoints);
+ return sysfs_emit(buf, "%llu\n", ncheckpoints);
}
static ssize_t
@@ -291,7 +291,7 @@ nilfs_checkpoints_snapshots_number_show(struct nilfs_checkpoints_attr *attr,
nsnapshots = cpstat.cs_nsss;
- return snprintf(buf, PAGE_SIZE, "%llu\n", nsnapshots);
+ return sysfs_emit(buf, "%llu\n", nsnapshots);
}
static ssize_t
@@ -305,7 +305,7 @@ nilfs_checkpoints_last_seg_checkpoint_show(struct nilfs_checkpoints_attr *attr,
last_cno = nilfs->ns_last_cno;
spin_unlock(&nilfs->ns_last_segment_lock);
- return snprintf(buf, PAGE_SIZE, "%llu\n", last_cno);
+ return sysfs_emit(buf, "%llu\n", last_cno);
}
static ssize_t
@@ -319,7 +319,7 @@ nilfs_checkpoints_next_checkpoint_show(struct nilfs_checkpoints_attr *attr,
cno = nilfs->ns_cno;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", cno);
+ return sysfs_emit(buf, "%llu\n", cno);
}
static const char checkpoints_readme_str[] =
@@ -335,7 +335,7 @@ static ssize_t
nilfs_checkpoints_README_show(struct nilfs_checkpoints_attr *attr,
struct the_nilfs *nilfs, char *buf)
{
- return snprintf(buf, PAGE_SIZE, checkpoints_readme_str);
+ return sysfs_emit(buf, checkpoints_readme_str);
}
NILFS_CHECKPOINTS_RO_ATTR(checkpoints_number);
@@ -366,7 +366,7 @@ nilfs_segments_segments_number_show(struct nilfs_segments_attr *attr,
struct the_nilfs *nilfs,
char *buf)
{
- return snprintf(buf, PAGE_SIZE, "%lu\n", nilfs->ns_nsegments);
+ return sysfs_emit(buf, "%lu\n", nilfs->ns_nsegments);
}
static ssize_t
@@ -374,7 +374,7 @@ nilfs_segments_blocks_per_segment_show(struct nilfs_segments_attr *attr,
struct the_nilfs *nilfs,
char *buf)
{
- return snprintf(buf, PAGE_SIZE, "%lu\n", nilfs->ns_blocks_per_segment);
+ return sysfs_emit(buf, "%lu\n", nilfs->ns_blocks_per_segment);
}
static ssize_t
@@ -388,7 +388,7 @@ nilfs_segments_clean_segments_show(struct nilfs_segments_attr *attr,
ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
- return snprintf(buf, PAGE_SIZE, "%lu\n", ncleansegs);
+ return sysfs_emit(buf, "%lu\n", ncleansegs);
}
static ssize_t
@@ -408,7 +408,7 @@ nilfs_segments_dirty_segments_show(struct nilfs_segments_attr *attr,
return err;
}
- return snprintf(buf, PAGE_SIZE, "%llu\n", sustat.ss_ndirtysegs);
+ return sysfs_emit(buf, "%llu\n", sustat.ss_ndirtysegs);
}
static const char segments_readme_str[] =
@@ -424,7 +424,7 @@ nilfs_segments_README_show(struct nilfs_segments_attr *attr,
struct the_nilfs *nilfs,
char *buf)
{
- return snprintf(buf, PAGE_SIZE, segments_readme_str);
+ return sysfs_emit(buf, segments_readme_str);
}
NILFS_SEGMENTS_RO_ATTR(segments_number);
@@ -461,7 +461,7 @@ nilfs_segctor_last_pseg_block_show(struct nilfs_segctor_attr *attr,
last_pseg = nilfs->ns_last_pseg;
spin_unlock(&nilfs->ns_last_segment_lock);
- return snprintf(buf, PAGE_SIZE, "%llu\n",
+ return sysfs_emit(buf, "%llu\n",
(unsigned long long)last_pseg);
}
@@ -476,7 +476,7 @@ nilfs_segctor_last_seg_sequence_show(struct nilfs_segctor_attr *attr,
last_seq = nilfs->ns_last_seq;
spin_unlock(&nilfs->ns_last_segment_lock);
- return snprintf(buf, PAGE_SIZE, "%llu\n", last_seq);
+ return sysfs_emit(buf, "%llu\n", last_seq);
}
static ssize_t
@@ -490,7 +490,7 @@ nilfs_segctor_last_seg_checkpoint_show(struct nilfs_segctor_attr *attr,
last_cno = nilfs->ns_last_cno;
spin_unlock(&nilfs->ns_last_segment_lock);
- return snprintf(buf, PAGE_SIZE, "%llu\n", last_cno);
+ return sysfs_emit(buf, "%llu\n", last_cno);
}
static ssize_t
@@ -504,7 +504,7 @@ nilfs_segctor_current_seg_sequence_show(struct nilfs_segctor_attr *attr,
seg_seq = nilfs->ns_seg_seq;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", seg_seq);
+ return sysfs_emit(buf, "%llu\n", seg_seq);
}
static ssize_t
@@ -518,7 +518,7 @@ nilfs_segctor_current_last_full_seg_show(struct nilfs_segctor_attr *attr,
segnum = nilfs->ns_segnum;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", segnum);
+ return sysfs_emit(buf, "%llu\n", segnum);
}
static ssize_t
@@ -532,7 +532,7 @@ nilfs_segctor_next_full_seg_show(struct nilfs_segctor_attr *attr,
nextnum = nilfs->ns_nextnum;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", nextnum);
+ return sysfs_emit(buf, "%llu\n", nextnum);
}
static ssize_t
@@ -546,7 +546,7 @@ nilfs_segctor_next_pseg_offset_show(struct nilfs_segctor_attr *attr,
pseg_offset = nilfs->ns_pseg_offset;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%lu\n", pseg_offset);
+ return sysfs_emit(buf, "%lu\n", pseg_offset);
}
static ssize_t
@@ -560,7 +560,7 @@ nilfs_segctor_next_checkpoint_show(struct nilfs_segctor_attr *attr,
cno = nilfs->ns_cno;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", cno);
+ return sysfs_emit(buf, "%llu\n", cno);
}
static ssize_t
@@ -588,7 +588,7 @@ nilfs_segctor_last_seg_write_time_secs_show(struct nilfs_segctor_attr *attr,
ctime = nilfs->ns_ctime;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", ctime);
+ return sysfs_emit(buf, "%llu\n", ctime);
}
static ssize_t
@@ -616,7 +616,7 @@ nilfs_segctor_last_nongc_write_time_secs_show(struct nilfs_segctor_attr *attr,
nongc_ctime = nilfs->ns_nongc_ctime;
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", nongc_ctime);
+ return sysfs_emit(buf, "%llu\n", nongc_ctime);
}
static ssize_t
@@ -630,7 +630,7 @@ nilfs_segctor_dirty_data_blocks_count_show(struct nilfs_segctor_attr *attr,
ndirtyblks = atomic_read(&nilfs->ns_ndirtyblks);
up_read(&nilfs->ns_segctor_sem);
- return snprintf(buf, PAGE_SIZE, "%u\n", ndirtyblks);
+ return sysfs_emit(buf, "%u\n", ndirtyblks);
}
static const char segctor_readme_str[] =
@@ -667,7 +667,7 @@ static ssize_t
nilfs_segctor_README_show(struct nilfs_segctor_attr *attr,
struct the_nilfs *nilfs, char *buf)
{
- return snprintf(buf, PAGE_SIZE, segctor_readme_str);
+ return sysfs_emit(buf, segctor_readme_str);
}
NILFS_SEGCTOR_RO_ATTR(last_pseg_block);
@@ -736,7 +736,7 @@ nilfs_superblock_sb_write_time_secs_show(struct nilfs_superblock_attr *attr,
sbwtime = nilfs->ns_sbwtime;
up_read(&nilfs->ns_sem);
- return snprintf(buf, PAGE_SIZE, "%llu\n", sbwtime);
+ return sysfs_emit(buf, "%llu\n", sbwtime);
}
static ssize_t
@@ -750,7 +750,7 @@ nilfs_superblock_sb_write_count_show(struct nilfs_superblock_attr *attr,
sbwcount = nilfs->ns_sbwcount;
up_read(&nilfs->ns_sem);
- return snprintf(buf, PAGE_SIZE, "%u\n", sbwcount);
+ return sysfs_emit(buf, "%u\n", sbwcount);
}
static ssize_t
@@ -764,7 +764,7 @@ nilfs_superblock_sb_update_frequency_show(struct nilfs_superblock_attr *attr,
sb_update_freq = nilfs->ns_sb_update_freq;
up_read(&nilfs->ns_sem);
- return snprintf(buf, PAGE_SIZE, "%u\n", sb_update_freq);
+ return sysfs_emit(buf, "%u\n", sb_update_freq);
}
static ssize_t
@@ -812,7 +812,7 @@ static ssize_t
nilfs_superblock_README_show(struct nilfs_superblock_attr *attr,
struct the_nilfs *nilfs, char *buf)
{
- return snprintf(buf, PAGE_SIZE, sb_readme_str);
+ return sysfs_emit(buf, sb_readme_str);
}
NILFS_SUPERBLOCK_RO_ATTR(sb_write_time);
@@ -847,7 +847,7 @@ ssize_t nilfs_dev_revision_show(struct nilfs_dev_attr *attr,
u32 major = le32_to_cpu(sbp[0]->s_rev_level);
u16 minor = le16_to_cpu(sbp[0]->s_minor_rev_level);
- return snprintf(buf, PAGE_SIZE, "%d.%d\n", major, minor);
+ return sysfs_emit(buf, "%d.%d\n", major, minor);
}
static
@@ -855,7 +855,7 @@ ssize_t nilfs_dev_blocksize_show(struct nilfs_dev_attr *attr,
struct the_nilfs *nilfs,
char *buf)
{
- return snprintf(buf, PAGE_SIZE, "%u\n", nilfs->ns_blocksize);
+ return sysfs_emit(buf, "%u\n", nilfs->ns_blocksize);
}
static
@@ -866,7 +866,7 @@ ssize_t nilfs_dev_device_size_show(struct nilfs_dev_attr *attr,
struct nilfs_super_block **sbp = nilfs->ns_sbp;
u64 dev_size = le64_to_cpu(sbp[0]->s_dev_size);
- return snprintf(buf, PAGE_SIZE, "%llu\n", dev_size);
+ return sysfs_emit(buf, "%llu\n", dev_size);
}
static
@@ -877,7 +877,7 @@ ssize_t nilfs_dev_free_blocks_show(struct nilfs_dev_attr *attr,
sector_t free_blocks = 0;
nilfs_count_free_blocks(nilfs, &free_blocks);
- return snprintf(buf, PAGE_SIZE, "%llu\n",
+ return sysfs_emit(buf, "%llu\n",
(unsigned long long)free_blocks);
}
@@ -888,7 +888,7 @@ ssize_t nilfs_dev_uuid_show(struct nilfs_dev_attr *attr,
{
struct nilfs_super_block **sbp = nilfs->ns_sbp;
- return snprintf(buf, PAGE_SIZE, "%pUb\n", sbp[0]->s_uuid);
+ return sysfs_emit(buf, "%pUb\n", sbp[0]->s_uuid);
}
static
@@ -916,7 +916,7 @@ static ssize_t nilfs_dev_README_show(struct nilfs_dev_attr *attr,
struct the_nilfs *nilfs,
char *buf)
{
- return snprintf(buf, PAGE_SIZE, dev_readme_str);
+ return sysfs_emit(buf, dev_readme_str);
}
NILFS_DEV_RO_ATTR(revision);
@@ -1060,7 +1060,7 @@ void nilfs_sysfs_delete_device_group(struct the_nilfs *nilfs)
static ssize_t nilfs_feature_revision_show(struct kobject *kobj,
struct attribute *attr, char *buf)
{
- return snprintf(buf, PAGE_SIZE, "%d.%d\n",
+ return sysfs_emit(buf, "%d.%d\n",
NILFS_CURRENT_REV, NILFS_MINOR_REV);
}
@@ -1073,7 +1073,7 @@ static ssize_t nilfs_feature_README_show(struct kobject *kobj,
struct attribute *attr,
char *buf)
{
- return snprintf(buf, PAGE_SIZE, features_readme_str);
+ return sysfs_emit(buf, features_readme_str);
}
NILFS_FEATURE_RO_ATTR(revision);
--
2.43.0
next prev parent reply other threads:[~2024-09-10 10:46 UTC|newest]
Thread overview: 194+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-10 9:31 [PATCH 5.10 000/186] 5.10.226-rc1 review Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 001/186] drm: panel-orientation-quirks: Add quirk for OrangePi Neo Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 002/186] ALSA: hda/generic: Add a helper to mute speakers at suspend/shutdown Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 003/186] ALSA: hda/conexant: Mute speakers at suspend / shutdown Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 004/186] i2c: Fix conditional for substituting empty ACPI functions Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 005/186] dma-debug: avoid deadlock between dma debug vs printk and netconsole Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 006/186] net: usb: qmi_wwan: add MeiG Smart SRM825L Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 007/186] drm/amdgpu: Fix uninitialized variable warning in amdgpu_afmt_acr Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 008/186] drm/amdgpu: fix overflowed array index read warning Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 009/186] drm/amd/pm: fix uninitialized variable warning for smu8_hwmgr Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 010/186] drm/amd/pm: fix warning using uninitialized value of max_vid_step Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 011/186] drm/amd/pm: fix the Out-of-bounds read warning Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 012/186] drm/amdgpu: fix uninitialized scalar variable warning Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 013/186] drm/amd/pm: fix uninitialized variable warnings for vega10_hwmgr Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 014/186] drm/amdgpu: avoid reading vf2pf info size from FB Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 015/186] drm/amd/display: Check gpio_id before used as array index Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 016/186] drm/amd/display: Stop amdgpu_dm initialize when stream nums greater than 6 Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 017/186] drm/amd/display: Add array index check for hdcp ddc access Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 018/186] drm/amd/display: Check num_valid_sets before accessing reader_wm_sets[] Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 019/186] drm/amd/display: Check msg_id before processing transcation Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 020/186] drm/amd/display: Fix Coverity INTEGER_OVERFLOW within dal_gpio_service_create Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 021/186] drm/amdgpu/pm: Fix uninitialized variable agc_btc_response Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 022/186] drm/amdgpu: Fix out-of-bounds write warning Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 023/186] drm/amdgpu: Fix out-of-bounds read of df_v1_7_channel_number Greg Kroah-Hartman
2024-09-10 9:31 ` [PATCH 5.10 024/186] drm/amdgpu: fix ucode out-of-bounds read warning Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 025/186] drm/amdgpu: fix mc_data " Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 026/186] drm/amdkfd: Reconcile the definition and use of oem_id in struct kfd_topology_device Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 027/186] apparmor: fix possible NULL pointer dereference Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 028/186] drm/amdgpu/pm: Check input value for CUSTOM profile mode setting on legacy SOCs Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 029/186] drm/amdgpu: the warning dereferencing obj for nbio_v7_4 Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 030/186] drm/amd/pm: check negtive return for table entries Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 031/186] wifi: iwlwifi: remove fw_running op Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 032/186] PCI: al: Check IORESOURCE_BUS existence during probe Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 033/186] hwspinlock: Introduce hwspin_lock_bust() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 034/186] ionic: fix potential irq name truncation Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 035/186] usbip: Dont submit special requests twice Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 036/186] usb: typec: ucsi: Fix null pointer dereference in trace Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 037/186] fsnotify: clear PARENT_WATCHED flags lazily Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 038/186] smack: tcp: ipv4, fix incorrect labeling Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 039/186] drm/meson: plane: Add error handling Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 040/186] wifi: cfg80211: make hash table duplicates more survivable Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 041/186] block: remove the blk_flush_integrity call in blk_integrity_unregister Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 042/186] drm/amd/display: Skip wbscl_set_scaler_filter if filter is null Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 043/186] media: uvcvideo: Enforce alignment of frame and interval Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 044/186] block: initialize integrity buffer to zero before writing it to media Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 045/186] drm/amd/pm: Fix the null pointer dereference for vega10_hwmgr Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 046/186] bpf, cgroups: Fix cgroup v2 fallback on v1/v2 mixed mode Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 047/186] net: set SOCK_RCU_FREE before inserting socket into hashtable Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 048/186] virtio_net: Fix napi_skb_cache_put warning Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 049/186] rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 050/186] udf: Limit file size to 4TB Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 051/186] ext4: handle redirtying in ext4_bio_write_page() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 052/186] i2c: Use IS_REACHABLE() for substituting empty ACPI functions Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 053/186] bpf, cgroup: Assign cgroup in cgroup_sk_alloc when called from interrupt Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 054/186] sch/netem: fix use after free in netem_dequeue Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 055/186] ASoC: dapm: Fix UAF for snd_soc_pcm_runtime object Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 056/186] ALSA: hda/conexant: Add pincfg quirk to enable top speakers on Sirius devices Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 057/186] ALSA: hda/realtek: add patch for internal mic in Lenovo V145 Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 058/186] ALSA: hda/realtek: Support mute LED on HP Laptop 14-dq2xxx Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 059/186] ata: libata: Fix memory leak for error path in ata_host_alloc() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 060/186] irqchip/gic-v2m: Fix refcount leak in gicv2m_of_init() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 061/186] Revert "Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE" Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 062/186] Bluetooth: MGMT: Ignore keys being loaded with invalid type Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 063/186] mmc: dw_mmc: Fix IDMAC operation with pages bigger than 4K Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 064/186] mmc: sdhci-of-aspeed: fix module autoloading Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 065/186] fuse: update stats for pages in dropped aux writeback list Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 066/186] fuse: use unsigned type for getxattr/listxattr size truncation Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 067/186] clk: qcom: clk-alpha-pll: Fix the pll post div mask Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 068/186] clk: qcom: clk-alpha-pll: Fix the trion pll postdiv set rate API Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 069/186] can: mcp251x: fix deadlock if an interrupt occurs during mcp251x_open Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 070/186] tracing: Avoid possible softlockup in tracing_iter_reset() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 071/186] ila: call nf_unregister_net_hooks() sooner Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 072/186] sched: sch_cake: fix bulk flow accounting logic for host fairness Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 073/186] nilfs2: fix missing cleanup on rollforward recovery error Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 074/186] nilfs2: fix state management in error path of log writing function Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 075/186] btrfs: fix use-after-free after failure to create a snapshot Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 076/186] mptcp: pr_debug: add missing \n at the end Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 077/186] mptcp: pm: avoid possible UaF when selecting endp Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 078/186] nfsd: move reply cache initialization into nfsd startup Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 079/186] nfsd: move init of percpu reply_cache_stats counters back to nfsd_init_net Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 080/186] NFSD: Refactor nfsd_reply_cache_free_locked() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 081/186] NFSD: Rename nfsd_reply_cache_alloc() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 082/186] NFSD: Replace nfsd_prune_bucket() Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 083/186] NFSD: Refactor the duplicate reply cache shrinker Greg Kroah-Hartman
2024-09-10 9:32 ` [PATCH 5.10 084/186] NFSD: simplify error paths in nfsd_svc() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 085/186] NFSD: Rewrite synopsis of nfsd_percpu_counters_init() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 086/186] NFSD: Fix frame size warning in svc_export_parse() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 087/186] sunrpc: dont change ->sv_stats if it doesnt exist Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 088/186] nfsd: stop setting ->pg_stats for unused stats Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 089/186] sunrpc: pass in the sv_stats struct through svc_create_pooled Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 090/186] sunrpc: remove ->pg_stats from svc_program Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 091/186] sunrpc: use the struct net as the svc proc private Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 092/186] nfsd: rename NFSD_NET_* to NFSD_STATS_* Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 093/186] nfsd: expose /proc/net/sunrpc/nfsd in net namespaces Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 094/186] nfsd: make all of the nfsd stats per-network namespace Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 095/186] nfsd: remove nfsd_stats, make th_cnt a global counter Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 096/186] nfsd: make svc_stat per-network namespace instead of global Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 097/186] ALSA: hda: Add input value sanity checks to HDMI channel map controls Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 098/186] smack: unix sockets: fix accept()ed socket label Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 099/186] irqchip/armada-370-xp: Do not allow mapping IRQ 0 and 1 Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 100/186] af_unix: Remove put_pid()/put_cred() in copy_peercred() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 101/186] iommu: sun50i: clear bypass register Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 102/186] netfilter: nf_conncount: fix wrong variable type Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 103/186] udf: Avoid excessive partition lengths Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 104/186] media: vivid: fix wrong sizeimage value for mplane Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 105/186] leds: spi-byte: Call of_node_put() on error path Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 106/186] wifi: brcmsmac: advertise MFP_CAPABLE to enable WPA3 Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 107/186] usb: uas: set host status byte on data completion error Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 108/186] media: vivid: dont set HDMI TX controls if there are no HDMI outputs Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 109/186] PCI: keystone: Add workaround for Errata #i2037 (AM65x SR 1.0) Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 110/186] media: qcom: camss: Add check for v4l2_fwnode_endpoint_parse Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 111/186] pcmcia: Use resource_size function on resource object Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 112/186] can: bcm: Remove proc entry when dev is unregistered Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 113/186] igb: Fix not clearing TimeSync interrupts for 82580 Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 114/186] svcrdma: Catch another Reply chunk overflow case Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 115/186] platform/x86: dell-smbios: Fix error path in dell_smbios_init() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 116/186] tcp_bpf: fix return value of tcp_bpf_sendmsg() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 117/186] igc: Unlock on error in igc_io_resume() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 118/186] drivers/net/usb: Remove all strcpy() uses Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 119/186] net: usb: dont write directly to netdev->dev_addr Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 120/186] usbnet: modern method to get random MAC Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 121/186] bareudp: Fix device stats updates Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 122/186] fou: remove sparse errors Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 123/186] gro: remove rcu_read_lock/rcu_read_unlock from gro_receive handlers Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 124/186] gro: remove rcu_read_lock/rcu_read_unlock from gro_complete handlers Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 125/186] fou: Fix null-ptr-deref in GRO Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 126/186] net: bridge: br_fdb_external_learn_add(): always set EXT_LEARN Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 127/186] net: dsa: vsc73xx: fix possible subblocks range of CAPT block Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 128/186] ASoC: topology: Properly initialize soc_enum values Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 129/186] dm init: Handle minors larger than 255 Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 130/186] iommu/vt-d: Handle volatile descriptor status read Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 131/186] cgroup: Protect css->cgroup write under css_set_lock Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 132/186] um: line: always fill *error_out in setup_one_line() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 133/186] devres: Initialize an uninitialized struct member Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 134/186] pci/hotplug/pnv_php: Fix hotplug driver crash on Powernv Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 135/186] hwmon: (adc128d818) Fix underflows seen when writing limit attributes Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 136/186] hwmon: (lm95234) " Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 137/186] hwmon: (nct6775-core) " Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 138/186] hwmon: (w83627ehf) " Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 139/186] libbpf: Add NULL checks to bpf_object__{prev_map,next_map} Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 140/186] wifi: mwifiex: Do not return unused priv in mwifiex_get_priv_by_id() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 141/186] smp: Add missing destroy_work_on_stack() call in smp_call_on_cpu() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 142/186] btrfs: replace BUG_ON with ASSERT in walk_down_proc() Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 143/186] btrfs: clean up our handling of refs == 0 in snapshot delete Greg Kroah-Hartman
2024-09-10 9:33 ` [PATCH 5.10 144/186] PCI: Add missing bridge lock to pci_bus_lock() Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 145/186] net: dpaa: avoid on-stack arrays of NR_CPUS elements Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 146/186] kselftests: dmabuf-heaps: Ensure the driver name is null-terminated Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 147/186] btrfs: initialize location to fix -Wmaybe-uninitialized in btrfs_lookup_dentry() Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 148/186] s390/vmlinux.lds.S: Move ro_after_init section behind rodata section Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 149/186] HID: cougar: fix slab-out-of-bounds Read in cougar_report_fixup Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 150/186] Input: uinput - reject requests with unreasonable number of slots Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 151/186] usbnet: ipheth: race between ipheth_close and error handling Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 152/186] Squashfs: sanity check symbolic link size Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 153/186] of/irq: Prevent device address out-of-bounds read in interrupt map walk Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 154/186] lib/generic-radix-tree.c: Fix rare race in __genradix_ptr_alloc() Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 155/186] MIPS: cevt-r4k: Dont call get_c0_compare_int if timer irq is installed Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 156/186] ata: pata_macio: Use WARN instead of BUG Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 157/186] NFSv4: Add missing rescheduling points in nfs_client_return_marked_delegations Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 158/186] staging: iio: frequency: ad9834: Validate frequency parameter value Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 159/186] iio: buffer-dmaengine: fix releasing dma channel on error Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 160/186] iio: fix scale application in iio_convert_raw_to_processed_unlocked Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 161/186] iio: adc: ad7606: remove frstdata check for serial mode Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 162/186] iio: adc: ad7124: fix chip ID mismatch Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 163/186] binder: fix UAF caused by offsets overwrite Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 164/186] nvmem: Fix return type of devm_nvmem_device_get() in kerneldoc Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 165/186] uio_hv_generic: Fix kernel NULL pointer dereference in hv_uio_rescind Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 166/186] Drivers: hv: vmbus: Fix rescind handling in uio_hv_generic Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 167/186] VMCI: Fix use-after-free when removing resource in vmci_resource_remove() Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 168/186] clocksource/drivers/imx-tpm: Fix return -ETIME when delta exceeds INT_MAX Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 169/186] clocksource/drivers/imx-tpm: Fix next event not taking effect sometime Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 170/186] clocksource/drivers/timer-of: Remove percpu irq related code Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 171/186] uprobes: Use kzalloc to allocate xol area Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 172/186] perf/aux: Fix AUX buffer serialization Greg Kroah-Hartman
2024-09-10 9:34 ` Greg Kroah-Hartman [this message]
2024-09-10 9:34 ` [PATCH 5.10 174/186] nilfs2: protect references to superblock parameters exposed in sysfs Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 175/186] ACPI: processor: Return an error if acpi_processor_get_info() fails in processor_add() Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 176/186] ACPI: processor: Fix memory leaks in error paths of processor_add() Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 177/186] arm64: acpi: Move get_cpu_for_acpi_id() to a header Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 178/186] arm64: acpi: Harden get_cpu_for_acpi_id() against missing CPU entry Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 179/186] nvmet-tcp: fix kernel crash if commands allocation fails Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 180/186] drm/i915/fence: Mark debug_fence_init_onstack() with __maybe_unused Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 181/186] drm/i915/fence: Mark debug_fence_free() " Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 182/186] mmc: cqhci: Fix checking of CQHCI_HALT state Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 183/186] rtmutex: Drop rt_mutex::wait_lock before scheduling Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 184/186] x86/mm: Fix PTI for i386 some more Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 185/186] net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket Greg Kroah-Hartman
2024-09-10 9:34 ` [PATCH 5.10 186/186] memcg: protect concurrent access to mem_cgroup_idr Greg Kroah-Hartman
2024-09-10 17:29 ` [PATCH 5.10 000/186] 5.10.226-rc1 review Mark Brown
2024-09-10 18:18 ` Florian Fainelli
2024-09-10 21:26 ` Shuah Khan
2024-09-10 21:52 ` Shuah Khan
2024-09-11 12:47 ` Greg Kroah-Hartman
2024-09-11 4:03 ` Dominique Martinet
2024-09-11 12:11 ` Naresh Kamboju
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=20240910092601.755275877@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=konishi.ryusuke@gmail.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=wangqing@vivo.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).