From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Jon Maloy <jon.maloy@ericsson.com>,
Hoang Le <hoang.h.le@dektech.com.au>,
"David S. Miller" <davem@davemloft.net>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 634/658] tipc: improve throughput between nodes in netns
Date: Mon, 16 Jan 2023 16:52:02 +0100 [thread overview]
Message-ID: <20230116154938.494903817@linuxfoundation.org> (raw)
In-Reply-To: <20230116154909.645460653@linuxfoundation.org>
From: Hoang Le <hoang.h.le@dektech.com.au>
[ Upstream commit f73b12812a3d1d798b7517547ccdcf864844d2cd ]
Currently, TIPC transports intra-node user data messages directly
socket to socket, hence shortcutting all the lower layers of the
communication stack. This gives TIPC very good intra node performance,
both regarding throughput and latency.
We now introduce a similar mechanism for TIPC data traffic across
network namespaces located in the same kernel. On the send path, the
call chain is as always accompanied by the sending node's network name
space pointer. However, once we have reliably established that the
receiving node is represented by a namespace on the same host, we just
replace the namespace pointer with the receiving node/namespace's
ditto, and follow the regular socket receive patch though the receiving
node. This technique gives us a throughput similar to the node internal
throughput, several times larger than if we let the traffic go though
the full network stacks. As a comparison, max throughput for 64k
messages is four times larger than TCP throughput for the same type of
traffic.
To meet any security concerns, the following should be noted.
- All nodes joining a cluster are supposed to have been be certified
and authenticated by mechanisms outside TIPC. This is no different for
nodes/namespaces on the same host; they have to auto discover each
other using the attached interfaces, and establish links which are
supervised via the regular link monitoring mechanism. Hence, a kernel
local node has no other way to join a cluster than any other node, and
have to obey to policies set in the IP or device layers of the stack.
- Only when a sender has established with 100% certainty that the peer
node is located in a kernel local namespace does it choose to let user
data messages, and only those, take the crossover path to the receiving
node/namespace.
- If the receiving node/namespace is removed, its namespace pointer
is invalidated at all peer nodes, and their neighbor link monitoring
will eventually note that this node is gone.
- To ensure the "100% certainty" criteria, and prevent any possible
spoofing, received discovery messages must contain a proof that the
sender knows a common secret. We use the hash mix of the sending
node/namespace for this purpose, since it can be accessed directly by
all other namespaces in the kernel. Upon reception of a discovery
message, the receiver checks this proof against all the local
namespaces'hash_mix:es. If it finds a match, that, along with a
matching node id and cluster id, this is deemed sufficient proof that
the peer node in question is in a local namespace, and a wormhole can
be opened.
- We should also consider that TIPC is intended to be a cluster local
IPC mechanism (just like e.g. UNIX sockets) rather than a network
protocol, and hence we think it can justified to allow it to shortcut the
lower protocol layers.
Regarding traceability, we should notice that since commit 6c9081a3915d
("tipc: add loopback device tracking") it is possible to follow the node
internal packet flow by just activating tcpdump on the loopback
interface. This will be true even for this mechanism; by activating
tcpdump on the involved nodes' loopback interfaces their inter-name
space messaging can easily be tracked.
v2:
- update 'net' pointer when node left/rejoined
v3:
- grab read/write lock when using node ref obj
v4:
- clone traffics between netns to loopback
Suggested-by: Jon Maloy <jon.maloy@ericsson.com>
Acked-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: Hoang Le <hoang.h.le@dektech.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Stable-dep-of: c244c092f1ed ("tipc: fix unexpected link reset due to discovery messages")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
net/tipc/core.c | 16 +++++
net/tipc/core.h | 6 ++
net/tipc/discover.c | 4 +-
net/tipc/msg.h | 14 ++++
net/tipc/name_distr.c | 2 +-
net/tipc/node.c | 155 ++++++++++++++++++++++++++++++++++++++++--
net/tipc/node.h | 5 +-
net/tipc/socket.c | 6 +-
8 files changed, 197 insertions(+), 11 deletions(-)
diff --git a/net/tipc/core.c b/net/tipc/core.c
index 90cf7e0bbaf0..58ee5ee70781 100644
--- a/net/tipc/core.c
+++ b/net/tipc/core.c
@@ -112,6 +112,15 @@ static void __net_exit tipc_exit_net(struct net *net)
cond_resched();
}
+static void __net_exit tipc_pernet_pre_exit(struct net *net)
+{
+ tipc_node_pre_cleanup_net(net);
+}
+
+static struct pernet_operations tipc_pernet_pre_exit_ops = {
+ .pre_exit = tipc_pernet_pre_exit,
+};
+
static struct pernet_operations tipc_net_ops = {
.init = tipc_init_net,
.exit = tipc_exit_net,
@@ -150,6 +159,10 @@ static int __init tipc_init(void)
if (err)
goto out_pernet_topsrv;
+ err = register_pernet_subsys(&tipc_pernet_pre_exit_ops);
+ if (err)
+ goto out_register_pernet_subsys;
+
err = tipc_bearer_setup();
if (err)
goto out_bearer;
@@ -170,6 +183,8 @@ static int __init tipc_init(void)
out_netlink:
tipc_bearer_cleanup();
out_bearer:
+ unregister_pernet_subsys(&tipc_pernet_pre_exit_ops);
+out_register_pernet_subsys:
unregister_pernet_device(&tipc_topsrv_net_ops);
out_pernet_topsrv:
tipc_socket_stop();
@@ -187,6 +202,7 @@ static void __exit tipc_exit(void)
tipc_netlink_compat_stop();
tipc_netlink_stop();
tipc_bearer_cleanup();
+ unregister_pernet_subsys(&tipc_pernet_pre_exit_ops);
unregister_pernet_device(&tipc_topsrv_net_ops);
tipc_socket_stop();
unregister_pernet_device(&tipc_net_ops);
diff --git a/net/tipc/core.h b/net/tipc/core.h
index c6bda91f8581..59f97ef12e60 100644
--- a/net/tipc/core.h
+++ b/net/tipc/core.h
@@ -59,6 +59,7 @@
#include <net/netns/generic.h>
#include <linux/rhashtable.h>
#include <net/genetlink.h>
+#include <net/netns/hash.h>
#ifdef pr_fmt
#undef pr_fmt
@@ -202,6 +203,11 @@ static inline int in_range(u16 val, u16 min, u16 max)
return !less(val, min) && !more(val, max);
}
+static inline u32 tipc_net_hash_mixes(struct net *net, int tn_rand)
+{
+ return net_hash_mix(&init_net) ^ net_hash_mix(net) ^ tn_rand;
+}
+
#ifdef CONFIG_SYSCTL
int tipc_register_sysctl(void);
void tipc_unregister_sysctl(void);
diff --git a/net/tipc/discover.c b/net/tipc/discover.c
index 0436c8f2967d..61b80de93489 100644
--- a/net/tipc/discover.c
+++ b/net/tipc/discover.c
@@ -94,6 +94,7 @@ static void tipc_disc_init_msg(struct net *net, struct sk_buff *skb,
msg_set_dest_domain(hdr, dest_domain);
msg_set_bc_netid(hdr, tn->net_id);
b->media->addr2msg(msg_media_addr(hdr), &b->addr);
+ msg_set_peer_net_hash(hdr, tipc_net_hash_mixes(net, tn->random));
msg_set_node_id(hdr, tipc_own_id(net));
}
@@ -245,7 +246,8 @@ void tipc_disc_rcv(struct net *net, struct sk_buff *skb,
if (!tipc_in_scope(legacy, b->domain, src))
return;
tipc_node_check_dest(net, src, peer_id, b, caps, signature,
- &maddr, &respond, &dupl_addr);
+ msg_peer_net_hash(hdr), &maddr, &respond,
+ &dupl_addr);
if (dupl_addr)
disc_dupl_alert(b, src, &maddr);
if (!respond)
diff --git a/net/tipc/msg.h b/net/tipc/msg.h
index 0daa6f04ca81..2d7cb66a6912 100644
--- a/net/tipc/msg.h
+++ b/net/tipc/msg.h
@@ -1026,6 +1026,20 @@ static inline bool msg_is_reset(struct tipc_msg *hdr)
return (msg_user(hdr) == LINK_PROTOCOL) && (msg_type(hdr) == RESET_MSG);
}
+/* Word 13
+ */
+static inline void msg_set_peer_net_hash(struct tipc_msg *m, u32 n)
+{
+ msg_set_word(m, 13, n);
+}
+
+static inline u32 msg_peer_net_hash(struct tipc_msg *m)
+{
+ return msg_word(m, 13);
+}
+
+/* Word 14
+ */
static inline u32 msg_sugg_node_addr(struct tipc_msg *m)
{
return msg_word(m, 14);
diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c
index 661bc2551a0a..6ac84e7c8b63 100644
--- a/net/tipc/name_distr.c
+++ b/net/tipc/name_distr.c
@@ -146,7 +146,7 @@ static void named_distribute(struct net *net, struct sk_buff_head *list,
struct publication *publ;
struct sk_buff *skb = NULL;
struct distr_item *item = NULL;
- u32 msg_dsz = ((tipc_node_get_mtu(net, dnode, 0) - INT_H_SIZE) /
+ u32 msg_dsz = ((tipc_node_get_mtu(net, dnode, 0, false) - INT_H_SIZE) /
ITEM_SIZE) * ITEM_SIZE;
u32 msg_rem = msg_dsz;
diff --git a/net/tipc/node.c b/net/tipc/node.c
index c8f6177dd5a2..3136e2a777fd 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -126,6 +126,8 @@ struct tipc_node {
struct timer_list timer;
struct rcu_head rcu;
unsigned long delete_at;
+ struct net *peer_net;
+ u32 peer_hash_mix;
};
/* Node FSM states and events:
@@ -184,7 +186,7 @@ static struct tipc_link *node_active_link(struct tipc_node *n, int sel)
return n->links[bearer_id].link;
}
-int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel)
+int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel, bool connected)
{
struct tipc_node *n;
int bearer_id;
@@ -194,6 +196,14 @@ int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel)
if (unlikely(!n))
return mtu;
+ /* Allow MAX_MSG_SIZE when building connection oriented message
+ * if they are in the same core network
+ */
+ if (n->peer_net && connected) {
+ tipc_node_put(n);
+ return mtu;
+ }
+
bearer_id = n->active_links[sel & 1];
if (likely(bearer_id != INVALID_BEARER_ID))
mtu = n->links[bearer_id].mtu;
@@ -360,8 +370,37 @@ static void tipc_node_write_unlock(struct tipc_node *n)
}
}
+static void tipc_node_assign_peer_net(struct tipc_node *n, u32 hash_mixes)
+{
+ int net_id = tipc_netid(n->net);
+ struct tipc_net *tn_peer;
+ struct net *tmp;
+ u32 hash_chk;
+
+ if (n->peer_net)
+ return;
+
+ for_each_net_rcu(tmp) {
+ tn_peer = tipc_net(tmp);
+ if (!tn_peer)
+ continue;
+ /* Integrity checking whether node exists in namespace or not */
+ if (tn_peer->net_id != net_id)
+ continue;
+ if (memcmp(n->peer_id, tn_peer->node_id, NODE_ID_LEN))
+ continue;
+ hash_chk = tipc_net_hash_mixes(tmp, tn_peer->random);
+ if (hash_mixes ^ hash_chk)
+ continue;
+ n->peer_net = tmp;
+ n->peer_hash_mix = hash_mixes;
+ break;
+ }
+}
+
static struct tipc_node *tipc_node_create(struct net *net, u32 addr,
- u8 *peer_id, u16 capabilities)
+ u8 *peer_id, u16 capabilities,
+ u32 signature, u32 hash_mixes)
{
struct tipc_net *tn = net_generic(net, tipc_net_id);
struct tipc_node *n, *temp_node;
@@ -372,6 +411,8 @@ static struct tipc_node *tipc_node_create(struct net *net, u32 addr,
spin_lock_bh(&tn->node_list_lock);
n = tipc_node_find(net, addr);
if (n) {
+ if (n->peer_hash_mix ^ hash_mixes)
+ tipc_node_assign_peer_net(n, hash_mixes);
if (n->capabilities == capabilities)
goto exit;
/* Same node may come back with new capabilities */
@@ -389,6 +430,7 @@ static struct tipc_node *tipc_node_create(struct net *net, u32 addr,
list_for_each_entry_rcu(temp_node, &tn->node_list, list) {
tn->capabilities &= temp_node->capabilities;
}
+
goto exit;
}
n = kzalloc(sizeof(*n), GFP_ATOMIC);
@@ -399,6 +441,10 @@ static struct tipc_node *tipc_node_create(struct net *net, u32 addr,
n->addr = addr;
memcpy(&n->peer_id, peer_id, 16);
n->net = net;
+ n->peer_net = NULL;
+ n->peer_hash_mix = 0;
+ /* Assign kernel local namespace if exists */
+ tipc_node_assign_peer_net(n, hash_mixes);
n->capabilities = capabilities;
kref_init(&n->kref);
rwlock_init(&n->lock);
@@ -426,6 +472,10 @@ static struct tipc_node *tipc_node_create(struct net *net, u32 addr,
tipc_bc_sndlink(net),
&n->bc_entry.link)) {
pr_warn("Broadcast rcv link creation failed, no memory\n");
+ if (n->peer_net) {
+ n->peer_net = NULL;
+ n->peer_hash_mix = 0;
+ }
kfree(n);
n = NULL;
goto exit;
@@ -979,7 +1029,7 @@ u32 tipc_node_try_addr(struct net *net, u8 *id, u32 addr)
void tipc_node_check_dest(struct net *net, u32 addr,
u8 *peer_id, struct tipc_bearer *b,
- u16 capabilities, u32 signature,
+ u16 capabilities, u32 signature, u32 hash_mixes,
struct tipc_media_addr *maddr,
bool *respond, bool *dupl_addr)
{
@@ -998,7 +1048,8 @@ void tipc_node_check_dest(struct net *net, u32 addr,
*dupl_addr = false;
*respond = false;
- n = tipc_node_create(net, addr, peer_id, capabilities);
+ n = tipc_node_create(net, addr, peer_id, capabilities, signature,
+ hash_mixes);
if (!n)
return;
@@ -1343,6 +1394,10 @@ static void node_lost_contact(struct tipc_node *n,
/* Notify publications from this node */
n->action_flags |= TIPC_NOTIFY_NODE_DOWN;
+ if (n->peer_net) {
+ n->peer_net = NULL;
+ n->peer_hash_mix = 0;
+ }
/* Notify sockets connected to node */
list_for_each_entry_safe(conn, safe, conns, list) {
skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG,
@@ -1424,6 +1479,56 @@ static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node)
return -EMSGSIZE;
}
+static void tipc_lxc_xmit(struct net *peer_net, struct sk_buff_head *list)
+{
+ struct tipc_msg *hdr = buf_msg(skb_peek(list));
+ struct sk_buff_head inputq;
+
+ switch (msg_user(hdr)) {
+ case TIPC_LOW_IMPORTANCE:
+ case TIPC_MEDIUM_IMPORTANCE:
+ case TIPC_HIGH_IMPORTANCE:
+ case TIPC_CRITICAL_IMPORTANCE:
+ if (msg_connected(hdr) || msg_named(hdr)) {
+ tipc_loopback_trace(peer_net, list);
+ spin_lock_init(&list->lock);
+ tipc_sk_rcv(peer_net, list);
+ return;
+ }
+ if (msg_mcast(hdr)) {
+ tipc_loopback_trace(peer_net, list);
+ skb_queue_head_init(&inputq);
+ tipc_sk_mcast_rcv(peer_net, list, &inputq);
+ __skb_queue_purge(list);
+ skb_queue_purge(&inputq);
+ return;
+ }
+ return;
+ case MSG_FRAGMENTER:
+ if (tipc_msg_assemble(list)) {
+ tipc_loopback_trace(peer_net, list);
+ skb_queue_head_init(&inputq);
+ tipc_sk_mcast_rcv(peer_net, list, &inputq);
+ __skb_queue_purge(list);
+ skb_queue_purge(&inputq);
+ }
+ return;
+ case GROUP_PROTOCOL:
+ case CONN_MANAGER:
+ tipc_loopback_trace(peer_net, list);
+ spin_lock_init(&list->lock);
+ tipc_sk_rcv(peer_net, list);
+ return;
+ case LINK_PROTOCOL:
+ case NAME_DISTRIBUTOR:
+ case TUNNEL_PROTOCOL:
+ case BCAST_PROTOCOL:
+ return;
+ default:
+ return;
+ };
+}
+
/**
* tipc_node_xmit() is the general link level function for message sending
* @net: the applicable net namespace
@@ -1439,6 +1544,7 @@ int tipc_node_xmit(struct net *net, struct sk_buff_head *list,
struct tipc_link_entry *le = NULL;
struct tipc_node *n;
struct sk_buff_head xmitq;
+ bool node_up = false;
int bearer_id;
int rc;
@@ -1456,6 +1562,17 @@ int tipc_node_xmit(struct net *net, struct sk_buff_head *list,
}
tipc_node_read_lock(n);
+ node_up = node_is_up(n);
+ if (node_up && n->peer_net && check_net(n->peer_net)) {
+ /* xmit inner linux container */
+ tipc_lxc_xmit(n->peer_net, list);
+ if (likely(skb_queue_empty(list))) {
+ tipc_node_read_unlock(n);
+ tipc_node_put(n);
+ return 0;
+ }
+ }
+
bearer_id = n->active_links[selector & 1];
if (unlikely(bearer_id == INVALID_BEARER_ID)) {
tipc_node_read_unlock(n);
@@ -2591,3 +2708,33 @@ int tipc_node_dump(struct tipc_node *n, bool more, char *buf)
return i;
}
+
+void tipc_node_pre_cleanup_net(struct net *exit_net)
+{
+ struct tipc_node *n;
+ struct tipc_net *tn;
+ struct net *tmp;
+
+ rcu_read_lock();
+ for_each_net_rcu(tmp) {
+ if (tmp == exit_net)
+ continue;
+ tn = tipc_net(tmp);
+ if (!tn)
+ continue;
+ spin_lock_bh(&tn->node_list_lock);
+ list_for_each_entry_rcu(n, &tn->node_list, list) {
+ if (!n->peer_net)
+ continue;
+ if (n->peer_net != exit_net)
+ continue;
+ tipc_node_write_lock(n);
+ n->peer_net = NULL;
+ n->peer_hash_mix = 0;
+ tipc_node_write_unlock_fast(n);
+ break;
+ }
+ spin_unlock_bh(&tn->node_list_lock);
+ }
+ rcu_read_unlock();
+}
diff --git a/net/tipc/node.h b/net/tipc/node.h
index 291d0ecd4101..30563c4f35d5 100644
--- a/net/tipc/node.h
+++ b/net/tipc/node.h
@@ -75,7 +75,7 @@ u32 tipc_node_get_addr(struct tipc_node *node);
u32 tipc_node_try_addr(struct net *net, u8 *id, u32 addr);
void tipc_node_check_dest(struct net *net, u32 onode, u8 *peer_id128,
struct tipc_bearer *bearer,
- u16 capabilities, u32 signature,
+ u16 capabilities, u32 signature, u32 hash_mixes,
struct tipc_media_addr *maddr,
bool *respond, bool *dupl_addr);
void tipc_node_delete_links(struct net *net, int bearer_id);
@@ -92,7 +92,7 @@ void tipc_node_unsubscribe(struct net *net, struct list_head *subscr, u32 addr);
void tipc_node_broadcast(struct net *net, struct sk_buff *skb);
int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port);
void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port);
-int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel);
+int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel, bool connected);
bool tipc_node_is_up(struct net *net, u32 addr);
u16 tipc_node_get_capabilities(struct net *net, u32 addr);
int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb);
@@ -107,4 +107,5 @@ int tipc_nl_node_get_monitor(struct sk_buff *skb, struct genl_info *info);
int tipc_nl_node_dump_monitor(struct sk_buff *skb, struct netlink_callback *cb);
int tipc_nl_node_dump_monitor_peer(struct sk_buff *skb,
struct netlink_callback *cb);
+void tipc_node_pre_cleanup_net(struct net *exit_net);
#endif
diff --git a/net/tipc/socket.c b/net/tipc/socket.c
index 58c4d61d603f..e1e148da538d 100644
--- a/net/tipc/socket.c
+++ b/net/tipc/socket.c
@@ -866,7 +866,7 @@ static int tipc_send_group_msg(struct net *net, struct tipc_sock *tsk,
/* Build message as chain of buffers */
__skb_queue_head_init(&pkts);
- mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
+ mtu = tipc_node_get_mtu(net, dnode, tsk->portid, false);
rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
if (unlikely(rc != dlen))
return rc;
@@ -1407,7 +1407,7 @@ static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen)
}
__skb_queue_head_init(&pkts);
- mtu = tipc_node_get_mtu(net, dnode, tsk->portid);
+ mtu = tipc_node_get_mtu(net, dnode, tsk->portid, false);
rc = tipc_msg_build(hdr, m, 0, dlen, mtu, &pkts);
if (unlikely(rc != dlen))
return rc;
@@ -1547,7 +1547,7 @@ static void tipc_sk_finish_conn(struct tipc_sock *tsk, u32 peer_port,
sk_reset_timer(sk, &sk->sk_timer, jiffies + CONN_PROBING_INTV);
tipc_set_sk_state(sk, TIPC_ESTABLISHED);
tipc_node_add_conn(net, peer_node, tsk->portid, peer_port);
- tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid);
+ tsk->max_pkt = tipc_node_get_mtu(net, peer_node, tsk->portid, true);
tsk->peer_caps = tipc_node_get_capabilities(net, peer_node);
__skb_queue_purge(&sk->sk_write_queue);
if (tsk->peer_caps & TIPC_BLOCK_FLOWCTL)
--
2.35.1
next prev parent reply other threads:[~2023-01-16 16:36 UTC|newest]
Thread overview: 673+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-16 15:41 [PATCH 5.4 000/658] 5.4.229-rc1 review Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 001/658] tracing/ring-buffer: Only do full wait when cpu != RING_BUFFER_ALL_CPUS Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 002/658] udf: Discard preallocation before extending file with a hole Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 003/658] udf: Fix preallocation discarding at indirect extent boundary Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 004/658] udf: Do not bother looking for prealloc extents if i_lenExtents matches i_size Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 005/658] udf: Fix extending file within last block Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 006/658] usb: gadget: uvc: Prevent buffer overflow in setup handler Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 007/658] USB: serial: option: add Quectel EM05-G modem Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 008/658] USB: serial: cp210x: add Kamstrup RF sniffer PIDs Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 009/658] USB: serial: f81232: fix division by zero on line-speed change Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 010/658] USB: serial: f81534: " Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 011/658] igb: Initialize mailbox message for VF reset Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 012/658] xen-netback: move removal of "hotplug-status" to the right place Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 013/658] HID: ite: Add support for Acer S1002 keyboard-dock Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 014/658] HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch 10E Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 015/658] HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch V 10 Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 016/658] HID: uclogic: Add HID_QUIRK_HIDINPUT_FORCE quirk Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 017/658] Bluetooth: L2CAP: Fix u8 overflow Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 018/658] net: loopback: use NET_NAME_PREDICTABLE for name_assign_type Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 019/658] usb: musb: remove extra check in musb_gadget_vbus_draw Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 020/658] ARM: dts: qcom: apq8064: fix coresight compatible Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 021/658] arm64: dts: qcom: sdm845-cheza: fix AP suspend pin bias Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 022/658] drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 023/658] soc: qcom: llcc cleanup to get rid of sdm845 specific driver file Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 024/658] soc: qcom: Rename llcc-slice to llcc-qcom Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 025/658] soc: qcom: llcc: make irq truly optional Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 026/658] arm: dts: spear600: Fix clcd interrupt Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 027/658] soc: ti: knav_qmss_queue: Use pm_runtime_resume_and_get instead of pm_runtime_get_sync Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 028/658] soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 029/658] soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 030/658] perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init() Greg Kroah-Hartman
2023-01-16 15:41 ` [PATCH 5.4 031/658] perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 032/658] arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 033/658] arm64: dts: mt2712e: Fix unit address for pinctrl node Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 034/658] arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 035/658] arm64: dts: mt2712-evb: Fix usb vbus " Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 036/658] arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 037/658] ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 038/658] ARM: dts: armada-370: " Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 039/658] ARM: dts: armada-xp: " Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 040/658] ARM: dts: armada-375: " Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 041/658] ARM: dts: armada-38x: " Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 042/658] ARM: dts: armada-39x: " Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 043/658] ARM: dts: turris-omnia: Add ethernet aliases Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 044/658] ARM: dts: turris-omnia: Add switch port 6 node Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 045/658] arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 046/658] pstore/ram: Fix error return code in ramoops_probe() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 047/658] ARM: mmp: fix timer_read delay Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 048/658] pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 049/658] tpm/tpm_crb: Fix error message in __crb_relinquish_locality() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 050/658] cpuidle: dt: Return the correct numbers of parsed idle states Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 051/658] alpha: fix syscall entry in !AUDUT_SYSCALL case Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 052/658] PM: hibernate: Fix mistake in kerneldoc comment Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 053/658] fs: dont audit the capability check in simple_xattr_list() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 054/658] selftests/ftrace: event_triggers: wait longer for test_event_enable Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 055/658] perf: Fix possible memleak in pmu_dev_alloc() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 056/658] debugobjects: Free per CPU pool after CPU unplug Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 057/658] lib/debugobjects: fix stat count and optimize debug_objects_mem_init Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 058/658] timerqueue: Use rb_entry_safe() in timerqueue_getnext() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 059/658] proc: fixup uptime selftest Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 060/658] lib/fonts: fix undefined behavior in bit shift for get_default_font Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 061/658] ocfs2: fix memory leak in ocfs2_stack_glue_init() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 062/658] MIPS: vpe-mt: fix possible memory leak while module exiting Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 063/658] MIPS: vpe-cmp: " Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 064/658] selftests/efivarfs: Add checking of the test return value Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 065/658] PNP: fix name memory leak in pnp_alloc_dev() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 066/658] perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 067/658] irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 068/658] EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 069/658] nfsd: dont call nfsd_file_put from client states seqfile display Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 070/658] genirq/irqdesc: Dont try to remove non-existing sysfs files Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 071/658] cpufreq: amd_freq_sensitivity: Add missing pci_dev_put() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 072/658] libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 073/658] lib/notifier-error-inject: fix error when writing -errno to debugfs file Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 074/658] docs: fault-injection: fix non-working usage of negative values Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 075/658] debugfs: fix error when writing negative value to atomic_t debugfs file Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 076/658] ocfs2: ocfs2_mount_volume does cleanup job before return error Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 077/658] ocfs2: rewrite error handling of ocfs2_fill_super Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 078/658] ocfs2: fix memory leak in ocfs2_mount_volume() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 079/658] rapidio: fix possible name leaks when rio_add_device() fails Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 080/658] rapidio: rio: fix possible name leak in rio_register_mport() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 081/658] clocksource/drivers/sh_cmt: Make sure channel clock supply is enabled Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 082/658] ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 083/658] uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 084/658] xen/events: only register debug interrupt for 2-level events Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 085/658] x86/xen: Fix memory leak in xen_smp_intr_init{_pv}() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 086/658] x86/xen: Fix memory leak in xen_init_lock_cpu() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 087/658] xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 088/658] PM: runtime: Improve path in rpm_idle() when no callback Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 089/658] PM: runtime: Do not call __rpm_callback() from rpm_idle() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 090/658] platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]() Greg Kroah-Hartman
2023-01-16 15:42 ` [PATCH 5.4 091/658] MIPS: BCM63xx: Add check for NULL for clk in clk_enable Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 092/658] MIPS: OCTEON: warn only once if deprecated link status is being used Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 093/658] fs: sysv: Fix sysv_nblocks() returns wrong value Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 094/658] rapidio: fix possible UAF when kfifo_alloc() fails Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 095/658] eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 096/658] relay: fix type mismatch when allocating memory in relay_create_buf() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 097/658] hfs: Fix OOB Write in hfs_asc2mac Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 098/658] rapidio: devices: fix missing put_device in mport_cdev_open Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 099/658] wifi: ath9k: hif_usb: fix memory leak of urbs in ath9k_hif_usb_dealloc_tx_urbs() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 100/658] wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 101/658] wifi: rtl8xxxu: Fix reading the vendor of combo chips Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 102/658] pata_ipx4xx_cf: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 103/658] media: i2c: ad5820: Fix error path Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 104/658] can: kvaser_usb: do not increase tx statistics when sending error message frames Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 105/658] can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 106/658] can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to {leaf,usbcan}_cmd_can_error_event Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 107/658] can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 108/658] can: kvaser_usb_leaf: Set Warning state even without bus errors Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 109/658] can: kvaser_usb_leaf: Fix improved state not being reported Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 110/658] can: kvaser_usb_leaf: Fix wrong CAN state after stopping Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 111/658] can: kvaser_usb_leaf: Fix bogus restart events Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 112/658] can: kvaser_usb: Add struct kvaser_usb_busparams Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 113/658] can: kvaser_usb: Compare requested bittiming parameters with actual parameters in do_set_{,data}_bittiming Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 114/658] clk: renesas: r9a06g032: Repair grave increment error Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 115/658] spi: Update reference to struct spi_controller Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 116/658] drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 117/658] ima: Rename internal filter rule functions Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 118/658] ima: Fix fall-through warnings for Clang Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 119/658] ima: Handle -ESTALE returned by ima_filter_rule_match() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 120/658] media: vivid: fix compose size exceed boundary Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 121/658] bpf: propagate precision in ALU/ALU64 operations Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 122/658] mtd: Fix device name leak when register device failed in add_mtd_device() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 123/658] wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 124/658] media: camss: Clean up received buffers on failed start of streaming Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 125/658] net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 126/658] rxrpc: Fix ack.bufferSize to be 0 when generating an ack Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 127/658] drm/radeon: Add the missed acpi_put_table() to fix memory leak Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 128/658] drm/mediatek: Modify dpi power on/off sequence Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 129/658] ASoC: pxa: fix null-pointer dereference in filter() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 130/658] regulator: core: fix unbalanced of node refcount in regulator_dev_lookup() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 131/658] amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 132/658] integrity: Fix memory leakage in keyring allocation error path Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 133/658] ima: Fix misuse of dereference of pointer in template_desc_init_fields() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 134/658] wifi: ath10k: Fix return value in ath10k_pci_init() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 135/658] mtd: lpddr2_nvm: Fix possible null-ptr-deref Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 136/658] Input: elants_i2c - properly handle the reset GPIO when power is off Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 137/658] media: solo6x10: fix possible memory leak in solo_sysfs_init() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 138/658] media: platform: exynos4-is: Fix error handling in fimc_md_init() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 139/658] media: videobuf-dma-contig: use dma_mmap_coherent Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 140/658] bpf: Move skb->len == 0 checks into __bpf_redirect Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 141/658] HID: hid-sensor-custom: set fixed size for custom attributes Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 142/658] ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 143/658] ALSA: seq: fix undefined behavior in bit shift for SNDRV_SEQ_FILTER_USE_EVENT Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 144/658] regulator: core: use kfree_const() to free space conditionally Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 145/658] clk: rockchip: Fix memory leak in rockchip_clk_register_pll() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 146/658] bonding: Export skip slave logic to function Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 147/658] bonding: Rename slave_arr to usable_slaves Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 148/658] bonding: fix link recovery in mode 2 when updelay is nonzero Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 149/658] mtd: maps: pxa2xx-flash: fix memory leak in probe Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 150/658] media: imon: fix a race condition in send_packet() Greg Kroah-Hartman
2023-01-16 15:43 ` [PATCH 5.4 151/658] clk: imx8mn: correct the usb1_ctrl parent to be usb_bus Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 152/658] clk: imx: replace osc_hdmi with dummy Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 153/658] pinctrl: pinconf-generic: add missing of_node_put() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 154/658] media: dvb-core: Fix ignored return value in dvb_register_frontend() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 155/658] media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 156/658] media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 157/658] drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 158/658] ASoC: dt-bindings: wcd9335: fix reset line polarity in example Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 159/658] ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 160/658] NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 161/658] NFSv4.2: Fix a memory stomp in decode_attr_security_label Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 162/658] NFSv4.2: Fix initialisation of struct nfs4_label Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 163/658] NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 164/658] ALSA: asihpi: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 165/658] wifi: iwlwifi: mvm: fix double free on tx path Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 166/658] ASoC: mediatek: mt8173: Enable IRQ when pdata is ready Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 167/658] drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 168/658] drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 169/658] ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 170/658] netfilter: conntrack: set icmpv6 redirects as RELATED Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 171/658] bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 172/658] bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 173/658] bonding: uninitialized variable in bond_miimon_inspect() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 174/658] spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 175/658] wifi: mac80211: fix memory leak in ieee80211_if_add() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 176/658] wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() fails Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 177/658] regulator: core: fix module refcount leak in set_supply() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 178/658] clk: qcom: clk-krait: fix wrong div2 functions Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 179/658] hsr: Avoid double remove of a node Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 180/658] configfs: fix possible memory leak in configfs_create_dir() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 181/658] regulator: core: fix resource leak in regulator_register() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 182/658] bpf, sockmap: fix race in sock_map_free() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 183/658] media: saa7164: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 184/658] ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 185/658] xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() Greg Kroah-Hartman
2023-01-19 6:09 ` Harshit Mogalapalli
2023-01-22 15:07 ` Greg Kroah-Hartman
2023-02-03 9:25 ` Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 186/658] SUNRPC: Fix missing release socket in rpc_sockname() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 187/658] NFSv4.x: Fail client initialisation if state manager thread cant run Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 188/658] mmc: alcor: fix return value check of mmc_add_host() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 189/658] mmc: moxart: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 190/658] mmc: mxcmmc: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 191/658] mmc: pxamci: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 192/658] mmc: rtsx_usb_sdmmc: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 193/658] mmc: toshsd: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 194/658] mmc: vub300: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 195/658] mmc: wmt-sdmmc: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 196/658] mmc: atmel-mci: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 197/658] mmc: omap_hsmmc: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 198/658] mmc: meson-gx: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 199/658] mmc: via-sdmmc: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 200/658] mmc: wbsd: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 201/658] mmc: mmci: " Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 202/658] media: c8sectpfe: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 203/658] media: coda: Add check for dcoda_iram_alloc Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 204/658] media: coda: Add check for kmalloc Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 205/658] clk: samsung: Fix memory leak in _samsung_clk_register_pll() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 206/658] spi: spi-gpio: Dont set MOSI as an input if not 3WIRE mode Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 207/658] wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 208/658] wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 209/658] blktrace: Fix output non-blktrace event when blk_classic option enabled Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 210/658] clk: socfpga: clk-pll: Remove unused variable rc Greg Kroah-Hartman
2023-01-16 15:44 ` [PATCH 5.4 211/658] clk: socfpga: use clk_hw_register for a5/c5 Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 212/658] clk: socfpga: Fix memory leak in socfpga_gate_init() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 213/658] net: vmw_vsock: vmci: Check memcpy_from_msg() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 214/658] net: defxx: Fix missing err handling in dfx_init() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 215/658] net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 216/658] drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 217/658] of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() and find_dup_cset_prop() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 218/658] ethernet: s2io: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 219/658] net: farsync: Fix kmemleak when rmmods farsync Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 220/658] net/tunnel: wait until all sk_user_data reader finish before releasing the sock Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 221/658] net: apple: mace: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 222/658] net: apple: bmac: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 223/658] net: emaclite: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 224/658] net: ethernet: dnet: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 225/658] hamradio: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 226/658] net: amd: lance: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 227/658] net: amd-xgbe: Fix logic around active and passive cables Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 228/658] net: amd-xgbe: Check only the minimum speed for active/passive cables Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 229/658] can: tcan4x5x: Remove invalid write in clear_interrupts Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 230/658] net: lan9303: Fix read error execution path Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 231/658] ntb_netdev: Use dev_kfree_skb_any() in interrupt context Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 232/658] Bluetooth: btusb: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 233/658] Bluetooth: hci_qca: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 234/658] Bluetooth: hci_ll: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 235/658] Bluetooth: hci_h5: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 236/658] Bluetooth: hci_bcsp: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 237/658] Bluetooth: hci_core: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 238/658] Bluetooth: RFCOMM: " Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 239/658] stmmac: fix potential division by 0 Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 240/658] apparmor: fix a memleak in multi_transaction_new() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 241/658] apparmor: fix lockdep warning when removing a namespace Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 242/658] apparmor: Fix abi check to include v8 abi Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 243/658] apparmor: Use pointer to struct aa_label for lbs_cred Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 244/658] RDMA/core: Fix order of nldev_exit call Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 245/658] f2fs: fix normal discard process Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 246/658] RDMA/siw: Fix immediate work request flush to completion queue Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 247/658] RDMA/nldev: Return "-EAGAIN" if the cm_id isnt from expected port Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 248/658] RDMA/siw: Set defined status for work completion with undefined status Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 249/658] scsi: scsi_debug: Fix a warning in resp_write_scat() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 250/658] crypto: ccree - swap SHA384 and SHA512 larval hashes at build time Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 251/658] crypto: ccree - Remove debugfs when platform_driver_register failed Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 252/658] PCI: Check for alloc failure in pci_request_irq() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 253/658] RDMA/hfi: Decrease PCI device reference count in error path Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 254/658] crypto: ccree - Make cc_debugfs_global_fini() available for module init function Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 255/658] RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create failed Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 256/658] scsi: hpsa: Fix possible memory leak in hpsa_init_one() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 257/658] crypto: tcrypt - Fix multibuffer skcipher speed test mem leak Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 258/658] scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 259/658] scsi: hpsa: Fix error handling in hpsa_add_sas_host() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 260/658] scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 261/658] scsi: fcoe: Fix possible name leak when device_register() fails Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 262/658] scsi: ipr: Fix WARNING in ipr_init() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 263/658] scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 264/658] scsi: snic: Fix possible UAF in snic_tgt_create() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 265/658] RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 266/658] f2fs: avoid victim selection from previous victim section Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 267/658] crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 268/658] RDMA/hfi1: Fix error return code in parse_platform_config() Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 269/658] orangefs: Fix sysfs not cleanup when dev init failed Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 270/658] crypto: img-hash - Fix variable dereferenced before check hdev->req Greg Kroah-Hartman
2023-01-16 15:45 ` [PATCH 5.4 271/658] hwrng: amd - Fix PCI device refcount leak Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 272/658] hwrng: geode " Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 273/658] IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 274/658] drivers: dio: fix possible memory leak in dio_init() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 275/658] tty: serial: tegra: Activate RX DMA transfer by request Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 276/658] serial: tegra: Read DMA status before terminating Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 277/658] class: fix possible memory leak in __class_register() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 278/658] vfio: platform: Do not pass return buffer to ACPI _RST method Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 279/658] uio: uio_dmem_genirq: Fix missing unlock in irq configuration Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 280/658] uio: uio_dmem_genirq: Fix deadlock between irq config and handling Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 281/658] usb: fotg210-udc: Fix ages old endianness issues Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 282/658] staging: vme_user: Fix possible UAF in tsi148_dma_list_add Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 283/658] usb: typec: Check for ops->exit instead of ops->enter in altmode_exit Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 284/658] usb: typec: tcpci: fix of node refcount leak in tcpci_register_port() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 285/658] serial: amba-pl011: avoid SBSA UART accessing DMACR register Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 286/658] serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 287/658] serial: pch: Fix PCI device refcount leak in pch_request_dma() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 288/658] tty: serial: clean up stop-tx part in altera_uart_tx_chars() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 289/658] tty: serial: altera_uart_{r,t}x_chars() need only uart_port Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 290/658] serial: altera_uart: fix locking in polling mode Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 291/658] serial: sunsab: Fix error handling in sunsab_init() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 292/658] test_firmware: fix memory leak in test_firmware_init() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 293/658] misc: ocxl: fix possible name leak in ocxl_file_register_afu() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 294/658] misc: tifm: fix possible memory leak in tifm_7xx1_switch_media() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 295/658] misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault and gru_handle_user_call_os Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 296/658] cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 297/658] cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 298/658] counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 299/658] usb: roles: fix of node refcount leak in usb_role_switch_is_parent() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 300/658] usb: gadget: f_hid: optional SETUP/SET_REPORT mode Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 301/658] usb: gadget: f_hid: fix f_hidg lifetime vs cdev Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 302/658] usb: gadget: f_hid: fix refcount leak on error path Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 303/658] drivers: mcb: fix resource leak in mcb_probe() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 304/658] mcb: mcb-parse: fix error handing in chameleon_parse_gdd() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 305/658] chardev: fix error handling in cdev_device_add() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 306/658] i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 307/658] staging: rtl8192u: Fix use after free in ieee80211_rx() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 308/658] staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 309/658] vme: Fix error not catched in fake_init() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 310/658] drivers: provide devm_platform_get_and_ioremap_resource() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 311/658] i2c: mux: reg: check return value after calling platform_get_resource() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 312/658] i2c: ismt: Fix an out-of-bounds bug in ismt_access() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 313/658] usb: storage: Add check for kcalloc Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 314/658] tracing/hist: Fix issue of losting command info in error_log Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 315/658] samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 316/658] fbdev: ssd1307fb: Drop optional dependency Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 317/658] fbdev: pm2fb: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 318/658] fbdev: via: Fix error in via_core_init() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 319/658] fbdev: vermilion: decrease reference count in error path Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 320/658] fbdev: uvesafb: Fixes an error handling path in uvesafb_probe() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 321/658] HSI: omap_ssi_core: fix unbalanced pm_runtime_disable() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 322/658] HSI: omap_ssi_core: fix possible memory leak in ssi_probe() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 323/658] power: supply: fix residue sysfs file in error handle route of __power_supply_register() Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 324/658] perf trace: Return error if a system call doesnt exist Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 325/658] perf trace: Separate struct syscall_fmt definition from syscall_fmts variable Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 326/658] perf trace: Factor out the initialization of syscal_arg_fmt->scnprintf Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 327/658] perf trace: Add the syscall_arg_fmt pointer to syscall_arg Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 328/658] perf trace: Allow associating scnprintf routines with well known arg names Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 329/658] perf trace: Add a strtoul() method to struct syscall_arg_fmt Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 330/658] perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number Greg Kroah-Hartman
2023-01-16 15:46 ` [PATCH 5.4 331/658] perf trace: Handle failure when trace point folder is missed Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 332/658] perf symbol: correction while adjusting symbol Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 333/658] HSI: omap_ssi_core: Fix error handling in ssi_init() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 334/658] power: supply: fix null pointer dereferencing in power_supply_get_battery_info Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 335/658] RDMA/siw: Fix pointer cast warning Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 336/658] include/uapi/linux/swab: Fix potentially missing __always_inline Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 337/658] rtc: cmos: Refactor code by using the new dmi_get_bios_year() helper Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 338/658] rtc: rtc-cmos: Do not check ACPI_FADT_LOW_POWER_S0 Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 339/658] rtc: cmos: Fix event handler registration ordering issue Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 340/658] rtc: cmos: Fix wake alarm breakage Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 341/658] rtc: cmos: fix build on non-ACPI platforms Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 342/658] rtc: cmos: Call cmos_wake_setup() from cmos_do_probe() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 343/658] rtc: cmos: Call rtc_wake_setup() " Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 344/658] rtc: cmos: Eliminate forward declarations of some functions Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 345/658] rtc: cmos: Rename ACPI-related functions Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 346/658] rtc: cmos: Disable ACPI RTC event on removal Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 347/658] rtc: snvs: Allow a time difference on clock register read Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 348/658] rtc: pcf85063: Fix reading alarm Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 349/658] iommu/amd: Fix pci device refcount leak in ppr_notifier() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 350/658] iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 351/658] macintosh: fix possible memory leak in macio_add_one_device() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 352/658] macintosh/macio-adb: check the return value of ioremap() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 353/658] powerpc/52xx: Fix a resource leak in an error handling path Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 354/658] cxl: Fix refcount leak in cxl_calc_capp_routing Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 355/658] powerpc/xive: add missing iounmap() in error path in xive_spapr_populate_irq_data() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 356/658] powerpc/perf: callchain validate kernel stack pointer bounds Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 357/658] powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in of_fsl_spi_probe() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 358/658] powerpc/hv-gpci: Fix hv_gpci event list Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 359/658] selftests/powerpc: Fix resource leaks Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 360/658] pwm: sifive: Call pwm_sifive_update_clock() while mutex is held Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 361/658] remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 362/658] remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in adsp_alloc_memory_region() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 363/658] powerpc/eeh: Fix pseries_eeh_configure_bridge() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 364/658] powerpc/pseries: PCIE PHB reset Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 365/658] powerpc/pseries: Stop using eeh_ops->init() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 366/658] powerpc/eeh: Drop redundant spinlock initialization Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 367/658] powerpc/pseries/eeh: use correct API for error log size Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 368/658] rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 369/658] rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 370/658] nfsd: Define the file access mode enum for tracing Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 371/658] NFSD: Add tracepoints to NFSDs duplicate reply cache Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 372/658] nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 373/658] mISDN: hfcsusb: dont call dev_kfree_skb/kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 374/658] mISDN: hfcpci: " Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 375/658] mISDN: hfcmulti: " Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 376/658] nfc: pn533: Clear nfc_target before being used Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 377/658] r6040: Fix kmemleak in probe and remove Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 378/658] rtc: mxc_v2: Add missing clk_disable_unprepare() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 379/658] openvswitch: Fix flow lookup to use unmasked key Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 380/658] skbuff: Account for tail adjustment during pull operations Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 381/658] mailbox: zynq-ipi: fix error handling while device_register() fails Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 382/658] net_sched: reject TCF_EM_SIMPLE case for complex ematch module Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 383/658] rxrpc: Fix missing unlock in rxrpc_do_sendmsg() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 384/658] myri10ge: Fix an error handling path in myri10ge_probe() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 385/658] net: stream: purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 386/658] rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 387/658] binfmt_misc: fix shift-out-of-bounds in check_special_flags Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 388/658] fs: jfs: fix shift-out-of-bounds in dbAllocAG Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 389/658] udf: Avoid double brelse() in udf_rename() Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 390/658] fs: jfs: fix shift-out-of-bounds in dbDiscardAG Greg Kroah-Hartman
2023-01-16 15:47 ` [PATCH 5.4 391/658] ACPICA: Fix error code path in acpi_ds_call_control_method() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 392/658] nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 393/658] acct: fix potential integer overflow in encode_comp_t() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 394/658] hfs: fix OOB Read in __hfs_brec_find Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 395/658] drm/etnaviv: add missing quirks for GC300 Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 396/658] brcmfmac: return error when getting invalid max_flowrings from dongle Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 397/658] wifi: ath9k: verify the expected usb_endpoints are present Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 398/658] wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 399/658] ASoC: codecs: rt298: Add quirk for KBL-R RVP platform Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 400/658] ipmi: fix memleak when unload ipmi driver Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 401/658] bpf: make sure skb->len != 0 when redirecting to a tunneling device Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 402/658] net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 403/658] hamradio: baycom_epp: Fix return type of baycom_send_packet() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 404/658] wifi: brcmfmac: Fix potential shift-out-of-bounds in brcmf_fw_alloc_request() Greg Kroah-Hartman
2023-01-16 15:48 ` [Intel-wired-lan] [PATCH 5.4 405/658] igb: Do not free q_vector unless new one was allocated Greg Kroah-Hartman
2023-01-16 15:48 ` Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 406/658] s390/ctcm: Fix return type of ctc{mp,}m_tx() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 407/658] s390/netiucv: Fix return type of netiucv_tx() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 408/658] s390/lcs: Fix return type of lcs_start_xmit() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 409/658] drm/rockchip: Use drm_mode_copy() Greg Kroah-Hartman
2023-01-16 15:48 ` Greg Kroah-Hartman
2023-01-16 15:48 ` Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 410/658] drm/sti: " Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 411/658] drivers/md/md-bitmap: check the return value of md_bitmap_get_counter() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 412/658] md/raid1: stop mdx_raid1 thread when raid1 array run failed Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 413/658] net: add atomic_long_t to net_device_stats fields Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 414/658] mrp: introduce active flags to prevent UAF when applicant uninit Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 415/658] ppp: associate skb with a device at tx Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 416/658] bpf: Prevent decl_tag from being referenced in func_proto arg Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 417/658] media: dvb-frontends: fix leak of memory fw Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 418/658] media: dvbdev: adopts refcnt to avoid UAF Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 419/658] media: dvb-usb: fix memory leak in dvb_usb_adapter_init() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 420/658] blk-mq: fix possible memleak when register hctx failed Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 421/658] regulator: core: fix use_count leakage when handling boot-on Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 422/658] mmc: f-sdh30: Add quirks for broken timeout clock capability Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 423/658] media: si470x: Fix use-after-free in si470x_int_in_callback() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 424/658] clk: st: Fix memory leak in st_of_quadfs_setup() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 425/658] hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 426/658] drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 427/658] drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 428/658] orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 429/658] orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 430/658] ALSA/ASoC: hda: move/rename snd_hdac_ext_stop_streams to hdac_stream.c Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 431/658] ALSA: hda: add snd_hdac_stop_streams() helper Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 432/658] ASoC: Intel: Skylake: Fix driver hang during shutdown Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 433/658] ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in mt8173_rt5650_rt5514_dev_probe() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 434/658] ASoC: audio-graph-card: fix refcount leak of cpu_ep in __graph_for_each_link() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 435/658] ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in rockchip_pdm_runtime_resume() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 436/658] ASoC: wm8994: Fix potential deadlock Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 437/658] ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in rk_spdif_runtime_resume() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 438/658] ASoC: rt5670: Remove unbalanced pm_runtime_put() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 439/658] pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 440/658] perf debug: Set debug_peo_args and redirect_to_stderr variable to correct values in perf_quiet_option() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 441/658] pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 442/658] ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 443/658] ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 444/658] usb: dwc3: core: defer probe on ulpi_read_id timeout Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 445/658] HID: wacom: Ensure bootloader PID is usable in hidraw mode Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 446/658] reiserfs: Add missing calls to reiserfs_security_free() Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 447/658] iio: adc: ad_sigma_delta: do not use internal iio_dev lock Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 448/658] iio: adc128s052: add proper .data members in adc128_of_match table Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 449/658] regulator: core: fix deadlock on regulator enable Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 450/658] gcov: add support for checksum field Greg Kroah-Hartman
2023-01-16 15:48 ` [PATCH 5.4 451/658] media: dvbdev: fix build warning due to comments Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 452/658] media: dvbdev: fix refcnt bug Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 453/658] cifs: fix oops during encryption Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 454/658] nvme-pci: fix doorbell buffer value endianness Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 455/658] nvme-pci: add a blank line after declarations Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 456/658] nvme-pci: use the consistent return type of nvme_pci_iod_alloc_size() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 457/658] ata: ahci: Fix PCS quirk application for suspend Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 458/658] nvme: resync include/linux/nvme.h with nvmecli Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 459/658] nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 460/658] objtool: Fix SEGFAULT Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 461/658] powerpc/rtas: avoid device tree lookups in rtas_os_term() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 462/658] powerpc/rtas: avoid scheduling " Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 463/658] HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 464/658] HID: plantronics: Additional PIDs for double volume key presses quirk Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 465/658] hfsplus: fix bug causing custom uid and gid being unable to be assigned with mount Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 466/658] ovl: Use ovl mounters fsuid and fsgid in ovl_link() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 467/658] ALSA: line6: correct midi status byte when receiving data from podxt Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 468/658] ALSA: line6: fix stack overflow in line6_midi_transmit Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 469/658] pnode: terminate at peers of source Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 470/658] md: fix a crash in mempool_free Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 471/658] mm, compaction: fix fast_isolate_around() to stay within boundaries Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 472/658] f2fs: should put a page when checking the summary info Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 473/658] mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 474/658] tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 475/658] tpm: tpm_tis: " Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 476/658] SUNRPC: Dont leak netobj memory when gss_read_proxy_verf() fails Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 477/658] net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSO Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 478/658] net/af_packet: make sure to pull mac header Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 479/658] media: stv0288: use explicitly signed char Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 480/658] soc: qcom: Select REMAP_MMIO for LLCC driver Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 481/658] kest.pl: Fix grub2 menu handling for rebooting Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 482/658] ktest.pl minconfig: Unset configs instead of just removing them Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 483/658] mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 484/658] btrfs: fix resolving backrefs for inline extent followed by prealloc Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 485/658] ARM: ux500: do not directly dereference __iomem Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 486/658] arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 487/658] selftests: Use optional USERCFLAGS and USERLDFLAGS Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 488/658] cpufreq: Init completion before kobject_init_and_add() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 489/658] binfmt: Move install_exec_creds after setup_new_exec to match binfmt_elf Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 490/658] binfmt: Fix error return code in load_elf_fdpic_binary() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 491/658] dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 492/658] dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 493/658] dm thin: Use last transactions pmd->root when commit failed Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 494/658] dm thin: Fix UAF in run_timer_softirq() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 495/658] dm integrity: Fix UAF in dm_integrity_dtr() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 496/658] dm clone: Fix UAF in clone_dtr() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 497/658] dm cache: Fix UAF in destroy() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 498/658] dm cache: set needs_check flag after aborting metadata Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 499/658] tracing/hist: Fix out-of-bound write on action_data.var_ref_idx Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 500/658] x86/microcode/intel: Do not retry microcode reloading on the APs Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 501/658] tracing/hist: Fix wrong return value in parse_action_params() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 502/658] tracing: Fix infinite loop in tracing_read_pipe on overflowed print_trace_line Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 503/658] ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 504/658] media: dvb-core: Fix double free in dvb_register_device() Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 505/658] media: dvb-core: Fix UAF due to refcount races at releasing Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 506/658] cifs: fix confusing debug message Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 507/658] cifs: fix missing display of three mount options Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 508/658] md/bitmap: Fix bitmap chunk size overflow issues Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 509/658] efi: Add iMac Pro 2017 to uefi skip cert quirk Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 510/658] ipmi: fix long wait in unload when IPMI disconnect Greg Kroah-Hartman
2023-01-16 15:49 ` [PATCH 5.4 511/658] mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 512/658] ima: Fix a potential NULL pointer access in ima_restore_measurement_list Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 513/658] ipmi: fix use after free in _ipmi_destroy_user() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 514/658] PCI: Fix pci_device_is_present() for VFs by checking PF Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 515/658] PCI/sysfs: Fix double free in error path Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 516/658] crypto: n2 - add missing hash statesize Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 517/658] iommu/amd: Fix ivrs_acpihid cmdline parsing code Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 518/658] parisc: led: Fix potential null-ptr-deref in start_task() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 519/658] device_cgroup: Roll back to original exceptions after copy failure Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 520/658] drm/connector: send hotplug uevent on connector cleanup Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 521/658] drm/vmwgfx: Validate the box size for the snooped cursor Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 522/658] ext4: add inode table check in __ext4_get_inode_loc to aovid possible infinite loop Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 523/658] ext4: fix undefined behavior in bit shift for ext4_check_flag_values Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 524/658] ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 525/658] ext4: add helper to check quota inums Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 526/658] ext4: fix reserved cluster accounting in __es_remove_extent() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 527/658] ext4: fix bug_on in __es_tree_search caused by bad boot loader inode Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 528/658] ext4: init quota for old.inode in ext4_rename Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 529/658] ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 530/658] ext4: fix corruption when online resizing a 1K bigalloc fs Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 531/658] ext4: fix error code return to user-space in ext4_get_branch() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 532/658] ext4: avoid BUG_ON when creating xattrs Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 533/658] ext4: fix inode leak in ext4_xattr_inode_create() on an error path Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 534/658] ext4: initialize quota before expanding inode in setproject ioctl Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 535/658] ext4: avoid unaccounted block allocation when expanding inode Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 536/658] ext4: allocate extended attribute value in vmalloc area Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 537/658] drm/amdgpu: make display pinning more flexible (v2) Greg Kroah-Hartman
2023-01-16 16:35 ` Deucher, Alexander
2023-01-17 8:38 ` Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 538/658] btrfs: replace strncpy() with strscpy() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 539/658] PM/devfreq: governor: Add a private governor_data for governor Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 540/658] media: s5p-mfc: Fix to handle reference queue during finishing Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 541/658] media: s5p-mfc: Clear workbit to handle error condition Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 542/658] media: s5p-mfc: Fix in register read and write for H264 Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 543/658] dm thin: resume even if in FAIL mode Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 544/658] perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 545/658] perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged data Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 546/658] KVM: x86: optimize more exit handlers in vmx.c Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 547/658] KVM: retpolines: x86: eliminate retpoline from vmx.c exit handlers Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 548/658] KVM: VMX: Rename INTERRUPT_PENDING to INTERRUPT_WINDOW Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 549/658] KVM: VMX: Rename NMI_PENDING to NMI_WINDOW Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 550/658] KVM: VMX: Fix the spelling of CPU_BASED_USE_TSC_OFFSETTING Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 551/658] KVM: nVMX: Properly expose ENABLE_USR_WAIT_PAUSE control to L1 Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 552/658] ravb: Fix "failed to switch device to config mode" message during unbind Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 553/658] riscv/stacktrace: Fix stack output without ra on the stack top Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 554/658] riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 555/658] ext4: goto right label failed_mount3a Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 556/658] ext4: correct inconsistent error msg in nojournal mode Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 557/658] mm/highmem: Lift memcpy_[to|from]_page to core Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 558/658] ext4: use memcpy_to_page() in pagecache_write() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 559/658] fs: ext4: initialize fsdata " Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 560/658] ext4: use kmemdup() to replace kmalloc + memcpy Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 561/658] mbcache: dont reclaim used entries Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 562/658] mbcache: add functions to delete entry if unused Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 563/658] ext4: remove EA inode entry from mbcache on inode eviction Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 564/658] ext4: unindent codeblock in ext4_xattr_block_set() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 565/658] ext4: fix race when reusing xattr blocks Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 566/658] mbcache: automatically delete entries from cache on freeing Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 567/658] ext4: fix deadlock due to mbcache entry corruption Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 568/658] SUNRPC: ensure the matching upcall is in-flight upon downcall Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 569/658] bpf: pull before calling skb_postpull_rcsum() Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 570/658] nfsd: shut down the NFSv4 state objects before the filecache Greg Kroah-Hartman
2023-01-16 15:50 ` [PATCH 5.4 571/658] net: hns3: add interrupts re-initialization while doing VF FLR Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 572/658] net: sched: fix memory leak in tcindex_set_parms Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 573/658] qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 574/658] nfc: Fix potential resource leaks Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 575/658] vhost: fix range used in translate_desc() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 576/658] net: amd-xgbe: add missed tasklet_kill Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 577/658] net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 578/658] RDMA/uverbs: Silence shiftTooManyBitsSigned warning Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 579/658] RDMA/mlx5: Fix validation of max_rd_atomic caps for DC Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 580/658] net: sched: atm: dont intepret cls results when asked to drop Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 581/658] net: sched: cbq: " Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 582/658] perf tools: Fix resources leak in perf_data__open_dir() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 583/658] drivers/net/bonding/bond_3ad: return when theres no aggregator Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 584/658] usb: rndis_host: Secure rndis_query check against int overflow Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 585/658] drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 586/658] caif: fix memory leak in cfctrl_linkup_request() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 587/658] udf: Fix extension of the last extent in the file Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 588/658] ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 589/658] x86/bugs: Flush IBP in ib_prctl_set() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 590/658] nfsd: fix handling of readdir in v4root vs. mount upcall timeout Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 591/658] riscv: uaccess: fix type of 0 variable on error in get_user() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 592/658] ext4: dont allow journal inode to have encrypt flag Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 593/658] hfs/hfsplus: use WARN_ON for sanity check Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 594/658] hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 595/658] mbcache: Avoid nesting of cache->c_list_lock under bit locks Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 596/658] parisc: Align parisc MADV_XXX constants with all other architectures Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 597/658] selftests: Fix kselftest O=objdir build from cluttering top level objdir Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 598/658] selftests: set the BUILD variable to absolute path Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 599/658] driver core: Fix bus_type.match() error handling in __driver_attach() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 600/658] net: sched: disallow noqueue for qdisc classes Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 601/658] KVM: arm64: Fix S1PTW handling on RO memslots Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 602/658] efi: tpm: Avoid READ_ONCE() for accessing the event log Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 603/658] docs: Fix the docs build with Sphinx 6.0 Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 604/658] perf auxtrace: Fix address filter duplicate symbol selection Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 605/658] s390/kexec: fix ipl report address for kdump Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 606/658] s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 607/658] net/ulp: prevent ULP without clone op from entering the LISTEN status Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 608/658] ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 609/658] ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 610/658] cifs: Fix uninitialized memory read for smb311 posix symlink create Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 611/658] drm/msm/adreno: Make adreno quirks not overwrite each other Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 612/658] platform/x86: sony-laptop: Dont turn off 0x153 keyboard backlight during probe Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 613/658] ixgbe: fix pci device refcount leak Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 614/658] ipv6: raw: Deduct extension header length in rawv6_push_pending_frames Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 615/658] wifi: wilc1000: sdio: fix module autoloading Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 616/658] usb: ulpi: defer ulpi_register on ulpi_read_id timeout Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 617/658] ext4: Provide function to handle transaction restarts Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 618/658] ext4, jbd2: Provide accessor function for handle credits Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 619/658] ocfs2: Use accessor function for h_buffer_credits Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 620/658] jbd2: Reorganize jbd2_journal_stop() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 621/658] jbd2: Drop pointless wakeup from jbd2_journal_stop() Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 622/658] jbd2: Factor out common parts of stopping and restarting a handle Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 623/658] jbd2: use the correct print format Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 624/658] quota: Factor out setup of quota inode Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 625/658] ext4: fix bug_on in __es_tree_search caused by bad " Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 626/658] ext4: lost matching-pair of trace in ext4_truncate Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 627/658] ext4: fix use-after-free in ext4_orphan_cleanup Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 628/658] ext4: fix uninititialized value in ext4_evict_inode Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 629/658] netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() function Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 630/658] powerpc/imc-pmu: Fix use of mutex in IRQs disabled section Greg Kroah-Hartman
2023-01-16 15:51 ` [PATCH 5.4 631/658] x86/boot: Avoid using Intel mnemonics in AT&T syntax asm Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 632/658] EDAC/device: Fix period calculation in edac_device_reset_delay_period() Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 633/658] regulator: da9211: Use irq handler when ready Greg Kroah-Hartman
2023-01-16 15:52 ` Greg Kroah-Hartman [this message]
2023-01-16 15:52 ` [PATCH 5.4 635/658] tipc: eliminate checking netns if node established Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 636/658] tipc: fix unexpected link reset due to discovery messages Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 637/658] hvc/xen: lock console list traversal Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 638/658] nfc: pn533: Wait for out_urbs completion in pn533_usb_send_frame() Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 639/658] net/sched: act_mpls: Fix warning during failed attribute validation Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 640/658] net/mlx5: Rename ptp clock info Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 641/658] net/mlx5: Fix ptp max frequency adjustment range Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 642/658] iommu/mediatek-v1: Add error handle for mtk_iommu_probe Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 643/658] iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe() Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 644/658] x86/resctrl: Use task_curr() instead of task_struct->on_cpu to prevent unnecessary IPI Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 645/658] x86/resctrl: Fix task CLOSID/RMID update race Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 646/658] drm/virtio: Fix GEM handle creation UAF Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 647/658] arm64: atomics: format whitespace consistently Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 648/658] arm64: atomics: remove LL/SC trampolines Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 649/658] arm64: cmpxchg_double*: hazard against entire exchange variable Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 650/658] efi: fix NULL-deref in init error path Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 651/658] mm: Always release pages to the buddy allocator in memblock_free_late() Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 652/658] Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 653/658] tipc: fix use-after-free in tipc_disc_rcv() Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 654/658] tty: serial: tegra: Handle RX transfer in PIO mode if DMA wasnt started Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 655/658] tipc: Add a missing case of TIPC_DIRECT_MSG type Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 656/658] pseries/eeh: Fix the kdump kernel crash during eeh_pseries_init Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 657/658] ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown Greg Kroah-Hartman
2023-01-16 15:52 ` [PATCH 5.4 658/658] tipc: call tipc_lxc_xmit without holding node_read_lock Greg Kroah-Hartman
2023-01-16 20:20 ` [PATCH 5.4 000/658] 5.4.229-rc1 review Guenter Roeck
2023-01-17 9:29 ` Naresh Kamboju
2023-01-17 9:44 ` Greg Kroah-Hartman
2023-01-17 10:16 ` Greg Kroah-Hartman
2023-01-17 0:00 ` Shuah Khan
2023-01-17 12:29 ` Sudip Mukherjee
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=20230116154938.494903817@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=davem@davemloft.net \
--cc=hoang.h.le@dektech.com.au \
--cc=jon.maloy@ericsson.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is 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.