From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Randy Dunlap <rdunlap@infradead.org>,
Tejun Heo <tj@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 017/440] kernfs: fix all kernel-doc warnings and multiple typos
Date: Tue, 30 Jul 2024 17:44:10 +0200 [thread overview]
Message-ID: <20240730151616.436485926@linuxfoundation.org> (raw)
In-Reply-To: <20240730151615.753688326@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Randy Dunlap <rdunlap@infradead.org>
[ Upstream commit 24b3e3dd9c9c742a4dd18e71b6963f9e7ab72911 ]
Fix kernel-doc warnings. Many of these are about a function's
return value, so use the kernel-doc Return: format to fix those
Use % prefix on numeric constant values.
dir.c: fix typos/spellos
file.c fix typo: s/taret/target/
Fix all of these kernel-doc warnings:
dir.c:305: warning: missing initial short description on line:
* kernfs_name_hash
dir.c:137: warning: No description found for return value of 'kernfs_path_from_node_locked'
dir.c:196: warning: No description found for return value of 'kernfs_name'
dir.c:224: warning: No description found for return value of 'kernfs_path_from_node'
dir.c:292: warning: No description found for return value of 'kernfs_get_parent'
dir.c:312: warning: No description found for return value of 'kernfs_name_hash'
dir.c:404: warning: No description found for return value of 'kernfs_unlink_sibling'
dir.c:588: warning: No description found for return value of 'kernfs_node_from_dentry'
dir.c:806: warning: No description found for return value of 'kernfs_find_ns'
dir.c:879: warning: No description found for return value of 'kernfs_find_and_get_ns'
dir.c:904: warning: No description found for return value of 'kernfs_walk_and_get_ns'
dir.c:927: warning: No description found for return value of 'kernfs_create_root'
dir.c:996: warning: No description found for return value of 'kernfs_root_to_node'
dir.c:1016: warning: No description found for return value of 'kernfs_create_dir_ns'
dir.c:1048: warning: No description found for return value of 'kernfs_create_empty_dir'
dir.c:1306: warning: No description found for return value of 'kernfs_next_descendant_post'
dir.c:1568: warning: No description found for return value of 'kernfs_remove_self'
dir.c:1630: warning: No description found for return value of 'kernfs_remove_by_name_ns'
dir.c:1667: warning: No description found for return value of 'kernfs_rename_ns'
file.c:66: warning: No description found for return value of 'of_on'
file.c:88: warning: No description found for return value of 'kernfs_deref_open_node_locked'
file.c:1036: warning: No description found for return value of '__kernfs_create_file'
inode.c:100: warning: No description found for return value of 'kernfs_setattr'
mount.c:160: warning: No description found for return value of 'kernfs_root_from_sb'
mount.c:198: warning: No description found for return value of 'kernfs_node_dentry'
mount.c:302: warning: No description found for return value of 'kernfs_super_ns'
mount.c:318: warning: No description found for return value of 'kernfs_get_tree'
symlink.c:28: warning: No description found for return value of 'kernfs_create_link'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Tejun Heo <tj@kernel.org>
Acked-by: Tejun Heo <tj@kernel.org>
Link: https://lore.kernel.org/r/20221112031456.22980-1-rdunlap@infradead.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Stable-dep-of: 1be59c97c83c ("cgroup/cpuset: Prevent UAF in proc_cpuset_show()")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/kernfs/dir.c | 82 ++++++++++++++++++++++---------------
fs/kernfs/file.c | 18 ++++----
fs/kernfs/inode.c | 8 ++--
fs/kernfs/kernfs-internal.h | 2 +-
fs/kernfs/mount.c | 10 +++--
fs/kernfs/symlink.c | 2 +-
6 files changed, 74 insertions(+), 48 deletions(-)
diff --git a/fs/kernfs/dir.c b/fs/kernfs/dir.c
index a00e11ebfa775..44b907874fba1 100644
--- a/fs/kernfs/dir.c
+++ b/fs/kernfs/dir.c
@@ -125,9 +125,9 @@ static struct kernfs_node *kernfs_common_ancestor(struct kernfs_node *a,
* kn_to: /n1/n2/n3 [depth=3]
* result: /../..
*
- * [3] when @kn_to is NULL result will be "(null)"
+ * [3] when @kn_to is %NULL result will be "(null)"
*
- * Returns the length of the full path. If the full length is equal to or
+ * Return: the length of the full path. If the full length is equal to or
* greater than @buflen, @buf contains the truncated path with the trailing
* '\0'. On error, -errno is returned.
*/
@@ -185,10 +185,12 @@ static int kernfs_path_from_node_locked(struct kernfs_node *kn_to,
* @buflen: size of @buf
*
* Copies the name of @kn into @buf of @buflen bytes. The behavior is
- * similar to strlcpy(). It returns the length of @kn's name and if @buf
- * isn't long enough, it's filled upto @buflen-1 and nul terminated.
+ * similar to strlcpy().
*
- * Fills buffer with "(null)" if @kn is NULL.
+ * Fills buffer with "(null)" if @kn is %NULL.
+ *
+ * Return: the length of @kn's name and if @buf isn't long enough,
+ * it's filled up to @buflen-1 and nul terminated.
*
* This function can be called from any context.
*/
@@ -215,7 +217,7 @@ int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
* path (which includes '..'s) as needed to reach from @from to @to is
* returned.
*
- * Returns the length of the full path. If the full length is equal to or
+ * Return: the length of the full path. If the full length is equal to or
* greater than @buflen, @buf contains the truncated path with the trailing
* '\0'. On error, -errno is returned.
*/
@@ -287,6 +289,8 @@ void pr_cont_kernfs_path(struct kernfs_node *kn)
*
* Determines @kn's parent, pins and returns it. This function can be
* called from any context.
+ *
+ * Return: parent node of @kn
*/
struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
{
@@ -302,11 +306,11 @@ struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
}
/**
- * kernfs_name_hash
+ * kernfs_name_hash - calculate hash of @ns + @name
* @name: Null terminated string to hash
* @ns: Namespace tag to hash
*
- * Returns 31 bit hash of ns + name (so it fits in an off_t )
+ * Return: 31-bit hash of ns + name (so it fits in an off_t)
*/
static unsigned int kernfs_name_hash(const char *name, const void *ns)
{
@@ -354,8 +358,8 @@ static int kernfs_sd_compare(const struct kernfs_node *left,
* Locking:
* kernfs_rwsem held exclusive
*
- * RETURNS:
- * 0 on susccess -EEXIST on failure.
+ * Return:
+ * %0 on success, -EEXIST on failure.
*/
static int kernfs_link_sibling(struct kernfs_node *kn)
{
@@ -394,8 +398,10 @@ static int kernfs_link_sibling(struct kernfs_node *kn)
* @kn: kernfs_node of interest
*
* Try to unlink @kn from its sibling rbtree which starts from
- * kn->parent->dir.children. Returns %true if @kn was actually
- * removed, %false if @kn wasn't on the rbtree.
+ * kn->parent->dir.children.
+ *
+ * Return: %true if @kn was actually removed,
+ * %false if @kn wasn't on the rbtree.
*
* Locking:
* kernfs_rwsem held exclusive
@@ -419,10 +425,10 @@ static bool kernfs_unlink_sibling(struct kernfs_node *kn)
* @kn: kernfs_node to get an active reference to
*
* Get an active reference of @kn. This function is noop if @kn
- * is NULL.
+ * is %NULL.
*
- * RETURNS:
- * Pointer to @kn on success, NULL on failure.
+ * Return:
+ * Pointer to @kn on success, %NULL on failure.
*/
struct kernfs_node *kernfs_get_active(struct kernfs_node *kn)
{
@@ -442,7 +448,7 @@ struct kernfs_node *kernfs_get_active(struct kernfs_node *kn)
* @kn: kernfs_node to put an active reference to
*
* Put an active reference to @kn. This function is noop if @kn
- * is NULL.
+ * is %NULL.
*/
void kernfs_put_active(struct kernfs_node *kn)
{
@@ -464,7 +470,7 @@ void kernfs_put_active(struct kernfs_node *kn)
* kernfs_drain - drain kernfs_node
* @kn: kernfs_node to drain
*
- * Drain existing usages and nuke all existing mmaps of @kn. Mutiple
+ * Drain existing usages and nuke all existing mmaps of @kn. Multiple
* removers may invoke this function concurrently on @kn and all will
* return after draining is complete.
*/
@@ -577,7 +583,7 @@ EXPORT_SYMBOL_GPL(kernfs_put);
* kernfs_node_from_dentry - determine kernfs_node associated with a dentry
* @dentry: the dentry in question
*
- * Return the kernfs_node associated with @dentry. If @dentry is not a
+ * Return: the kernfs_node associated with @dentry. If @dentry is not a
* kernfs one, %NULL is returned.
*
* While the returned kernfs_node will stay accessible as long as @dentry
@@ -698,8 +704,8 @@ struct kernfs_node *kernfs_new_node(struct kernfs_node *parent,
* @id's lower 32bits encode ino and upper gen. If the gen portion is
* zero, all generations are matched.
*
- * RETURNS:
- * NULL on failure. Return a kernfs node with reference counter incremented
+ * Return: %NULL on failure,
+ * otherwise a kernfs node with reference counter incremented.
*/
struct kernfs_node *kernfs_find_and_get_node_by_id(struct kernfs_root *root,
u64 id)
@@ -747,8 +753,8 @@ struct kernfs_node *kernfs_find_and_get_node_by_id(struct kernfs_root *root,
* function increments nlink of the parent's inode if @kn is a
* directory and link into the children list of the parent.
*
- * RETURNS:
- * 0 on success, -EEXIST if entry with the given name already
+ * Return:
+ * %0 on success, -EEXIST if entry with the given name already
* exists.
*/
int kernfs_add_one(struct kernfs_node *kn)
@@ -811,8 +817,9 @@ int kernfs_add_one(struct kernfs_node *kn)
* @name: name to look for
* @ns: the namespace tag to use
*
- * Look for kernfs_node with name @name under @parent. Returns pointer to
- * the found kernfs_node on success, %NULL on failure.
+ * Look for kernfs_node with name @name under @parent.
+ *
+ * Return: pointer to the found kernfs_node on success, %NULL on failure.
*/
static struct kernfs_node *kernfs_find_ns(struct kernfs_node *parent,
const unsigned char *name,
@@ -885,8 +892,9 @@ static struct kernfs_node *kernfs_walk_ns(struct kernfs_node *parent,
* @ns: the namespace tag to use
*
* Look for kernfs_node with name @name under @parent and get a reference
- * if found. This function may sleep and returns pointer to the found
- * kernfs_node on success, %NULL on failure.
+ * if found. This function may sleep.
+ *
+ * Return: pointer to the found kernfs_node on success, %NULL on failure.
*/
struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
const char *name, const void *ns)
@@ -910,8 +918,9 @@ EXPORT_SYMBOL_GPL(kernfs_find_and_get_ns);
* @ns: the namespace tag to use
*
* Look for kernfs_node with path @path under @parent and get a reference
- * if found. This function may sleep and returns pointer to the found
- * kernfs_node on success, %NULL on failure.
+ * if found. This function may sleep.
+ *
+ * Return: pointer to the found kernfs_node on success, %NULL on failure.
*/
struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
const char *path, const void *ns)
@@ -933,7 +942,7 @@ struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
* @flags: KERNFS_ROOT_* flags
* @priv: opaque data associated with the new directory
*
- * Returns the root of the new hierarchy on success, ERR_PTR() value on
+ * Return: the root of the new hierarchy on success, ERR_PTR() value on
* failure.
*/
struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
@@ -1005,6 +1014,8 @@ void kernfs_destroy_root(struct kernfs_root *root)
/**
* kernfs_root_to_node - return the kernfs_node associated with a kernfs_root
* @root: root to use to lookup
+ *
+ * Return: @root's kernfs_node
*/
struct kernfs_node *kernfs_root_to_node(struct kernfs_root *root)
{
@@ -1021,7 +1032,7 @@ struct kernfs_node *kernfs_root_to_node(struct kernfs_root *root)
* @priv: opaque data associated with the new directory
* @ns: optional namespace tag of the directory
*
- * Returns the created node on success, ERR_PTR() value on failure.
+ * Return: the created node on success, ERR_PTR() value on failure.
*/
struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
const char *name, umode_t mode,
@@ -1055,7 +1066,7 @@ struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
* @parent: parent in which to create a new directory
* @name: name of the new directory
*
- * Returns the created node on success, ERR_PTR() value on failure.
+ * Return: the created node on success, ERR_PTR() value on failure.
*/
struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
const char *name)
@@ -1304,6 +1315,8 @@ static struct kernfs_node *kernfs_leftmost_descendant(struct kernfs_node *pos)
* Find the next descendant to visit for post-order traversal of @root's
* descendants. @root is included in the iteration and the last node to be
* visited.
+ *
+ * Return: the next descendant to visit or %NULL when done.
*/
static struct kernfs_node *kernfs_next_descendant_post(struct kernfs_node *pos,
struct kernfs_node *root)
@@ -1567,6 +1580,8 @@ void kernfs_unbreak_active_protection(struct kernfs_node *kn)
* the whole kernfs_ops which won the arbitration. This can be used to
* guarantee, for example, all concurrent writes to a "delete" file to
* finish only after the whole operation is complete.
+ *
+ * Return: %true if @kn is removed by this call, otherwise %false.
*/
bool kernfs_remove_self(struct kernfs_node *kn)
{
@@ -1627,7 +1642,8 @@ bool kernfs_remove_self(struct kernfs_node *kn)
* @ns: namespace tag of the kernfs_node to remove
*
* Look for the kernfs_node with @name and @ns under @parent and remove it.
- * Returns 0 on success, -ENOENT if such entry doesn't exist.
+ *
+ * Return: %0 on success, -ENOENT if such entry doesn't exist.
*/
int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
const void *ns)
@@ -1665,6 +1681,8 @@ int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
* @new_parent: new parent to put @sd under
* @new_name: new name
* @new_ns: new namespace tag
+ *
+ * Return: %0 on success, -errno on failure.
*/
int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
const char *new_name, const void *new_ns)
diff --git a/fs/kernfs/file.c b/fs/kernfs/file.c
index 9ab6c92e02dab..e4a50e4ff0d23 100644
--- a/fs/kernfs/file.c
+++ b/fs/kernfs/file.c
@@ -33,7 +33,7 @@ struct kernfs_open_node {
* pending queue is implemented as a singly linked list of kernfs_nodes.
* The list is terminated with the self pointer so that whether a
* kernfs_node is on the list or not can be determined by testing the next
- * pointer for NULL.
+ * pointer for %NULL.
*/
#define KERNFS_NOTIFY_EOL ((void *)&kernfs_notify_list)
@@ -59,8 +59,10 @@ static inline struct mutex *kernfs_open_file_mutex_lock(struct kernfs_node *kn)
}
/**
- * of_on - Return the kernfs_open_node of the specified kernfs_open_file
- * @of: taret kernfs_open_file
+ * of_on - Get the kernfs_open_node of the specified kernfs_open_file
+ * @of: target kernfs_open_file
+ *
+ * Return: the kernfs_open_node of the kernfs_open_file
*/
static struct kernfs_open_node *of_on(struct kernfs_open_file *of)
{
@@ -82,6 +84,8 @@ static struct kernfs_open_node *of_on(struct kernfs_open_file *of)
* outside RCU read-side critical section.
*
* The caller needs to make sure that kernfs_open_file_mutex is held.
+ *
+ * Return: @kn->attr.open when kernfs_open_file_mutex is held.
*/
static struct kernfs_open_node *
kernfs_deref_open_node_locked(struct kernfs_node *kn)
@@ -548,11 +552,11 @@ static int kernfs_fop_mmap(struct file *file, struct vm_area_struct *vma)
* If @kn->attr.open exists, increment its reference count; otherwise,
* create one. @of is chained to the files list.
*
- * LOCKING:
+ * Locking:
* Kernel thread context (may sleep).
*
- * RETURNS:
- * 0 on success, -errno on failure.
+ * Return:
+ * %0 on success, -errno on failure.
*/
static int kernfs_get_open_node(struct kernfs_node *kn,
struct kernfs_open_file *of)
@@ -1024,7 +1028,7 @@ const struct file_operations kernfs_file_fops = {
* @ns: optional namespace tag of the file
* @key: lockdep key for the file's active_ref, %NULL to disable lockdep
*
- * Returns the created node on success, ERR_PTR() value on error.
+ * Return: the created node on success, ERR_PTR() value on error.
*/
struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
const char *name,
diff --git a/fs/kernfs/inode.c b/fs/kernfs/inode.c
index 3d783d80f5daa..076ba9884916c 100644
--- a/fs/kernfs/inode.c
+++ b/fs/kernfs/inode.c
@@ -94,7 +94,7 @@ int __kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr)
* @kn: target node
* @iattr: iattr to set
*
- * Returns 0 on success, -errno on failure.
+ * Return: %0 on success, -errno on failure.
*/
int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr)
{
@@ -241,11 +241,11 @@ static void kernfs_init_inode(struct kernfs_node *kn, struct inode *inode)
* allocated and basics are initialized. New inode is returned
* locked.
*
- * LOCKING:
+ * Locking:
* Kernel thread context (may sleep).
*
- * RETURNS:
- * Pointer to allocated inode on success, NULL on failure.
+ * Return:
+ * Pointer to allocated inode on success, %NULL on failure.
*/
struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
{
diff --git a/fs/kernfs/kernfs-internal.h b/fs/kernfs/kernfs-internal.h
index fc5821effd97d..9046d9f39e635 100644
--- a/fs/kernfs/kernfs-internal.h
+++ b/fs/kernfs/kernfs-internal.h
@@ -58,7 +58,7 @@ struct kernfs_root {
* kernfs_root - find out the kernfs_root a kernfs_node belongs to
* @kn: kernfs_node of interest
*
- * Return the kernfs_root @kn belongs to.
+ * Return: the kernfs_root @kn belongs to.
*/
static inline struct kernfs_root *kernfs_root(struct kernfs_node *kn)
{
diff --git a/fs/kernfs/mount.c b/fs/kernfs/mount.c
index d0859f72d2d64..e08e8d9998070 100644
--- a/fs/kernfs/mount.c
+++ b/fs/kernfs/mount.c
@@ -153,7 +153,7 @@ static const struct export_operations kernfs_export_ops = {
* kernfs_root_from_sb - determine kernfs_root associated with a super_block
* @sb: the super_block in question
*
- * Return the kernfs_root associated with @sb. If @sb is not a kernfs one,
+ * Return: the kernfs_root associated with @sb. If @sb is not a kernfs one,
* %NULL is returned.
*/
struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
@@ -167,7 +167,7 @@ struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
* find the next ancestor in the path down to @child, where @parent was the
* ancestor whose descendant we want to find.
*
- * Say the path is /a/b/c/d. @child is d, @parent is NULL. We return the root
+ * Say the path is /a/b/c/d. @child is d, @parent is %NULL. We return the root
* node. If @parent is b, then we return the node for c.
* Passing in d as @parent is not ok.
*/
@@ -192,6 +192,8 @@ static struct kernfs_node *find_next_ancestor(struct kernfs_node *child,
* kernfs_node_dentry - get a dentry for the given kernfs_node
* @kn: kernfs_node for which a dentry is needed
* @sb: the kernfs super_block
+ *
+ * Return: the dentry pointer
*/
struct dentry *kernfs_node_dentry(struct kernfs_node *kn,
struct super_block *sb)
@@ -296,7 +298,7 @@ static int kernfs_set_super(struct super_block *sb, struct fs_context *fc)
* kernfs_super_ns - determine the namespace tag of a kernfs super_block
* @sb: super_block of interest
*
- * Return the namespace tag associated with kernfs super_block @sb.
+ * Return: the namespace tag associated with kernfs super_block @sb.
*/
const void *kernfs_super_ns(struct super_block *sb)
{
@@ -313,6 +315,8 @@ const void *kernfs_super_ns(struct super_block *sb)
* implementation, which should set the specified ->@fs_type and ->@flags, and
* specify the hierarchy and namespace tag to mount via ->@root and ->@ns,
* respectively.
+ *
+ * Return: %0 on success, -errno on failure.
*/
int kernfs_get_tree(struct fs_context *fc)
{
diff --git a/fs/kernfs/symlink.c b/fs/kernfs/symlink.c
index 0ab13824822f7..45371a70caa71 100644
--- a/fs/kernfs/symlink.c
+++ b/fs/kernfs/symlink.c
@@ -19,7 +19,7 @@
* @name: name of the symlink
* @target: target node for the symlink to point to
*
- * Returns the created node on success, ERR_PTR() value on error.
+ * Return: the created node on success, ERR_PTR() value on error.
* Ownership of the link matches ownership of the target.
*/
struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
--
2.43.0
next prev parent reply other threads:[~2024-07-30 15:54 UTC|newest]
Thread overview: 461+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-30 15:43 [PATCH 6.1 000/440] 6.1.103-rc1 review Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 001/440] spi: spi-microchip-core: Fix the number of chip selects supported Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 002/440] spi: atmel-quadspi: Add missing check for clk_prepare Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 003/440] EDAC, i10nm: make skx_common.o a separate module Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 004/440] rcu/tasks: Fix stale task snaphot for Tasks Trace Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 005/440] md: fix deadlock between mddev_suspend and flush bio Greg Kroah-Hartman
2024-07-30 15:43 ` [PATCH 6.1 006/440] platform/chrome: cros_ec_debugfs: fix wrong EC message version Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 007/440] ubd: refactor the interrupt handler Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 008/440] ubd: untagle discard vs write zeroes not support handling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 009/440] block: refactor to use helper Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 010/440] block: cleanup bio_integrity_prep Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 011/440] block: initialize integrity buffer to zero before writing it to media Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 012/440] hfsplus: fix to avoid false alarm of circular locking Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 013/440] x86/of: Return consistent error type from x86_of_pci_irq_enable() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 014/440] x86/pci/intel_mid_pci: Fix PCIBIOS_* return code handling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 015/440] x86/pci/xen: " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 016/440] x86/platform/iosf_mbi: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-30 15:44 ` Greg Kroah-Hartman [this message]
2024-07-30 15:44 ` [PATCH 6.1 018/440] kernfs: Convert kernfs_path_from_node_locked() from strlcpy() to strscpy() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 019/440] cgroup/cpuset: Prevent UAF in proc_cpuset_show() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 020/440] hwmon: (adt7475) Fix default duty on fan is disabled Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 021/440] block/mq-deadline: Fix the tag reservation code Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 022/440] pwm: stm32: Always do lazy disabling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 023/440] nvmet-auth: fix nvmet_auth hash error handling Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 024/440] drm/meson: fix canvas release in bind function Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 025/440] pwm: atmel-tcb: Put per-channel data into driver data Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 026/440] pwm: atmel-tcb: Unroll atmel_tcb_pwm_set_polarity() into only caller Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 027/440] pwm: atmel-tcb: Dont track polarity in driver data Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 028/440] pwm: atmel-tcb: Fix race condition and convert to guards Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 029/440] hwmon: (max6697) Fix underflow when writing limit attributes Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 030/440] hwmon: (max6697) Fix swapped temp{1,8} critical alarms Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 031/440] arm64: dts: qcom: sdm845: add power-domain to UFS PHY Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 032/440] arm64: dts: qcom: sm6350: " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 033/440] arm64: dts: qcom: sm8250: switch UFS QMP PHY to new style of bindings Greg Kroah-Hartman
2024-10-01 17:27 ` Sumit Semwal
2024-10-01 18:01 ` Dmitry Baryshkov
2024-10-02 9:51 ` Greg Kroah-Hartman
2024-10-03 14:51 ` Sumit Semwal
2024-10-03 21:05 ` Dmitry Baryshkov
2024-10-02 9:51 ` Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 034/440] arm64: dts: qcom: sm8250: add power-domain to UFS PHY Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 035/440] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 036/440] arm64: dts: qcom: msm8996-xiaomi-common: drop excton from the USB PHY Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 037/440] arm64: dts: qcom: msm8998: enable adreno_smmu by default Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 038/440] soc: qcom: rpmh-rsc: Ensure irqs arent disabled by rpmh_rsc_send_data() callers Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 039/440] arm64: dts: rockchip: Add sdmmc related properties on rk3308-rock-pi-s Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 040/440] arm64: dts: rockchip: Add pinctrl for UART0 to rk3308-rock-pi-s Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 041/440] arm64: dts: rockchip: Add mdio and ethernet-phy nodes " Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 042/440] arm64: dts: rockchip: Update WIFi/BT related nodes on rk3308-rock-pi-s Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 043/440] arm64: dts: qcom: msm8996: specify UFS core_clk frequencies Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 044/440] soc: xilinx: rename cpu_number1 to dummy_cpu_number Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 045/440] cpufreq: ti-cpufreq: Handle deferred probe with dev_err_probe() Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 046/440] OPP: ti: Fix ti_opp_supply_probe wrong return values Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 047/440] memory: fsl_ifc: Make FSL_IFC config visible and selectable Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 048/440] soc: qcom: pdr: protect locator_addr with the main mutex Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 049/440] soc: qcom: pdr: fix parsing of domains lists Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 050/440] arm64: dts: rockchip: Increase VOP clk rate on RK3328 Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 051/440] arm64: dts: amlogic: sm1: fix spdif compatibles Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 052/440] ARM: dts: imx6qdl-kontron-samx6i: fix phy-mode Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 053/440] ARM: dts: imx6qdl-kontron-samx6i: fix PHY reset Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 054/440] ARM: dts: imx6qdl-kontron-samx6i: fix board reset Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 055/440] ARM: dts: imx6qdl-kontron-samx6i: fix SPI0 chip selects Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 056/440] ARM: dts: imx6qdl-kontron-samx6i: fix PCIe reset polarity Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 057/440] arm64: dts: mediatek: mt8183-kukui: Drop bogus output-enable property Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 058/440] arm64: dts: mediatek: mt7622: fix "emmc" pinctrl mux Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 059/440] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Add ports node for anx7625 Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 060/440] arm64: dts: amlogic: gx: correct hdmi clocks Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 061/440] arm64: dts: rockchip: Drop invalid mic-in-differential on rk3568-rock-3a Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 062/440] arm64: dts: rockchip: Fix mic-in-differential usage on rk3568-evb1-v10 Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 063/440] arm64: dts: renesas: r8a779g0: Add L3 cache controller Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 064/440] arm64: dts: renesas: r8a779g0: Add secondary CA76 CPU cores Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 065/440] arm64: dts: renesas: Drop specifying the GIC_CPU_MASK_SIMPLE() for GICv3 systems Greg Kroah-Hartman
2024-07-30 15:44 ` [PATCH 6.1 066/440] arm64: dts: renesas: r8a779a0: Add missing hypervisor virtual timer IRQ Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 067/440] arm64: dts: renesas: r8a779f0: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 068/440] arm64: dts: renesas: r8a779g0: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 069/440] arm64: dts: renesas: r9a07g043u: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 070/440] arm64: dts: renesas: r9a07g044: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 071/440] arm64: dts: renesas: r9a07g054: " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 072/440] m68k: atari: Fix TT bootup freeze / unexpected (SCU) interrupt messages Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 073/440] x86/xen: Convert comma to semicolon Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 074/440] arm64: dts: rockchip: Add missing power-domains for rk356x vop_mmu Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 075/440] arm64: dts: qcom: sm6350: Add missing qcom,non-secure-domain property Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 076/440] m68k: cmpxchg: Fix return value for default case in __arch_xchg() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 077/440] ARM: spitz: fix GPIO assignment for backlight Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 078/440] vmlinux.lds.h: catch .bss..L* sections into BSS") Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 079/440] firmware: turris-mox-rwtm: Do not complete if there are no waiters Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 080/440] firmware: turris-mox-rwtm: Fix checking return value of wait_for_completion_timeout() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 081/440] firmware: turris-mox-rwtm: Initialize completion before mailbox Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 082/440] wifi: brcmsmac: LCN PHY code is used for BCM4313 2G-only device Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 083/440] bpftool: Un-const bpf_func_info to fix it for llvm 17 and newer Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 084/440] selftests/bpf: Fix prog numbers in test_sockmap Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 085/440] net: esp: cleanup esp_output_tail_tcp() in case of unsupported ESPINTCP Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 086/440] tcp: annotate lockless accesses to sk->sk_err_soft Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 087/440] tcp: annotate lockless access to sk->sk_err Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 088/440] tcp: add tcp_done_with_error() helper Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 089/440] tcp: fix race in tcp_write_err() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 090/440] tcp: fix races in tcp_v[46]_err() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 091/440] net/smc: set rmbs SG_MAX_SINGLE_ALLOC limitation only when CONFIG_ARCH_NO_SG_CHAIN is defined Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 092/440] selftests/bpf: Check length of recv in test_sockmap Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 093/440] lib: objagg: Fix general protection fault Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 094/440] mlxsw: spectrum_acl_erp: Fix object nesting warning Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 095/440] mlxsw: spectrum_acl: Fix ACL scale regression and firmware errors Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 096/440] perf/x86: Serialize set_attr_rdpmc() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 097/440] jump_label: Use atomic_try_cmpxchg() in static_key_slow_inc_cpuslocked() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 098/440] jump_label: Prevent key->enabled int overflow Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 099/440] jump_label: Fix concurrency issues in static_key_slow_dec() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 100/440] wifi: ath11k: fix wrong handling of CCMP256 and GCMP ciphers Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 101/440] wifi: cfg80211: fix typo in cfg80211_calculate_bitrate_he() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 102/440] wifi: cfg80211: handle 2x996 RU allocation " Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 103/440] net: fec: Refactor: #define magic constants Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 104/440] net: fec: Fix FEC_ECR_EN1588 being cleared on link-down Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 105/440] libbpf: Checking the btf_type kind when fixing variable offsets Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 106/440] ipvs: Avoid unnecessary calls to skb_is_gso_sctp Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 107/440] netfilter: nf_tables: rise cap on SELinux secmark context Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 108/440] bpftool: Mount bpffs when pinmaps path not under the bpffs Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 109/440] perf/x86/intel/pt: Fix pt_topa_entry_for_page() address calculation Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 110/440] perf: Fix perf_aux_size() for greater-than 32-bit size Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 111/440] perf: Prevent passing zero nr_pages to rb_alloc_aux() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 112/440] perf: Fix default aux_watermark calculation Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 113/440] perf/x86/intel/cstate: Fix Alderlake/Raptorlake/Meteorlake Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 114/440] wifi: rtw89: Fix array index mistake in rtw89_sta_info_get_iter() Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 115/440] wifi: virt_wifi: avoid reporting connection success with wrong SSID Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 116/440] gss_krb5: Fix the error handling path for crypto_sync_skcipher_setkey Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 117/440] wifi: virt_wifi: dont use strlen() in const context Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 118/440] locking/rwsem: Add __always_inline annotation to __down_write_common() and inlined callers Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 119/440] selftests/bpf: Close fd in error path in drop_on_reuseport Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 120/440] selftests/bpf: Close obj in error path in xdp_adjust_tail Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 121/440] bpf: annotate BTF show functions with __printf Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 122/440] bna: adjust name buf size of bna_tcb and bna_ccb structures Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 123/440] bpf: Eliminate remaining "make W=1" warnings in kernel/bpf/btf.o Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 124/440] bpf: Fix null pointer dereference in resolve_prog_type() for BPF_PROG_TYPE_EXT Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 125/440] selftests: forwarding: devlink_lib: Wait for udev events after reloading Greg Kroah-Hartman
2024-07-30 15:45 ` [PATCH 6.1 126/440] xdp: fix invalid wait context of page_pool_destroy() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 127/440] net: bridge: mst: Check vlan state for egress decision Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 128/440] drm/rockchip: vop2: Fix the port mux of VP2 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 129/440] drm/mipi-dsi: Fix mipi_dsi_dcs_write_seq() macro definition format Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 130/440] drm/mipi-dsi: Fix theoretical int overflow in mipi_dsi_dcs_write_seq() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 131/440] drm/amd/pm: Fix aldebaran pcie speed reporting Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 132/440] drm/amdgpu: Check if NBIO funcs are NULL in amdgpu_device_baco_exit Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 133/440] drm/amdgpu: Remove GC HW IP 9.3.0 from noretry=1 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 134/440] drm/panel: boe-tv101wum-nl6: If prepare fails, disable GPIO before regulators Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 135/440] drm/panel: boe-tv101wum-nl6: Check for errors on the NOP in prepare() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 136/440] media: pci: ivtv: Add check for DMA map result Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 137/440] media: dvb-usb: Fix unexpected infinite loop in dvb_usb_read_remote_control() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 138/440] media: imon: Fix race getting ictx->lock Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 139/440] media: i2c: Fix imx412 exposure control Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 140/440] media: v4l: async: Fix NULL pointer dereference in adding ancillary links Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 141/440] s390/mm: Convert make_page_secure to use a folio Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 142/440] s390/mm: Convert gmap_make_secure " Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 143/440] s390/uv: Dont call folio_wait_writeback() without a folio reference Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 144/440] saa7134: Unchecked i2c_transfer function result fixed Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 145/440] media: uvcvideo: Override default flags Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 146/440] media: rcar-vin: Fix YUYV8_1X16 handling for CSI-2 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 147/440] media: rcar-csi2: Disable runtime_pm in probe error Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 148/440] media: rcar-csi2: Cleanup subdevice in remove() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 149/440] media: renesas: vsp1: Fix _irqsave and _irq mix Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 150/440] media: renesas: vsp1: Store RPF partition configuration per RPF instance Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 151/440] drm/mediatek: Add missing plane settings when async update Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 152/440] drm/mediatek: Add OVL compatible name for MT8195 Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 153/440] leds: trigger: Unregister sysfs attributes before calling deactivate() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 154/440] drm/msm/dsi: set VIDEO_COMPRESSION_MODE_CTRL_WC Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 155/440] drm/msm/dpu: drop validity checks for clear_pending_flush() ctl op Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 156/440] perf test: Replace arm callgraph fp test workload with leafloop Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 157/440] perf tests arm_callgraph_fp: Address shellcheck warnings about signal names and adding double quotes for expression Greg Kroah-Hartman
2024-07-30 15:46 ` Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 158/440] perf tests: Fix test_arm_callgraph_fp variable expansion Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 159/440] perf test: Make test_arm_callgraph_fp.sh more robust Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 160/440] perf report: Fix condition in sort__sym_cmp() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 161/440] drm/etnaviv: fix DMA direction handling for cached RW buffers Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 162/440] drm/qxl: Add check for drm_cvt_mode Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 163/440] Revert "leds: led-core: Fix refcount leak in of_led_get()" Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 164/440] ext4: fix infinite loop when replaying fast_commit Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 165/440] media: venus: flush all buffers in output plane streamoff Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 166/440] perf intel-pt: Fix aux_watermark calculation for 64-bit size Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 167/440] perf intel-pt: Fix exclude_guest setting Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 168/440] mfd: rsmu: Split core code into separate module Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 169/440] mfd: omap-usb-tll: Use struct_size to allocate tll Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 170/440] xprtrdma: Fix rpcrdma_reqs_reset() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 171/440] SUNRPC: avoid soft lockup when transmitting UDP to reachable server Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 172/440] NFSv4.1 another fix for EXCHGID4_FLAG_USE_PNFS_DS for DS server Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 173/440] ext4: dont track ranges in fast_commit if inode has inlined data Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 174/440] ext4: avoid writing unitialized memory to disk in EA inodes Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 175/440] sparc64: Fix incorrect function signature and add prototype for prom_cif_init Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 176/440] SUNRPC: Fixup gss_status tracepoint error output Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 177/440] PCI: Fix resource double counting on remove & rescan Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 178/440] PCI: keystone: Relocate ks_pcie_set/clear_dbi_mode() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 179/440] PCI: keystone: Dont enable BAR 0 for AM654x Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 180/440] PCI: keystone: Fix NULL pointer dereference in case of DT error in ks_pcie_setup_rc_app_regs() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 181/440] PCI: rcar: Demote WARN() to dev_warn_ratelimited() in rcar_pcie_wakeup() Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 182/440] clk: qcom: branch: Add helper functions for setting retain bits Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 183/440] clk: qcom: gcc-sc7280: Update force mem core bit for UFS ICE clock Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 184/440] clk: qcom: camcc-sc7280: Add parent dependency to all camera GDSCs Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 185/440] iio: frequency: adrf6780: rm clk provider include Greg Kroah-Hartman
2024-07-30 15:46 ` [PATCH 6.1 186/440] coresight: Fix ref leak when of_coresight_parse_endpoint() fails Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 187/440] RDMA/mlx5: Set mkeys for dmabuf at PAGE_SIZE Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 188/440] powerpc/pseries: Fix alignment of PLPKS structures and buffers Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 189/440] powerpc/pseries: Move plpks.h to include directory Greg Kroah-Hartman
2024-07-31 14:22 ` Michael Ellerman
2024-07-30 15:47 ` [PATCH 6.1 190/440] powerpc/pseries: Expose PLPKS config values, support additional fields Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 191/440] powerpc/pseries: Add helper to get PLPKS password length Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 192/440] powerpc/kexec: make the update_cpus_node() function public Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 193/440] powerpc/kexec_file: fix cpus node update to FDT Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 194/440] RDMA/cache: Release GID table even if leak is detected Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 195/440] clk: qcom: gpucc-sm8350: Park RCGs clk source at XO during disable Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 196/440] interconnect: qcom: qcm2290: Fix mas_snoc_bimc RPM master ID Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 197/440] Input: qt1050 - handle CHIP_ID reading error Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 198/440] RDMA/mlx4: Fix truncated output warning in mad.c Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 199/440] RDMA/mlx4: Fix truncated output warning in alias_GUID.c Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 200/440] RDMA/mlx5: Use sq timestamp as QP timestamp when RoCE is disabled Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 201/440] RDMA/rxe: Dont set BTH_ACK_MASK for UC or UD QPs Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 202/440] ASoC: qcom: Adjust issues in case of DT error in asoc_qcom_lpass_cpu_platform_probe() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 203/440] powerpc/prom: Add CPU info to hardware description string later Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 204/440] ASoC: max98088: Check for clk_prepare_enable() error Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 205/440] mtd: make mtd_test.c a separate module Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 206/440] RDMA/device: Return error earlier if port in not valid Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 207/440] Input: elan_i2c - do not leave interrupt disabled on suspend failure Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 208/440] ASoC: amd: Adjust error handling in case of absent codec device Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 209/440] PCI: endpoint: Clean up error handling in vpci_scan_bus() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 210/440] PCI: endpoint: Fix error handling in epf_ntb_epc_cleanup() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 211/440] vhost/vsock: always initialize seqpacket_allow Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 212/440] net: missing check virtio Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 213/440] crypto: qat - extend scope of lock in adf_cfg_add_key_value_param() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 214/440] clk: qcom: Park shared RCGs upon registration Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 215/440] clk: en7523: fix rate divider for slic and spi clocks Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 216/440] MIPS: Octeron: remove source file executable bit Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 217/440] PCI: qcom-ep: Disable resources unconditionally during PERST# assert Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 218/440] PCI: dwc: Fix index 0 incorrectly being interpreted as a free ATU slot Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 219/440] powerpc/xmon: Fix disassembly CPU feature checks Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 220/440] macintosh/therm_windtunnel: fix module unload Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 221/440] RDMA/hns: Check atomic wr length Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 222/440] RDMA/hns: Fix unmatch exception handling when init eq table fails Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 223/440] RDMA/hns: Fix missing pagesize and alignment check in FRMR Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 224/440] RDMA/hns: Fix shift-out-bounds when max_inline_data is 0 Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 225/440] RDMA/hns: Fix undifined behavior caused by invalid max_sge Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 226/440] RDMA/hns: Fix insufficient extend DB for VFs Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 227/440] iommu/vt-d: Fix to convert mm pfn to dma pfn Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 228/440] iommu/vt-d: Fix identity map bounds in si_domain_init() Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 229/440] bnxt_re: Fix imm_data endianness Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 230/440] netfilter: ctnetlink: use helper function to calculate expect ID Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 231/440] netfilter: nft_set_pipapo: constify lookup fn args where possible Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 232/440] netfilter: nf_set_pipapo: fix initial map fill Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 233/440] net: flow_dissector: use DEBUG_NET_WARN_ON_ONCE Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 234/440] ipv4: Fix incorrect TOS in route get reply Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 235/440] ipv4: Fix incorrect TOS in fibmatch " Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 236/440] net: dsa: mv88e6xxx: Limit chip-wide frame size config to CPU ports Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 237/440] net: dsa: b53: Limit chip-wide jumbo frame " Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 238/440] fs/ntfs3: Use ALIGN kernel macro Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 239/440] fs/ntfs3: Merge synonym COMPRESSION_UNIT and NTFS_LZNT_CUNIT Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 240/440] fs/ntfs3: Fix transform resident to nonresident for compressed files Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 241/440] fs/ntfs3: Missed NI_FLAG_UPDATE_PARENT setting Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 242/440] fs/ntfs3: Fix getting file type Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 243/440] fs/ntfs3: Add missing .dirty_folio in address_space_operations Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 244/440] pinctrl: rockchip: update rk3308 iomux routes Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 245/440] pinctrl: core: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-07-30 15:47 ` [PATCH 6.1 246/440] pinctrl: single: " Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 247/440] pinctrl: ti: ti-iodelay: Drop if block with always false condition Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 248/440] pinctrl: ti: ti-iodelay: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 249/440] pinctrl: freescale: mxs: Fix refcount of child Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 250/440] fs/ntfs3: Replace inode_trylock with inode_lock Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 251/440] fs/ntfs3: Fix field-spanning write in INDEX_HDR Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 252/440] pinctrl: renesas: r8a779g0: Fix CANFD5 suffix Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 253/440] pinctrl: renesas: r8a779g0: Fix FXR_TXEN[AB] suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 254/440] pinctrl: renesas: r8a779g0: Fix (H)SCIF1 suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 255/440] pinctrl: renesas: r8a779g0: Fix (H)SCIF3 suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 256/440] pinctrl: renesas: r8a779g0: Fix IRQ suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 257/440] pinctrl: renesas: r8a779g0: FIX PWM suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 258/440] pinctrl: renesas: r8a779g0: Fix TCLK suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 259/440] pinctrl: renesas: r8a779g0: Fix TPU suffixes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 260/440] fs/proc/task_mmu: indicate PM_FILE for PMD-mapped file THP Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 261/440] nilfs2: avoid undefined behavior in nilfs_cnt32_ge macro Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 262/440] rtc: interface: Add RTC offset to alarm after fix-up Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 263/440] fs/ntfs3: Missed error return Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 264/440] fs/ntfs3: Keep runs for $MFT::$ATTR_DATA and $MFT::$ATTR_BITMAP Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 265/440] s390/dasd: fix error checks in dasd_copy_pair_store() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 266/440] sbitmap: remove unnecessary calculation of alloc_hint in __sbitmap_get_shallow Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 267/440] sbitmap: rewrite sbitmap_find_bit_in_index to reduce repeat code Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 268/440] sbitmap: use READ_ONCE to access map->word Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 269/440] sbitmap: fix io hung due to race on sbitmap_word::cleared Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 270/440] landlock: Dont lose track of restrictions on cred_transfer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 271/440] mm/hugetlb: fix possible recursive locking detected warning Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 272/440] mm/mglru: fix div-by-zero in vmpressure_calc_level() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 273/440] mm: mmap_lock: replace get_memcg_path_buf() with on-stack buffer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 274/440] x86/efistub: Avoid returning EFI_SUCCESS on error Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 275/440] x86/efistub: Revert to heap allocated boot_params for PE entrypoint Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 276/440] dt-bindings: thermal: correct thermal zone node name limit Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 277/440] tick/broadcast: Make takeover of broadcast hrtimer reliable Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 278/440] net: netconsole: Disable target before netpoll cleanup Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 279/440] af_packet: Handle outgoing VLAN packets without hardware offloading Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 280/440] kernel: rerun task_work while freezing in get_signal() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 281/440] ipv4: fix source address selection with route leak Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 282/440] ipv6: take care of scope when choosing the src addr Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 283/440] sched/fair: set_load_weight() must also call reweight_task() for SCHED_IDLE tasks Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 284/440] fuse: verify {g,u}id mount options correctly Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 285/440] char: tpm: Fix possible memory leak in tpm_bios_measurements_open() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 286/440] media: venus: fix use after free in vdec_close Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 287/440] ata: libata-scsi: Honor the D_SENSE bit for CK_COND=1 and no error Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 288/440] hfs: fix to initialize fields of hfs_inode_info after hfs_alloc_inode() Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 289/440] ext2: Verify bitmap and itable block numbers before using them Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 290/440] drm/gma500: fix null pointer dereference in cdv_intel_lvds_get_modes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 291/440] drm/gma500: fix null pointer dereference in psb_intel_lvds_get_modes Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 292/440] scsi: qla2xxx: Fix optrom version displayed in FDMI Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 293/440] drm/amd/display: Check for NULL pointer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 294/440] sched/fair: Use all little CPUs for CPU-bound workloads Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 295/440] apparmor: use kvfree_sensitive to free data->data Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 296/440] cifs: fix potential null pointer use in destroy_workqueue in init_cifs error path Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 297/440] cifs: fix reconnect with SMB1 UNIX Extensions Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 298/440] cifs: mount with "unix" mount option for SMB1 incorrectly handled Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 299/440] task_work: s/task_work_cancel()/task_work_cancel_func()/ Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 300/440] task_work: Introduce task_work_cancel() again Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 301/440] udf: Avoid using corrupted block bitmap buffer Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 302/440] m68k: amiga: Turn off Warp1260 interrupts during boot Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 303/440] ext4: check dot and dotdot of dx_root before making dir indexed Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 304/440] ext4: make sure the first directory block is not a hole Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 305/440] io_uring: tighten task exit cancellations Greg Kroah-Hartman
2024-07-30 15:48 ` [PATCH 6.1 306/440] trace/pid_list: Change gfp flags in pid_list_fill_irq() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 307/440] selftests/landlock: Add cred_transfer test Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 308/440] wifi: mwifiex: Fix interface type change Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 309/440] drivers: soc: xilinx: check return status of get_api_version() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 310/440] leds: ss4200: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 311/440] leds: mt6360: Fix memory leak in mt6360_init_isnk_properties() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 312/440] jbd2: make jbd2_journal_get_max_txn_bufs() internal Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 313/440] media: uvcvideo: Fix integer overflow calculating timestamp Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 314/440] KVM: VMX: Split out the non-virtualization part of vmx_interrupt_blocked() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 315/440] KVM: nVMX: Request immediate exit iff pending nested event needs injection Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 316/440] ALSA: usb-audio: Fix microphone sound on HD webcam Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 317/440] ALSA: usb-audio: Move HD Webcam quirk to the right place Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 318/440] ALSA: usb-audio: Add a quirk for Sonix HD USB Camera Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 319/440] tools/memory-model: Fix bug in lock.cat Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 320/440] hwrng: amd - Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 321/440] parisc: Fix warning at drivers/pci/msi/msi.h:121 Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 322/440] PCI: hv: Return zero, not garbage, when reading PCI_INTERRUPT_PIN Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 323/440] PCI: dw-rockchip: Fix initial PERST# GPIO value Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 324/440] PCI: rockchip: Use GPIOD_OUT_LOW flag while requesting ep_gpio Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 325/440] PCI: loongson: Enable MSI in LS7A Root Complex Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 326/440] binder: fix hang of unregistered readers Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 327/440] dev/parport: fix the array out-of-bounds risk Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 328/440] fs/ntfs3: Update log->page_{mask,bits} if log->page_size changed Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 329/440] scsi: qla2xxx: Return ENOBUFS if sg_cnt is more than one for ELS cmds Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 330/440] f2fs: fix to force buffered IO on inline_data inode Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 331/440] f2fs: fix to dont dirty inode for readonly filesystem Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 332/440] f2fs: fix return value of f2fs_convert_inline_inode() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 333/440] clk: davinci: da8xx-cfgchip: Initialize clk_init_data before use Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 334/440] ubi: eba: properly rollback inside self_check_eba Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 335/440] decompress_bunzip2: fix rare decompression failure Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 336/440] kbuild: Fix -S -c in x86 stack protector scripts Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 337/440] ASoC: amd: yc: Support mic on Lenovo Thinkpad E16 Gen 2 Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 338/440] kobject_uevent: Fix OOB access within zap_modalias_env() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 339/440] gve: Fix an edge case for TSO skb validity check Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 340/440] ice: Add a per-VF limit on number of FDIR filters Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 341/440] devres: Fix devm_krealloc() wasting memory Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 342/440] devres: Fix memory leakage caused by driver API devm_free_percpu() Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 343/440] irqchip/imx-irqsteer: Handle runtime power management correctly Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 344/440] mm/numa_balancing: teach mpol_to_str about the balancing mode Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 345/440] rtc: cmos: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 346/440] scsi: qla2xxx: During vport delete send async logout explicitly Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 347/440] scsi: qla2xxx: Unable to act on RSCN for port online Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 348/440] scsi: qla2xxx: Fix for possible memory corruption Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 349/440] scsi: qla2xxx: Use QP lock to search for bsg Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 350/440] scsi: qla2xxx: Fix flash read failure Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 351/440] scsi: qla2xxx: Complete command early within lock Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 352/440] scsi: qla2xxx: validate nvme_local_port correctly Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 353/440] perf: Fix event leak upon exit Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 354/440] perf: Fix event leak upon exec and file release Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 355/440] perf/x86/intel/uncore: Fix the bits of the CHA extended umask for SPR Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 356/440] perf/x86/intel/pt: Fix topa_entry base length Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 357/440] perf/x86/intel/pt: Fix a topa_entry base address calculation Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 358/440] drm/i915/gt: Do not consider preemption during execlists_dequeue for gen8 Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 359/440] drm/amdgpu/sdma5.2: Update wptr registers as well as doorbell Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 360/440] drm/dp_mst: Fix all mstb marked as not probed after suspend/resume Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 361/440] drm/i915/dp: Reset intel_dp->link_trained before retraining the link Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 362/440] rtc: isl1208: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 363/440] watchdog/perf: properly initialize the turbo mode timestamp and rearm counter Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 364/440] platform: mips: cpu_hwmon: Disable driver on unsupported hardware Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 365/440] RDMA/iwcm: Fix a use-after-free related to destroying CM IDs Greg Kroah-Hartman
2024-07-30 15:49 ` [PATCH 6.1 366/440] selftests/sigaltstack: Fix ppc64 GCC build Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 367/440] dm-verity: fix dm_is_verity_target() when dm-verity is builtin Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 368/440] rbd: dont assume rbd_is_lock_owner() for exclusive mappings Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 369/440] remoteproc: stm32_rproc: Fix mailbox interrupts queuing Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 370/440] remoteproc: imx_rproc: Skip over memory region when node value is NULL Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 371/440] remoteproc: imx_rproc: Fix refcount mistake in imx_rproc_addr_init Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 372/440] MIPS: dts: loongson: Add ISA node Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 373/440] MIPS: ip30: ip30-console: Add missing include Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 374/440] MIPS: dts: loongson: Fix GMAC phy node Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 375/440] MIPS: Loongson64: env: Hook up Loongsson-2K Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 376/440] MIPS: Loongson64: Remove memory node for builtin-dtb Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 377/440] MIPS: Loongson64: reset: Prioritise firmware service Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 378/440] MIPS: Loongson64: Test register availability before use Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 379/440] drm/etnaviv: dont block scheduler when GPU is still active Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 380/440] drm/panfrost: Mark simple_ondemand governor as softdep Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 381/440] rbd: rename RBD_LOCK_STATE_RELEASING and releasing_wait Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 382/440] rbd: dont assume RBD_LOCK_STATE_LOCKED for exclusive mappings Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 383/440] bpf: Synchronize dispatcher update with bpf_dispatcher_xdp_func Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 384/440] Bluetooth: btusb: Add RTL8852BE device 0489:e125 to device tables Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 385/440] Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x13d3:0x3591 Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 386/440] nilfs2: handle inconsistent state in nilfs_btnode_create_block() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 387/440] PCI: Introduce cleanup helpers for device reference counts and locks Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 388/440] PCI/DPC: Fix use-after-free on concurrent DPC and hot-removal Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 389/440] io_uring/io-wq: limit retrying worker initialisation Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 390/440] wifi: mac80211: Allow NSS change only up to capability Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 391/440] wifi: mac80211: track capability/opmode NSS separately Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 392/440] wifi: mac80211: check basic rates validity Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 393/440] kdb: address -Wformat-security warnings Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 394/440] kdb: Use the passed prompt in kdb_position_cursor() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 395/440] jfs: Fix array-index-out-of-bounds in diFree Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 396/440] dmaengine: ti: k3-udma: Fix BCHAN count with UHC and HC channels Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 397/440] phy: cadence-torrent: Check return value on register read Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 398/440] um: time-travel: fix time-travel-start option Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 399/440] um: time-travel: fix signal blocking race/hang Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 400/440] f2fs: fix start segno of large section Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 401/440] watchdog: rzg2l_wdt: Use pm_runtime_resume_and_get() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 402/440] watchdog: rzg2l_wdt: Check return status of pm_runtime_put() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 403/440] f2fs: fix to update user block counts in block_operations() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 404/440] kbuild: avoid build error when single DTB is turned into composite DTB Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 405/440] libbpf: Fix no-args func prototype BTF dumping syntax Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 406/440] af_unix: Disable MSG_OOB handling for sockets in sockmap/sockhash Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 407/440] dma: fix call order in dmam_free_coherent Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 408/440] bpf, events: Use prog to emit ksymbol event for main program Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 409/440] tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 410/440] MIPS: SMP-CPS: Fix address for GCR_ACCESS register for CM3 and later Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 411/440] ipv4: Fix incorrect source address in Record Route option Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 412/440] net: bonding: correctly annotate RCU in bond_should_notify_peers() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 413/440] netfilter: nft_set_pipapo_avx2: disable softinterrupts Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 414/440] tipc: Return non-zero value from tipc_udp_addr2str() on error Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 415/440] net: stmmac: Correct byte order of perfect_match Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 416/440] net: nexthop: Initialize all fields in dumped nexthops Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 417/440] bpf: Fix a segment issue when downgrading gso_size Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 418/440] mISDN: Fix a use after free in hfcmulti_tx() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 419/440] apparmor: Fix null pointer deref when receiving skb during sock creation Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 420/440] powerpc: fix a file leak in kvm_vcpu_ioctl_enable_cap() Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 421/440] lirc: rc_dev_get_from_fd(): fix file leak Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 422/440] auxdisplay: ht16k33: Drop reference after LED registration Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 423/440] ASoC: SOF: imx8m: Fix DSP control regmap retrieval Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 424/440] spi: microchip-core: fix the issues in the isr Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 425/440] spi: microchip-core: only disable SPI controller when register value change requires it Greg Kroah-Hartman
2024-07-30 15:50 ` [PATCH 6.1 426/440] spi: microchip-core: switch to use modern name Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 427/440] spi: microchip-core: fix init function not setting the master and motorola modes Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 428/440] nvme-pci: Fix the instructions for disabling power management Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 429/440] spidev: Add Silicon Labs EM3581 device compatible Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 430/440] spi: spidev: order compatibles alphabetically Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 431/440] spi: spidev: add correct compatible for Rohm BH2228FV Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 432/440] ASoC: Intel: use soc_intel_is_byt_cr() only when IOSF_MBI is reachable Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 433/440] ceph: fix incorrect kmalloc size of pagevec mempool Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 434/440] s390/pci: Refactor arch_setup_msi_irqs() Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 435/440] s390/pci: Allow allocation of more than 1 MSI interrupt Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 436/440] s390/cpum_cf: Fix endless loop in CF_DIAG event stop Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 437/440] iommu: sprd: Avoid NULL deref in sprd_iommu_hw_en Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 438/440] io_uring: fix io_match_task must_hold Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 439/440] nvme-pci: add missing condition check for existence of mapped data Greg Kroah-Hartman
2024-07-30 15:51 ` [PATCH 6.1 440/440] fs: dont allow non-init s_user_ns for filesystems without FS_USERNS_MOUNT Greg Kroah-Hartman
2024-07-30 22:40 ` [PATCH 6.1 000/440] 6.1.103-rc1 review Florian Fainelli
2024-07-30 23:18 ` Shuah Khan
2024-07-30 23:37 ` Frank Scheiner
2024-07-30 23:52 ` Shuah Khan
2024-07-30 23:24 ` Frank Scheiner
2024-07-31 6:07 ` Greg KH
2024-07-31 9:24 ` Naresh Kamboju
2024-07-31 16:13 ` Jens Axboe
2024-07-31 16:46 ` Dan Carpenter
2024-07-31 16:49 ` Jens Axboe
2024-07-31 14:42 ` Peter Schneider
2024-08-01 8:28 ` Shreeya Patel
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=20240730151616.436485926@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=patches@lists.linux.dev \
--cc=rdunlap@infradead.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is 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.