From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Stephen Smalley <stephen.smalley.work@gmail.com>,
Paul Moore <paul@paul-moore.com>
Subject: [PATCH 6.17 027/175] selinux: rename task_security_struct to cred_security_struct
Date: Thu, 27 Nov 2025 15:44:40 +0100 [thread overview]
Message-ID: <20251127144043.956779127@linuxfoundation.org> (raw)
In-Reply-To: <20251127144042.945669935@linuxfoundation.org>
6.17-stable review patch. If anyone has any objections, please let me know.
------------------
From: Stephen Smalley <stephen.smalley.work@gmail.com>
commit 75f72fe289a7f76204a728668edcf20e4a2a6097 upstream.
Before Linux had cred structures, the SELinux task_security_struct was
per-task and although the structure was switched to being per-cred
long ago, the name was never updated. This change renames it to
cred_security_struct to avoid confusion and pave the way for the
introduction of an actual per-task security structure for SELinux. No
functional change.
Cc: stable@vger.kernel.org
Signed-off-by: Stephen Smalley <stephen.smalley.work@gmail.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
security/selinux/hooks.c | 68 +++++++++++++++++++-------------------
security/selinux/include/objsec.h | 8 ++--
2 files changed, 38 insertions(+), 38 deletions(-)
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -210,7 +210,7 @@ static int selinux_lsm_notifier_avc_call
*/
static void cred_init_security(void)
{
- struct task_security_struct *tsec;
+ struct cred_security_struct *tsec;
/* NOTE: the lsm framework zeros out the buffer on allocation */
@@ -223,7 +223,7 @@ static void cred_init_security(void)
*/
static inline u32 cred_sid(const struct cred *cred)
{
- const struct task_security_struct *tsec;
+ const struct cred_security_struct *tsec;
tsec = selinux_cred(cred);
return tsec->sid;
@@ -437,7 +437,7 @@ static int may_context_mount_sb_relabel(
struct superblock_security_struct *sbsec,
const struct cred *cred)
{
- const struct task_security_struct *tsec = selinux_cred(cred);
+ const struct cred_security_struct *tsec = selinux_cred(cred);
int rc;
rc = avc_has_perm(tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM,
@@ -454,7 +454,7 @@ static int may_context_mount_inode_relab
struct superblock_security_struct *sbsec,
const struct cred *cred)
{
- const struct task_security_struct *tsec = selinux_cred(cred);
+ const struct cred_security_struct *tsec = selinux_cred(cred);
int rc;
rc = avc_has_perm(tsec->sid, sbsec->sid, SECCLASS_FILESYSTEM,
FILESYSTEM__RELABELFROM, NULL);
@@ -1784,7 +1784,7 @@ out:
* Determine the label for an inode that might be unioned.
*/
static int
-selinux_determine_inode_label(const struct task_security_struct *tsec,
+selinux_determine_inode_label(const struct cred_security_struct *tsec,
struct inode *dir,
const struct qstr *name, u16 tclass,
u32 *_new_isid)
@@ -1813,7 +1813,7 @@ static int may_create(struct inode *dir,
struct dentry *dentry,
u16 tclass)
{
- const struct task_security_struct *tsec = selinux_cred(current_cred());
+ const struct cred_security_struct *tsec = selinux_cred(current_cred());
struct inode_security_struct *dsec;
struct superblock_security_struct *sbsec;
u32 sid, newsid;
@@ -2247,8 +2247,8 @@ static u32 ptrace_parent_sid(void)
}
static int check_nnp_nosuid(const struct linux_binprm *bprm,
- const struct task_security_struct *old_tsec,
- const struct task_security_struct *new_tsec)
+ const struct cred_security_struct *old_tsec,
+ const struct cred_security_struct *new_tsec)
{
int nnp = (bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS);
int nosuid = !mnt_may_suid(bprm->file->f_path.mnt);
@@ -2301,8 +2301,8 @@ static int check_nnp_nosuid(const struct
static int selinux_bprm_creds_for_exec(struct linux_binprm *bprm)
{
- const struct task_security_struct *old_tsec;
- struct task_security_struct *new_tsec;
+ const struct cred_security_struct *old_tsec;
+ struct cred_security_struct *new_tsec;
struct inode_security_struct *isec;
struct common_audit_data ad;
struct inode *inode = file_inode(bprm->file);
@@ -2479,7 +2479,7 @@ static inline void flush_unauthorized_fi
*/
static void selinux_bprm_committing_creds(const struct linux_binprm *bprm)
{
- struct task_security_struct *new_tsec;
+ struct cred_security_struct *new_tsec;
struct rlimit *rlim, *initrlim;
int rc, i;
@@ -2525,7 +2525,7 @@ static void selinux_bprm_committing_cred
*/
static void selinux_bprm_committed_creds(const struct linux_binprm *bprm)
{
- const struct task_security_struct *tsec = selinux_cred(current_cred());
+ const struct cred_security_struct *tsec = selinux_cred(current_cred());
u32 osid, sid;
int rc;
@@ -2907,7 +2907,7 @@ static int selinux_dentry_create_files_a
{
u32 newsid;
int rc;
- struct task_security_struct *tsec;
+ struct cred_security_struct *tsec;
rc = selinux_determine_inode_label(selinux_cred(old),
d_inode(dentry->d_parent), name,
@@ -2925,7 +2925,7 @@ static int selinux_inode_init_security(s
const struct qstr *qstr,
struct xattr *xattrs, int *xattr_count)
{
- const struct task_security_struct *tsec = selinux_cred(current_cred());
+ const struct cred_security_struct *tsec = selinux_cred(current_cred());
struct superblock_security_struct *sbsec;
struct xattr *xattr = lsm_get_xattr_slot(xattrs, xattr_count);
u32 newsid, clen;
@@ -3106,7 +3106,7 @@ static noinline int audit_inode_permissi
* Clear the task's AVD cache in @tsec and reset it to the current policy's
* and task's info.
*/
-static inline void task_avdcache_reset(struct task_security_struct *tsec)
+static inline void task_avdcache_reset(struct cred_security_struct *tsec)
{
memset(&tsec->avdcache.dir, 0, sizeof(tsec->avdcache.dir));
tsec->avdcache.sid = tsec->sid;
@@ -3123,7 +3123,7 @@ static inline void task_avdcache_reset(s
* Search @tsec for a AVD cache entry that matches @isec and return it to the
* caller via @avdc. Returns 0 if a match is found, negative values otherwise.
*/
-static inline int task_avdcache_search(struct task_security_struct *tsec,
+static inline int task_avdcache_search(struct cred_security_struct *tsec,
struct inode_security_struct *isec,
struct avdc_entry **avdc)
{
@@ -3163,7 +3163,7 @@ static inline int task_avdcache_search(s
* Update the AVD cache in @tsec with the @avdc and @audited info associated
* with @isec.
*/
-static inline void task_avdcache_update(struct task_security_struct *tsec,
+static inline void task_avdcache_update(struct cred_security_struct *tsec,
struct inode_security_struct *isec,
struct av_decision *avd,
u32 audited)
@@ -3197,7 +3197,7 @@ static int selinux_inode_permission(stru
{
int mask;
u32 perms;
- struct task_security_struct *tsec;
+ struct cred_security_struct *tsec;
struct inode_security_struct *isec;
struct avdc_entry *avdc;
int rc, rc2;
@@ -3279,7 +3279,7 @@ static int selinux_inode_setattr(struct
static int selinux_inode_getattr(const struct path *path)
{
- struct task_security_struct *tsec;
+ struct cred_security_struct *tsec;
tsec = selinux_cred(current_cred());
@@ -3655,7 +3655,7 @@ static void selinux_inode_getlsmprop(str
static int selinux_inode_copy_up(struct dentry *src, struct cred **new)
{
struct lsm_prop prop;
- struct task_security_struct *tsec;
+ struct cred_security_struct *tsec;
struct cred *new_creds = *new;
if (new_creds == NULL) {
@@ -3693,7 +3693,7 @@ static int selinux_inode_copy_up_xattr(s
static int selinux_kernfs_init_security(struct kernfs_node *kn_dir,
struct kernfs_node *kn)
{
- const struct task_security_struct *tsec = selinux_cred(current_cred());
+ const struct cred_security_struct *tsec = selinux_cred(current_cred());
u32 parent_sid, newsid, clen;
int rc;
char *context;
@@ -4157,8 +4157,8 @@ static int selinux_task_alloc(struct tas
static int selinux_cred_prepare(struct cred *new, const struct cred *old,
gfp_t gfp)
{
- const struct task_security_struct *old_tsec = selinux_cred(old);
- struct task_security_struct *tsec = selinux_cred(new);
+ const struct cred_security_struct *old_tsec = selinux_cred(old);
+ struct cred_security_struct *tsec = selinux_cred(new);
*tsec = *old_tsec;
return 0;
@@ -4169,8 +4169,8 @@ static int selinux_cred_prepare(struct c
*/
static void selinux_cred_transfer(struct cred *new, const struct cred *old)
{
- const struct task_security_struct *old_tsec = selinux_cred(old);
- struct task_security_struct *tsec = selinux_cred(new);
+ const struct cred_security_struct *old_tsec = selinux_cred(old);
+ struct cred_security_struct *tsec = selinux_cred(new);
*tsec = *old_tsec;
}
@@ -4191,7 +4191,7 @@ static void selinux_cred_getlsmprop(cons
*/
static int selinux_kernel_act_as(struct cred *new, u32 secid)
{
- struct task_security_struct *tsec = selinux_cred(new);
+ struct cred_security_struct *tsec = selinux_cred(new);
u32 sid = current_sid();
int ret;
@@ -4215,7 +4215,7 @@ static int selinux_kernel_act_as(struct
static int selinux_kernel_create_files_as(struct cred *new, struct inode *inode)
{
struct inode_security_struct *isec = inode_security(inode);
- struct task_security_struct *tsec = selinux_cred(new);
+ struct cred_security_struct *tsec = selinux_cred(new);
u32 sid = current_sid();
int ret;
@@ -4740,7 +4740,7 @@ static int selinux_conn_sid(u32 sk_sid,
/* socket security operations */
-static int socket_sockcreate_sid(const struct task_security_struct *tsec,
+static int socket_sockcreate_sid(const struct cred_security_struct *tsec,
u16 secclass, u32 *socksid)
{
if (tsec->sockcreate_sid > SECSID_NULL) {
@@ -4793,7 +4793,7 @@ static int sock_has_perm(struct sock *sk
static int selinux_socket_create(int family, int type,
int protocol, int kern)
{
- const struct task_security_struct *tsec = selinux_cred(current_cred());
+ const struct cred_security_struct *tsec = selinux_cred(current_cred());
u32 newsid;
u16 secclass;
int rc;
@@ -4812,7 +4812,7 @@ static int selinux_socket_create(int fam
static int selinux_socket_post_create(struct socket *sock, int family,
int type, int protocol, int kern)
{
- const struct task_security_struct *tsec = selinux_cred(current_cred());
+ const struct cred_security_struct *tsec = selinux_cred(current_cred());
struct inode_security_struct *isec = inode_security_novalidate(SOCK_INODE(sock));
struct sk_security_struct *sksec;
u16 sclass = socket_type_to_security_class(family, type, protocol);
@@ -6522,7 +6522,7 @@ static void selinux_d_instantiate(struct
static int selinux_lsm_getattr(unsigned int attr, struct task_struct *p,
char **value)
{
- const struct task_security_struct *tsec;
+ const struct cred_security_struct *tsec;
int error;
u32 sid;
u32 len;
@@ -6577,7 +6577,7 @@ err_unlock:
static int selinux_lsm_setattr(u64 attr, void *value, size_t size)
{
- struct task_security_struct *tsec;
+ struct cred_security_struct *tsec;
struct cred *new;
u32 mysid = current_sid(), sid = 0, ptsid;
int error;
@@ -6872,7 +6872,7 @@ static int selinux_inode_getsecctx(struc
static int selinux_key_alloc(struct key *k, const struct cred *cred,
unsigned long flags)
{
- const struct task_security_struct *tsec;
+ const struct cred_security_struct *tsec;
struct key_security_struct *ksec = selinux_key(k);
tsec = selinux_cred(cred);
@@ -7169,7 +7169,7 @@ static void selinux_bpf_token_free(struc
#endif
struct lsm_blob_sizes selinux_blob_sizes __ro_after_init = {
- .lbs_cred = sizeof(struct task_security_struct),
+ .lbs_cred = sizeof(struct cred_security_struct),
.lbs_file = sizeof(struct file_security_struct),
.lbs_inode = sizeof(struct inode_security_struct),
.lbs_ipc = sizeof(struct ipc_security_struct),
--- a/security/selinux/include/objsec.h
+++ b/security/selinux/include/objsec.h
@@ -36,7 +36,7 @@ struct avdc_entry {
bool permissive; /* AVC permissive flag */
};
-struct task_security_struct {
+struct cred_security_struct {
u32 osid; /* SID prior to last execve */
u32 sid; /* current SID */
u32 exec_sid; /* exec SID */
@@ -53,7 +53,7 @@ struct task_security_struct {
} avdcache;
} __randomize_layout;
-static inline bool task_avdcache_permnoaudit(struct task_security_struct *tsec)
+static inline bool task_avdcache_permnoaudit(struct cred_security_struct *tsec)
{
return (tsec->avdcache.permissive_neveraudit &&
tsec->sid == tsec->avdcache.sid &&
@@ -171,7 +171,7 @@ struct perf_event_security_struct {
};
extern struct lsm_blob_sizes selinux_blob_sizes;
-static inline struct task_security_struct *selinux_cred(const struct cred *cred)
+static inline struct cred_security_struct *selinux_cred(const struct cred *cred)
{
return cred->security + selinux_blob_sizes.lbs_cred;
}
@@ -206,7 +206,7 @@ selinux_ipc(const struct kern_ipc_perm *
*/
static inline u32 current_sid(void)
{
- const struct task_security_struct *tsec = selinux_cred(current_cred());
+ const struct cred_security_struct *tsec = selinux_cred(current_cred());
return tsec->sid;
}
next prev parent reply other threads:[~2025-11-27 15:00 UTC|newest]
Thread overview: 180+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-27 14:44 [PATCH 6.17 000/175] 6.17.10-rc1 review Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 001/175] KVM: arm64: Check the untrusted offset in FF-A memory share Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 002/175] timers: Fix NULL function pointer race in timer_shutdown_sync() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 003/175] arm64: dts: rockchip: Remove non-functioning CPU OPPs from RK3576 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 004/175] HID: amd_sfh: Stop sensor before starting Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 005/175] HID: quirks: work around VID/PID conflict for 0x4c4a/0x4155 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 006/175] arm64: dts: rockchip: Fix vccio4-supply on rk3566-pinetab2 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 007/175] arm64: dts: rockchip: fix PCIe 3.3V regulator voltage on orangepi-5 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 008/175] reset: imx8mp-audiomix: Fix bad mask values Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 009/175] arm64: dts: rockchip: include rk3399-base instead of rk3399 in rk3399-op1 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 010/175] arm64: dts: rockchip: disable HS400 on RK3588 Tiger Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 011/175] KVM: SVM: Fix redundant updates of LBR MSR intercepts Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 012/175] vfat: fix missing sb_min_blocksize() return value checks Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 013/175] mtd: rawnand: cadence: fix DMA device NULL pointer dereference Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 014/175] fs: Fix uninitialized offp in statmount_string() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 015/175] mtdchar: fix integer overflow in read/write ioctls Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 016/175] xfs: check the return value of sb_min_blocksize() in xfs_fs_fill_super Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 017/175] isofs: check the return value of sb_min_blocksize() in isofs_fill_super Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 018/175] shmem: fix tmpfs reconfiguration (remount) when noswap is set Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 019/175] exfat: check return value of sb_min_blocksize in exfat_read_boot_sector Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 020/175] mptcp: Disallow MPTCP subflows from sockmap Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 021/175] s390/mm: Fix __ptep_rdp() inline assembly Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 022/175] mptcp: Fix proto fallback detection with BPF Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 023/175] lib/test_kho: check if KHO is enabled Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 024/175] ACPI: APEI: EINJ: Fix EINJV2 initialization and injection Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 025/175] ata: libata-scsi: Fix system suspend for a security locked drive Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 026/175] MIPS: mm: Prevent a TLB shutdown on initial uniquification Greg Kroah-Hartman
2025-11-28 6:01 ` Maciej W. Rozycki
2025-12-01 10:36 ` Greg Kroah-Hartman
2025-11-27 14:44 ` Greg Kroah-Hartman [this message]
2025-11-27 14:44 ` [PATCH 6.17 028/175] selinux: move avdcache to per-task security struct Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 029/175] smb: client: introduce close_cached_dir_locked() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 030/175] wifi: rtw89: hw_scan: Dont let the operating channel be last Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 031/175] ata: libata-scsi: Add missing scsi_device_put() in ata_scsi_dev_rescan() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 032/175] be2net: pass wrb_params in case of OS2BMC Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 033/175] io_uring/cmd_net: fix wrong argument types for skb_queue_splice() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 034/175] net: dsa: microchip: lan937x: Fix RGMII delay tuning Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 035/175] Revert "drm/tegra: dsi: Clear enable register if powered by bootloader" Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 036/175] Input: cros_ec_keyb - fix an invalid memory access Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 037/175] Input: goodix - add support for ACPI ID GDIX1003 Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 038/175] Input: imx_sc_key - fix memory corruption on unload Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 039/175] Input: pegasus-notetaker - fix potential out-of-bounds access Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 040/175] mm/mempool: fix poisoning order>0 pages with HIGHMEM Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 041/175] nouveau/firmware: Add missing kfree() of nvkm_falcon_fw::boot Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 042/175] nvme: nvme-fc: move tagset removal to nvme_fc_delete_ctrl() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 043/175] nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 044/175] PM: sleep: core: Fix runtime PM enabling in device_resume_early() Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 045/175] sched_ext: Fix scx_enable() crash on helper kthread creation failure Greg Kroah-Hartman
2025-11-27 14:44 ` [PATCH 6.17 046/175] scsi: sg: Do not sleep in atomic context Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 047/175] scsi: target: tcm_loop: Fix segfault in tcm_loop_tpg_address_show() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 048/175] MIPS: Malta: Fix !EVA SOC-it PCI MMIO Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 049/175] dt-bindings: pinctrl: toshiba,visconti: Fix number of items in groups Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 050/175] LoongArch: BPF: Disable trampoline for kernel module function trace Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 051/175] LoongArch: Dont panic if no valid cache info for PCI Greg Kroah-Hartman
2025-11-28 2:30 ` 陈华才
2025-11-28 5:54 ` Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 052/175] LoongArch: Fix NUMA node parsing with numa_memblks Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 053/175] platform/x86: alienware-wmi-wmax: Fix "Alienware m16 R1 AMD" quirk order Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 054/175] platform/x86: alienware-wmi-wmax: Add support for the whole "M" family Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 055/175] platform/x86: alienware-wmi-wmax: Add support for the whole "X" family Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 056/175] platform/x86: alienware-wmi-wmax: Add support for the whole "G" family Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 057/175] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 058/175] mptcp: fix race condition in mptcp_schedule_work() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 059/175] mptcp: fix a race in mptcp_pm_del_add_timer() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 060/175] mptcp: fix ack generation for fallback msk Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 061/175] mptcp: fix duplicate reset on fastclose Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 062/175] mptcp: fix premature close in case of fallback Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 063/175] selftests: mptcp: join: endpoints: longer timeout Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 064/175] selftests: mptcp: join: userspace: " Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 065/175] mptcp: avoid unneeded subflow-level drops Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 066/175] mptcp: decouple mptcp fastclose from tcp close Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 067/175] mptcp: do not fallback when OoO is present Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 068/175] drm/tegra: dc: Fix reference leak in tegra_dc_couple() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 069/175] drm/radeon: delete radeon_fence_process in is_signaled, no deadlock Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 070/175] drm/plane: Fix create_in_format_blob() return value Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 071/175] drm/amd: Skip power ungate during suspend for VPE Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 072/175] drm/amdgpu: Skip emit de meta data on gfx11 with rs64 enabled Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 073/175] drm/amd/display: Increase DPCD read retries Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 074/175] drm/amd/display: Move sleep into each retry for retrieve_link_cap() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 075/175] drm/amd/display: Fix pbn to kbps Conversion Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 076/175] drm/amd/display: Clear the CUR_ENABLE register on DCN20 on DPP5 Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 077/175] mm/truncate: unmap large folio on split failure Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 078/175] pinctrl: mediatek: mt8196: align register base names to dt-bindings ones Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 079/175] pinctrl: mediatek: mt8189: " Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 080/175] xfrm: drop SA reference in xfrm_state_update if dir doesnt match Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 081/175] xfrm: also call xfrm_state_delete_tunnel at destroy time for states that were never added Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 082/175] xfrm: call xfrm_dev_state_delete when xfrm_state_migrate fails to add the state Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 083/175] xfrm: set err and extack on failure to create pcpu SA Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 084/175] clk: sunxi-ng: Mark A523 bus-r-cpucfg clock as critical Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 085/175] clk: sunxi-ng: sun55i-a523-r-ccu: Mark bus-r-dma " Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 086/175] clk: sunxi-ng: sun55i-a523-ccu: Lower audio0 pll minimum rate Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 087/175] pinctrl: realtek: Select REGMAP_MMIO for RTD driver Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 088/175] xfrm: Check inner packet family directly from skb_dst Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 089/175] xfrm: Determine inner GSO type from packet inner protocol Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 090/175] xfrm: Prevent locally generated packets from direct output in tunnel mode Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 091/175] pinctrl: cirrus: Fix fwnode leak in cs42l43_pin_probe() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 092/175] platform/x86: msi-wmi-platform: Only load on MSI devices Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 093/175] platform/x86: msi-wmi-platform: Fix typo in WMI GUID Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 094/175] mips: dts: econet: fix EN751221 core type Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 095/175] net: core: prevent NULL deref in generic_hwtstamp_ioctl_lower() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 096/175] mlxsw: spectrum: Fix memory leak in mlxsw_sp_flower_stats() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 097/175] drm/tegra: Add call to put_pid() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 098/175] net: dsa: hellcreek: fix missing error handling in LED registration Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 099/175] net: mlxsw: linecards: fix missing error check in mlxsw_linecard_devlink_info_get() Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 100/175] net: openvswitch: remove never-working support for setting nsh fields Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 101/175] veth: more robust handing of race to avoid txq getting stuck Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 102/175] tools: riscv: Fixed misalignment of CSR related definitions Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 103/175] nvmet-auth: update sc_c in target host hash calculation Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 104/175] nvme-multipath: fix lockdep WARN due to partition scan work Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 105/175] drm/i915/xe3lpd: Load DMC for Xe3_LPD version 30.02 Greg Kroah-Hartman
2025-11-27 14:45 ` [PATCH 6.17 106/175] s390/ctcm: Fix double-kfree Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 107/175] selftests: net: lib: Do not overwrite error messages Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 108/175] net: airoha: Add wlan flowtable TX offload Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 109/175] net: airoha: Do not loopback traffic to GDM2 if it is available on the device Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 110/175] platform/x86/intel/speed_select_if: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 111/175] platform/x86: intel-uncore-freq: fix all header kernel-doc warnings Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 112/175] net: qlogic/qede: fix potential out-of-bounds read in qede_tpa_cont() and qede_tpa_end() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 113/175] drm/pcids: Split PTL pciids group to make wcl subplatform Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 114/175] drm/i915/display: Add definition for wcl as subplatform Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 115/175] drm/i915/xe3: Restrict PTL intel_encoder_is_c10phy() to only PHY A Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 116/175] drm/xe/kunit: Fix forcewake assertion in mocs test Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 117/175] drm/xe/irq: Handle msix vector0 interrupt Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 118/175] idpf: fix possible vport_config NULL pointer deref in remove Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 119/175] ice: fix PTP cleanup on driver removal in error path Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 120/175] pinctrl: s32cc: fix uninitialized memory in s32_pinctrl_desc Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 121/175] pinctrl: s32cc: initialize gpio_pin_config::list after kmalloc() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 122/175] devlink: rate: Unset parent pointer in devl_rate_nodes_destroy Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 123/175] net/mlx5: Clean up only new IRQ glue on request_irq() failure Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 124/175] af_unix: Read sk_peek_offset() again after sleeping in unix_stream_read_generic() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 125/175] gpio: cdev: make sure the cdev fd is still active before emitting events Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 126/175] net: phylink: add missing supported link modes for the fixed-link Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 127/175] tick/sched: Fix bogus condition in report_idle_softirq() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 128/175] LoongArch: Use UAPI types in ptrace UAPI header Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 129/175] cifs: fix memory leak in smb3_fs_context_parse_param error path Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 130/175] perf: Fix 0 count issue of cpu-clock Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 131/175] vsock: Ignore signal/timeout on connect() if already established Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 132/175] timekeeping: Fix resource leak in tk_aux_sysfs_init() error paths Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 133/175] MIPS: kernel: Fix random segmentation faults Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 134/175] ALSA: hda/realtek: Add quirk for Lenovo Yoga 7 2-in-1 14AKP10 Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 135/175] sched_ext: Allocate scx_kick_cpus_pnt_seqs lazily using kvzalloc() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 136/175] bcma: dont register devices disabled in OF Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 137/175] sched_ext: defer queue_balance_callback() until after ops.dispatch Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 138/175] drm/msm: Fix pgtable prealloc error path Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 139/175] ASoC: rt721: fix prepare clock stop failed Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 140/175] cifs: fix typo in enable_gcm_256 module parameter Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 141/175] scsi: core: Fix a regression triggered by scsi_host_busy() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 142/175] ALSA: hda/realtek: Fix mute led for HP Victus 15-fa1xxx (MB 8C2D) Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 143/175] perf/x86/intel/uncore: Add uncore PMU support for Wildcat Lake Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 144/175] x86/microcode/AMD: Limit Entrysign signature checking to known generations Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 145/175] selftests: cachestat: Fix warning on declaration under label Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 146/175] smb: client: handle lack of IPC in dfs_cache_refresh() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 147/175] selftests: net: use BASH for bareudp testing Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 148/175] net: tls: Change async resync helpers argument Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 149/175] blk-crypto: use BLK_STS_INVAL for alignment errors Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 150/175] net: tls: Cancel RX async resync request on rcd_delta overflow Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 151/175] x86/CPU/AMD: Extend Zen6 model range Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 152/175] kconfig/mconf: Initialize the default locale at startup Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 153/175] kconfig/nconf: " Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 154/175] drm/xe: Prevent BIT() overflow when handling invalid prefetch region Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 155/175] ALSA: usb-audio: fix uac2 clock source at terminal parser Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 156/175] scsi: ufs: ufs-qcom: Fix UFS OCP issue during UFS power down (PC=3) Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 157/175] net: ethernet: ti: netcp: Standardize knav_dma_open_channel to return NULL on error Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 158/175] tracing/tools: Fix incorrcet short option in usage text for --threads Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 159/175] btrfs: set inode flag BTRFS_INODE_COPY_EVERYTHING when logging new name Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 160/175] drm/amdgpu: fix gpu page fault after hibernation on PF passthrough Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 161/175] smb: client: fix incomplete backport in cfids_invalidation_worker() Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 162/175] drm/i915/psr: Check drm_dp_dpcd_read return value on PSR dpcd init Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 163/175] drm/i915/dp_mst: Disable Panel Replay Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 164/175] drm/amdgpu/jpeg: Move parse_cs to amdgpu_jpeg.c Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 165/175] drm/amdgpu/jpeg: Add parse_cs for JPEG5_0_1 Greg Kroah-Hartman
2025-11-27 14:46 ` [PATCH 6.17 166/175] xfs: Replace strncpy with memcpy Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 167/175] xfs: fix out of bounds memory read error in symlink repair Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 168/175] mptcp: fix address removal logic in mptcp_pm_nl_rm_addr Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 169/175] drm/amd/display: Insert dccg log for easy debug Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 170/175] drm/amd/display: Prevent Gating DTBCLK before It Is Properly Latched Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 171/175] tty/vt: fix up incorrect backport to stable releases Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 172/175] Revert "drm/i915/dp: Reject HBR3 when sink doesnt support TPS4" Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 173/175] drm/i915/dp: Add device specific quirk to limit eDP rate to HBR2 Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 174/175] sched_ext: Fix scx_kick_pseqs corruption on concurrent scheduler loads Greg Kroah-Hartman
2025-11-27 14:47 ` [PATCH 6.17 175/175] sched_ext: fix flag check for deferred callbacks 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=20251127144043.956779127@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=patches@lists.linux.dev \
--cc=paul@paul-moore.com \
--cc=stable@vger.kernel.org \
--cc=stephen.smalley.work@gmail.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).