From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Jamal Hadi Salim <jhs@mojatatu.com>,
Jiri Pirko <jiri@nvidia.com>, Paolo Abeni <pabeni@redhat.com>,
Kyle Zeng <zengyhkyle@gmail.com>
Subject: [PATCH 5.4 367/367] net/sched: Retire rsvp classifier
Date: Wed, 20 Sep 2023 13:32:24 +0200 [thread overview]
Message-ID: <20230920112907.975134022@linuxfoundation.org> (raw)
In-Reply-To: <20230920112858.471730572@linuxfoundation.org>
5.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jamal Hadi Salim <jhs@mojatatu.com>
commit 265b4da82dbf5df04bee5a5d46b7474b1aaf326a upstream.
The rsvp classifier has served us well for about a quarter of a century but has
has not been getting much maintenance attention due to lack of known users.
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Jiri Pirko <jiri@nvidia.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Kyle Zeng <zengyhkyle@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
net/sched/Kconfig | 28 -
net/sched/Makefile | 2
net/sched/cls_rsvp.c | 24 -
net/sched/cls_rsvp.h | 777 --------------------------------------------------
net/sched/cls_rsvp6.c | 24 -
5 files changed, 855 deletions(-)
--- a/net/sched/Kconfig
+++ b/net/sched/Kconfig
@@ -514,34 +514,6 @@ config CLS_U32_MARK
---help---
Say Y here to be able to use netfilter marks as u32 key.
-config NET_CLS_RSVP
- tristate "IPv4 Resource Reservation Protocol (RSVP)"
- select NET_CLS
- ---help---
- The Resource Reservation Protocol (RSVP) permits end systems to
- request a minimum and maximum data flow rate for a connection; this
- is important for real time data such as streaming sound or video.
-
- Say Y here if you want to be able to classify outgoing packets based
- on their RSVP requests.
-
- To compile this code as a module, choose M here: the
- module will be called cls_rsvp.
-
-config NET_CLS_RSVP6
- tristate "IPv6 Resource Reservation Protocol (RSVP6)"
- select NET_CLS
- ---help---
- The Resource Reservation Protocol (RSVP) permits end systems to
- request a minimum and maximum data flow rate for a connection; this
- is important for real time data such as streaming sound or video.
-
- Say Y here if you want to be able to classify outgoing packets based
- on their RSVP requests and you are using the IPv6 protocol.
-
- To compile this code as a module, choose M here: the
- module will be called cls_rsvp6.
-
config NET_CLS_FLOW
tristate "Flow classifier"
select NET_CLS
--- a/net/sched/Makefile
+++ b/net/sched/Makefile
@@ -65,8 +65,6 @@ obj-$(CONFIG_NET_SCH_TAPRIO) += sch_tapr
obj-$(CONFIG_NET_CLS_U32) += cls_u32.o
obj-$(CONFIG_NET_CLS_ROUTE4) += cls_route.o
obj-$(CONFIG_NET_CLS_FW) += cls_fw.o
-obj-$(CONFIG_NET_CLS_RSVP) += cls_rsvp.o
-obj-$(CONFIG_NET_CLS_RSVP6) += cls_rsvp6.o
obj-$(CONFIG_NET_CLS_BASIC) += cls_basic.o
obj-$(CONFIG_NET_CLS_FLOW) += cls_flow.o
obj-$(CONFIG_NET_CLS_CGROUP) += cls_cgroup.o
--- a/net/sched/cls_rsvp.c
+++ /dev/null
@@ -1,24 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-/*
- * net/sched/cls_rsvp.c Special RSVP packet classifier for IPv4.
- *
- * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
- */
-
-#include <linux/module.h>
-#include <linux/types.h>
-#include <linux/kernel.h>
-#include <linux/string.h>
-#include <linux/errno.h>
-#include <linux/skbuff.h>
-#include <net/ip.h>
-#include <net/netlink.h>
-#include <net/act_api.h>
-#include <net/pkt_cls.h>
-
-#define RSVP_DST_LEN 1
-#define RSVP_ID "rsvp"
-#define RSVP_OPS cls_rsvp_ops
-
-#include "cls_rsvp.h"
-MODULE_LICENSE("GPL");
--- a/net/sched/cls_rsvp.h
+++ /dev/null
@@ -1,777 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-/*
- * net/sched/cls_rsvp.h Template file for RSVPv[46] classifiers.
- *
- * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
- */
-
-/*
- Comparing to general packet classification problem,
- RSVP needs only sevaral relatively simple rules:
-
- * (dst, protocol) are always specified,
- so that we are able to hash them.
- * src may be exact, or may be wildcard, so that
- we can keep a hash table plus one wildcard entry.
- * source port (or flow label) is important only if src is given.
-
- IMPLEMENTATION.
-
- We use a two level hash table: The top level is keyed by
- destination address and protocol ID, every bucket contains a list
- of "rsvp sessions", identified by destination address, protocol and
- DPI(="Destination Port ID"): triple (key, mask, offset).
-
- Every bucket has a smaller hash table keyed by source address
- (cf. RSVP flowspec) and one wildcard entry for wildcard reservations.
- Every bucket is again a list of "RSVP flows", selected by
- source address and SPI(="Source Port ID" here rather than
- "security parameter index"): triple (key, mask, offset).
-
-
- NOTE 1. All the packets with IPv6 extension headers (but AH and ESP)
- and all fragmented packets go to the best-effort traffic class.
-
-
- NOTE 2. Two "port id"'s seems to be redundant, rfc2207 requires
- only one "Generalized Port Identifier". So that for classic
- ah, esp (and udp,tcp) both *pi should coincide or one of them
- should be wildcard.
-
- At first sight, this redundancy is just a waste of CPU
- resources. But DPI and SPI add the possibility to assign different
- priorities to GPIs. Look also at note 4 about tunnels below.
-
-
- NOTE 3. One complication is the case of tunneled packets.
- We implement it as following: if the first lookup
- matches a special session with "tunnelhdr" value not zero,
- flowid doesn't contain the true flow ID, but the tunnel ID (1...255).
- In this case, we pull tunnelhdr bytes and restart lookup
- with tunnel ID added to the list of keys. Simple and stupid 8)8)
- It's enough for PIMREG and IPIP.
-
-
- NOTE 4. Two GPIs make it possible to parse even GRE packets.
- F.e. DPI can select ETH_P_IP (and necessary flags to make
- tunnelhdr correct) in GRE protocol field and SPI matches
- GRE key. Is it not nice? 8)8)
-
-
- Well, as result, despite its simplicity, we get a pretty
- powerful classification engine. */
-
-
-struct rsvp_head {
- u32 tmap[256/32];
- u32 hgenerator;
- u8 tgenerator;
- struct rsvp_session __rcu *ht[256];
- struct rcu_head rcu;
-};
-
-struct rsvp_session {
- struct rsvp_session __rcu *next;
- __be32 dst[RSVP_DST_LEN];
- struct tc_rsvp_gpi dpi;
- u8 protocol;
- u8 tunnelid;
- /* 16 (src,sport) hash slots, and one wildcard source slot */
- struct rsvp_filter __rcu *ht[16 + 1];
- struct rcu_head rcu;
-};
-
-
-struct rsvp_filter {
- struct rsvp_filter __rcu *next;
- __be32 src[RSVP_DST_LEN];
- struct tc_rsvp_gpi spi;
- u8 tunnelhdr;
-
- struct tcf_result res;
- struct tcf_exts exts;
-
- u32 handle;
- struct rsvp_session *sess;
- struct rcu_work rwork;
-};
-
-static inline unsigned int hash_dst(__be32 *dst, u8 protocol, u8 tunnelid)
-{
- unsigned int h = (__force __u32)dst[RSVP_DST_LEN - 1];
-
- h ^= h>>16;
- h ^= h>>8;
- return (h ^ protocol ^ tunnelid) & 0xFF;
-}
-
-static inline unsigned int hash_src(__be32 *src)
-{
- unsigned int h = (__force __u32)src[RSVP_DST_LEN-1];
-
- h ^= h>>16;
- h ^= h>>8;
- h ^= h>>4;
- return h & 0xF;
-}
-
-#define RSVP_APPLY_RESULT() \
-{ \
- int r = tcf_exts_exec(skb, &f->exts, res); \
- if (r < 0) \
- continue; \
- else if (r > 0) \
- return r; \
-}
-
-static int rsvp_classify(struct sk_buff *skb, const struct tcf_proto *tp,
- struct tcf_result *res)
-{
- struct rsvp_head *head = rcu_dereference_bh(tp->root);
- struct rsvp_session *s;
- struct rsvp_filter *f;
- unsigned int h1, h2;
- __be32 *dst, *src;
- u8 protocol;
- u8 tunnelid = 0;
- u8 *xprt;
-#if RSVP_DST_LEN == 4
- struct ipv6hdr *nhptr;
-
- if (!pskb_network_may_pull(skb, sizeof(*nhptr)))
- return -1;
- nhptr = ipv6_hdr(skb);
-#else
- struct iphdr *nhptr;
-
- if (!pskb_network_may_pull(skb, sizeof(*nhptr)))
- return -1;
- nhptr = ip_hdr(skb);
-#endif
-restart:
-
-#if RSVP_DST_LEN == 4
- src = &nhptr->saddr.s6_addr32[0];
- dst = &nhptr->daddr.s6_addr32[0];
- protocol = nhptr->nexthdr;
- xprt = ((u8 *)nhptr) + sizeof(struct ipv6hdr);
-#else
- src = &nhptr->saddr;
- dst = &nhptr->daddr;
- protocol = nhptr->protocol;
- xprt = ((u8 *)nhptr) + (nhptr->ihl<<2);
- if (ip_is_fragment(nhptr))
- return -1;
-#endif
-
- h1 = hash_dst(dst, protocol, tunnelid);
- h2 = hash_src(src);
-
- for (s = rcu_dereference_bh(head->ht[h1]); s;
- s = rcu_dereference_bh(s->next)) {
- if (dst[RSVP_DST_LEN-1] == s->dst[RSVP_DST_LEN - 1] &&
- protocol == s->protocol &&
- !(s->dpi.mask &
- (*(u32 *)(xprt + s->dpi.offset) ^ s->dpi.key)) &&
-#if RSVP_DST_LEN == 4
- dst[0] == s->dst[0] &&
- dst[1] == s->dst[1] &&
- dst[2] == s->dst[2] &&
-#endif
- tunnelid == s->tunnelid) {
-
- for (f = rcu_dereference_bh(s->ht[h2]); f;
- f = rcu_dereference_bh(f->next)) {
- if (src[RSVP_DST_LEN-1] == f->src[RSVP_DST_LEN - 1] &&
- !(f->spi.mask & (*(u32 *)(xprt + f->spi.offset) ^ f->spi.key))
-#if RSVP_DST_LEN == 4
- &&
- src[0] == f->src[0] &&
- src[1] == f->src[1] &&
- src[2] == f->src[2]
-#endif
- ) {
- *res = f->res;
- RSVP_APPLY_RESULT();
-
-matched:
- if (f->tunnelhdr == 0)
- return 0;
-
- tunnelid = f->res.classid;
- nhptr = (void *)(xprt + f->tunnelhdr - sizeof(*nhptr));
- goto restart;
- }
- }
-
- /* And wildcard bucket... */
- for (f = rcu_dereference_bh(s->ht[16]); f;
- f = rcu_dereference_bh(f->next)) {
- *res = f->res;
- RSVP_APPLY_RESULT();
- goto matched;
- }
- return -1;
- }
- }
- return -1;
-}
-
-static void rsvp_replace(struct tcf_proto *tp, struct rsvp_filter *n, u32 h)
-{
- struct rsvp_head *head = rtnl_dereference(tp->root);
- struct rsvp_session *s;
- struct rsvp_filter __rcu **ins;
- struct rsvp_filter *pins;
- unsigned int h1 = h & 0xFF;
- unsigned int h2 = (h >> 8) & 0xFF;
-
- for (s = rtnl_dereference(head->ht[h1]); s;
- s = rtnl_dereference(s->next)) {
- for (ins = &s->ht[h2], pins = rtnl_dereference(*ins); ;
- ins = &pins->next, pins = rtnl_dereference(*ins)) {
- if (pins->handle == h) {
- RCU_INIT_POINTER(n->next, pins->next);
- rcu_assign_pointer(*ins, n);
- return;
- }
- }
- }
-
- /* Something went wrong if we are trying to replace a non-existant
- * node. Mind as well halt instead of silently failing.
- */
- BUG_ON(1);
-}
-
-static void *rsvp_get(struct tcf_proto *tp, u32 handle)
-{
- struct rsvp_head *head = rtnl_dereference(tp->root);
- struct rsvp_session *s;
- struct rsvp_filter *f;
- unsigned int h1 = handle & 0xFF;
- unsigned int h2 = (handle >> 8) & 0xFF;
-
- if (h2 > 16)
- return NULL;
-
- for (s = rtnl_dereference(head->ht[h1]); s;
- s = rtnl_dereference(s->next)) {
- for (f = rtnl_dereference(s->ht[h2]); f;
- f = rtnl_dereference(f->next)) {
- if (f->handle == handle)
- return f;
- }
- }
- return NULL;
-}
-
-static int rsvp_init(struct tcf_proto *tp)
-{
- struct rsvp_head *data;
-
- data = kzalloc(sizeof(struct rsvp_head), GFP_KERNEL);
- if (data) {
- rcu_assign_pointer(tp->root, data);
- return 0;
- }
- return -ENOBUFS;
-}
-
-static void __rsvp_delete_filter(struct rsvp_filter *f)
-{
- tcf_exts_destroy(&f->exts);
- tcf_exts_put_net(&f->exts);
- kfree(f);
-}
-
-static void rsvp_delete_filter_work(struct work_struct *work)
-{
- struct rsvp_filter *f = container_of(to_rcu_work(work),
- struct rsvp_filter,
- rwork);
- rtnl_lock();
- __rsvp_delete_filter(f);
- rtnl_unlock();
-}
-
-static void rsvp_delete_filter(struct tcf_proto *tp, struct rsvp_filter *f)
-{
- tcf_unbind_filter(tp, &f->res);
- /* all classifiers are required to call tcf_exts_destroy() after rcu
- * grace period, since converted-to-rcu actions are relying on that
- * in cleanup() callback
- */
- if (tcf_exts_get_net(&f->exts))
- tcf_queue_work(&f->rwork, rsvp_delete_filter_work);
- else
- __rsvp_delete_filter(f);
-}
-
-static void rsvp_destroy(struct tcf_proto *tp, bool rtnl_held,
- struct netlink_ext_ack *extack)
-{
- struct rsvp_head *data = rtnl_dereference(tp->root);
- int h1, h2;
-
- if (data == NULL)
- return;
-
- for (h1 = 0; h1 < 256; h1++) {
- struct rsvp_session *s;
-
- while ((s = rtnl_dereference(data->ht[h1])) != NULL) {
- RCU_INIT_POINTER(data->ht[h1], s->next);
-
- for (h2 = 0; h2 <= 16; h2++) {
- struct rsvp_filter *f;
-
- while ((f = rtnl_dereference(s->ht[h2])) != NULL) {
- rcu_assign_pointer(s->ht[h2], f->next);
- rsvp_delete_filter(tp, f);
- }
- }
- kfree_rcu(s, rcu);
- }
- }
- kfree_rcu(data, rcu);
-}
-
-static int rsvp_delete(struct tcf_proto *tp, void *arg, bool *last,
- bool rtnl_held, struct netlink_ext_ack *extack)
-{
- struct rsvp_head *head = rtnl_dereference(tp->root);
- struct rsvp_filter *nfp, *f = arg;
- struct rsvp_filter __rcu **fp;
- unsigned int h = f->handle;
- struct rsvp_session __rcu **sp;
- struct rsvp_session *nsp, *s = f->sess;
- int i, h1;
-
- fp = &s->ht[(h >> 8) & 0xFF];
- for (nfp = rtnl_dereference(*fp); nfp;
- fp = &nfp->next, nfp = rtnl_dereference(*fp)) {
- if (nfp == f) {
- RCU_INIT_POINTER(*fp, f->next);
- rsvp_delete_filter(tp, f);
-
- /* Strip tree */
-
- for (i = 0; i <= 16; i++)
- if (s->ht[i])
- goto out;
-
- /* OK, session has no flows */
- sp = &head->ht[h & 0xFF];
- for (nsp = rtnl_dereference(*sp); nsp;
- sp = &nsp->next, nsp = rtnl_dereference(*sp)) {
- if (nsp == s) {
- RCU_INIT_POINTER(*sp, s->next);
- kfree_rcu(s, rcu);
- goto out;
- }
- }
-
- break;
- }
- }
-
-out:
- *last = true;
- for (h1 = 0; h1 < 256; h1++) {
- if (rcu_access_pointer(head->ht[h1])) {
- *last = false;
- break;
- }
- }
-
- return 0;
-}
-
-static unsigned int gen_handle(struct tcf_proto *tp, unsigned salt)
-{
- struct rsvp_head *data = rtnl_dereference(tp->root);
- int i = 0xFFFF;
-
- while (i-- > 0) {
- u32 h;
-
- if ((data->hgenerator += 0x10000) == 0)
- data->hgenerator = 0x10000;
- h = data->hgenerator|salt;
- if (!rsvp_get(tp, h))
- return h;
- }
- return 0;
-}
-
-static int tunnel_bts(struct rsvp_head *data)
-{
- int n = data->tgenerator >> 5;
- u32 b = 1 << (data->tgenerator & 0x1F);
-
- if (data->tmap[n] & b)
- return 0;
- data->tmap[n] |= b;
- return 1;
-}
-
-static void tunnel_recycle(struct rsvp_head *data)
-{
- struct rsvp_session __rcu **sht = data->ht;
- u32 tmap[256/32];
- int h1, h2;
-
- memset(tmap, 0, sizeof(tmap));
-
- for (h1 = 0; h1 < 256; h1++) {
- struct rsvp_session *s;
- for (s = rtnl_dereference(sht[h1]); s;
- s = rtnl_dereference(s->next)) {
- for (h2 = 0; h2 <= 16; h2++) {
- struct rsvp_filter *f;
-
- for (f = rtnl_dereference(s->ht[h2]); f;
- f = rtnl_dereference(f->next)) {
- if (f->tunnelhdr == 0)
- continue;
- data->tgenerator = f->res.classid;
- tunnel_bts(data);
- }
- }
- }
- }
-
- memcpy(data->tmap, tmap, sizeof(tmap));
-}
-
-static u32 gen_tunnel(struct rsvp_head *data)
-{
- int i, k;
-
- for (k = 0; k < 2; k++) {
- for (i = 255; i > 0; i--) {
- if (++data->tgenerator == 0)
- data->tgenerator = 1;
- if (tunnel_bts(data))
- return data->tgenerator;
- }
- tunnel_recycle(data);
- }
- return 0;
-}
-
-static const struct nla_policy rsvp_policy[TCA_RSVP_MAX + 1] = {
- [TCA_RSVP_CLASSID] = { .type = NLA_U32 },
- [TCA_RSVP_DST] = { .len = RSVP_DST_LEN * sizeof(u32) },
- [TCA_RSVP_SRC] = { .len = RSVP_DST_LEN * sizeof(u32) },
- [TCA_RSVP_PINFO] = { .len = sizeof(struct tc_rsvp_pinfo) },
-};
-
-static int rsvp_change(struct net *net, struct sk_buff *in_skb,
- struct tcf_proto *tp, unsigned long base,
- u32 handle,
- struct nlattr **tca,
- void **arg, bool ovr, bool rtnl_held,
- struct netlink_ext_ack *extack)
-{
- struct rsvp_head *data = rtnl_dereference(tp->root);
- struct rsvp_filter *f, *nfp;
- struct rsvp_filter __rcu **fp;
- struct rsvp_session *nsp, *s;
- struct rsvp_session __rcu **sp;
- struct tc_rsvp_pinfo *pinfo = NULL;
- struct nlattr *opt = tca[TCA_OPTIONS];
- struct nlattr *tb[TCA_RSVP_MAX + 1];
- struct tcf_exts e;
- unsigned int h1, h2;
- __be32 *dst;
- int err;
-
- if (opt == NULL)
- return handle ? -EINVAL : 0;
-
- err = nla_parse_nested_deprecated(tb, TCA_RSVP_MAX, opt, rsvp_policy,
- NULL);
- if (err < 0)
- return err;
-
- err = tcf_exts_init(&e, net, TCA_RSVP_ACT, TCA_RSVP_POLICE);
- if (err < 0)
- return err;
- err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &e, ovr, true,
- extack);
- if (err < 0)
- goto errout2;
-
- f = *arg;
- if (f) {
- /* Node exists: adjust only classid */
- struct rsvp_filter *n;
-
- if (f->handle != handle && handle)
- goto errout2;
-
- n = kmemdup(f, sizeof(*f), GFP_KERNEL);
- if (!n) {
- err = -ENOMEM;
- goto errout2;
- }
-
- err = tcf_exts_init(&n->exts, net, TCA_RSVP_ACT,
- TCA_RSVP_POLICE);
- if (err < 0) {
- kfree(n);
- goto errout2;
- }
-
- if (tb[TCA_RSVP_CLASSID]) {
- n->res.classid = nla_get_u32(tb[TCA_RSVP_CLASSID]);
- tcf_bind_filter(tp, &n->res, base);
- }
-
- tcf_exts_change(&n->exts, &e);
- rsvp_replace(tp, n, handle);
- return 0;
- }
-
- /* Now more serious part... */
- err = -EINVAL;
- if (handle)
- goto errout2;
- if (tb[TCA_RSVP_DST] == NULL)
- goto errout2;
-
- err = -ENOBUFS;
- f = kzalloc(sizeof(struct rsvp_filter), GFP_KERNEL);
- if (f == NULL)
- goto errout2;
-
- err = tcf_exts_init(&f->exts, net, TCA_RSVP_ACT, TCA_RSVP_POLICE);
- if (err < 0)
- goto errout;
- h2 = 16;
- if (tb[TCA_RSVP_SRC]) {
- memcpy(f->src, nla_data(tb[TCA_RSVP_SRC]), sizeof(f->src));
- h2 = hash_src(f->src);
- }
- if (tb[TCA_RSVP_PINFO]) {
- pinfo = nla_data(tb[TCA_RSVP_PINFO]);
- f->spi = pinfo->spi;
- f->tunnelhdr = pinfo->tunnelhdr;
- }
- if (tb[TCA_RSVP_CLASSID])
- f->res.classid = nla_get_u32(tb[TCA_RSVP_CLASSID]);
-
- dst = nla_data(tb[TCA_RSVP_DST]);
- h1 = hash_dst(dst, pinfo ? pinfo->protocol : 0, pinfo ? pinfo->tunnelid : 0);
-
- err = -ENOMEM;
- if ((f->handle = gen_handle(tp, h1 | (h2<<8))) == 0)
- goto errout;
-
- if (f->tunnelhdr) {
- err = -EINVAL;
- if (f->res.classid > 255)
- goto errout;
-
- err = -ENOMEM;
- if (f->res.classid == 0 &&
- (f->res.classid = gen_tunnel(data)) == 0)
- goto errout;
- }
-
- for (sp = &data->ht[h1];
- (s = rtnl_dereference(*sp)) != NULL;
- sp = &s->next) {
- if (dst[RSVP_DST_LEN-1] == s->dst[RSVP_DST_LEN-1] &&
- pinfo && pinfo->protocol == s->protocol &&
- memcmp(&pinfo->dpi, &s->dpi, sizeof(s->dpi)) == 0 &&
-#if RSVP_DST_LEN == 4
- dst[0] == s->dst[0] &&
- dst[1] == s->dst[1] &&
- dst[2] == s->dst[2] &&
-#endif
- pinfo->tunnelid == s->tunnelid) {
-
-insert:
- /* OK, we found appropriate session */
-
- fp = &s->ht[h2];
-
- f->sess = s;
- if (f->tunnelhdr == 0)
- tcf_bind_filter(tp, &f->res, base);
-
- tcf_exts_change(&f->exts, &e);
-
- fp = &s->ht[h2];
- for (nfp = rtnl_dereference(*fp); nfp;
- fp = &nfp->next, nfp = rtnl_dereference(*fp)) {
- __u32 mask = nfp->spi.mask & f->spi.mask;
-
- if (mask != f->spi.mask)
- break;
- }
- RCU_INIT_POINTER(f->next, nfp);
- rcu_assign_pointer(*fp, f);
-
- *arg = f;
- return 0;
- }
- }
-
- /* No session found. Create new one. */
-
- err = -ENOBUFS;
- s = kzalloc(sizeof(struct rsvp_session), GFP_KERNEL);
- if (s == NULL)
- goto errout;
- memcpy(s->dst, dst, sizeof(s->dst));
-
- if (pinfo) {
- s->dpi = pinfo->dpi;
- s->protocol = pinfo->protocol;
- s->tunnelid = pinfo->tunnelid;
- }
- sp = &data->ht[h1];
- for (nsp = rtnl_dereference(*sp); nsp;
- sp = &nsp->next, nsp = rtnl_dereference(*sp)) {
- if ((nsp->dpi.mask & s->dpi.mask) != s->dpi.mask)
- break;
- }
- RCU_INIT_POINTER(s->next, nsp);
- rcu_assign_pointer(*sp, s);
-
- goto insert;
-
-errout:
- tcf_exts_destroy(&f->exts);
- kfree(f);
-errout2:
- tcf_exts_destroy(&e);
- return err;
-}
-
-static void rsvp_walk(struct tcf_proto *tp, struct tcf_walker *arg,
- bool rtnl_held)
-{
- struct rsvp_head *head = rtnl_dereference(tp->root);
- unsigned int h, h1;
-
- if (arg->stop)
- return;
-
- for (h = 0; h < 256; h++) {
- struct rsvp_session *s;
-
- for (s = rtnl_dereference(head->ht[h]); s;
- s = rtnl_dereference(s->next)) {
- for (h1 = 0; h1 <= 16; h1++) {
- struct rsvp_filter *f;
-
- for (f = rtnl_dereference(s->ht[h1]); f;
- f = rtnl_dereference(f->next)) {
- if (arg->count < arg->skip) {
- arg->count++;
- continue;
- }
- if (arg->fn(tp, f, arg) < 0) {
- arg->stop = 1;
- return;
- }
- arg->count++;
- }
- }
- }
- }
-}
-
-static int rsvp_dump(struct net *net, struct tcf_proto *tp, void *fh,
- struct sk_buff *skb, struct tcmsg *t, bool rtnl_held)
-{
- struct rsvp_filter *f = fh;
- struct rsvp_session *s;
- struct nlattr *nest;
- struct tc_rsvp_pinfo pinfo;
-
- if (f == NULL)
- return skb->len;
- s = f->sess;
-
- t->tcm_handle = f->handle;
-
- nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
- if (nest == NULL)
- goto nla_put_failure;
-
- if (nla_put(skb, TCA_RSVP_DST, sizeof(s->dst), &s->dst))
- goto nla_put_failure;
- pinfo.dpi = s->dpi;
- pinfo.spi = f->spi;
- pinfo.protocol = s->protocol;
- pinfo.tunnelid = s->tunnelid;
- pinfo.tunnelhdr = f->tunnelhdr;
- pinfo.pad = 0;
- if (nla_put(skb, TCA_RSVP_PINFO, sizeof(pinfo), &pinfo))
- goto nla_put_failure;
- if (f->res.classid &&
- nla_put_u32(skb, TCA_RSVP_CLASSID, f->res.classid))
- goto nla_put_failure;
- if (((f->handle >> 8) & 0xFF) != 16 &&
- nla_put(skb, TCA_RSVP_SRC, sizeof(f->src), f->src))
- goto nla_put_failure;
-
- if (tcf_exts_dump(skb, &f->exts) < 0)
- goto nla_put_failure;
-
- nla_nest_end(skb, nest);
-
- if (tcf_exts_dump_stats(skb, &f->exts) < 0)
- goto nla_put_failure;
- return skb->len;
-
-nla_put_failure:
- nla_nest_cancel(skb, nest);
- return -1;
-}
-
-static void rsvp_bind_class(void *fh, u32 classid, unsigned long cl, void *q,
- unsigned long base)
-{
- struct rsvp_filter *f = fh;
-
- if (f && f->res.classid == classid) {
- if (cl)
- __tcf_bind_filter(q, &f->res, base);
- else
- __tcf_unbind_filter(q, &f->res);
- }
-}
-
-static struct tcf_proto_ops RSVP_OPS __read_mostly = {
- .kind = RSVP_ID,
- .classify = rsvp_classify,
- .init = rsvp_init,
- .destroy = rsvp_destroy,
- .get = rsvp_get,
- .change = rsvp_change,
- .delete = rsvp_delete,
- .walk = rsvp_walk,
- .dump = rsvp_dump,
- .bind_class = rsvp_bind_class,
- .owner = THIS_MODULE,
-};
-
-static int __init init_rsvp(void)
-{
- return register_tcf_proto_ops(&RSVP_OPS);
-}
-
-static void __exit exit_rsvp(void)
-{
- unregister_tcf_proto_ops(&RSVP_OPS);
-}
-
-module_init(init_rsvp)
-module_exit(exit_rsvp)
--- a/net/sched/cls_rsvp6.c
+++ /dev/null
@@ -1,24 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-/*
- * net/sched/cls_rsvp6.c Special RSVP packet classifier for IPv6.
- *
- * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
- */
-
-#include <linux/module.h>
-#include <linux/types.h>
-#include <linux/kernel.h>
-#include <linux/string.h>
-#include <linux/errno.h>
-#include <linux/ipv6.h>
-#include <linux/skbuff.h>
-#include <net/act_api.h>
-#include <net/pkt_cls.h>
-#include <net/netlink.h>
-
-#define RSVP_DST_LEN 4
-#define RSVP_ID "rsvp6"
-#define RSVP_OPS cls_rsvp6_ops
-
-#include "cls_rsvp.h"
-MODULE_LICENSE("GPL");
next prev parent reply other threads:[~2023-09-20 12:43 UTC|newest]
Thread overview: 385+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-20 11:26 [PATCH 5.4 000/367] 5.4.257-rc1 review Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 001/367] erofs: ensure that the post-EOF tails are all zeroed Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 002/367] ARM: pxa: remove use of symbol_get() Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 003/367] mmc: au1xmmc: force non-modular build and remove symbol_get usage Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 004/367] net: enetc: use EXPORT_SYMBOL_GPL for enetc_phc_index Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 005/367] rtc: ds1685: use EXPORT_SYMBOL_GPL for ds1685_rtc_poweroff Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 006/367] modules: only allow symbol_get of EXPORT_SYMBOL_GPL modules Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 007/367] USB: serial: option: add Quectel EM05G variant (0x030e) Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 008/367] USB: serial: option: add FOXCONN T99W368/T99W373 product Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 009/367] HID: wacom: remove the battery when the EKR is off Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 010/367] staging: rtl8712: fix race condition Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 011/367] Bluetooth: btsdio: fix use after free bug in btsdio_remove due to " Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 012/367] serial: sc16is7xx: fix bug when first setting GPIO direction Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 013/367] firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 014/367] fsi: master-ast-cf: Add MODULE_FIRMWARE macro Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 015/367] nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers() Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 016/367] nilfs2: fix WARNING in mark_buffer_dirty due to discarded buffer reuse Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 017/367] pinctrl: amd: Dont show `Invalid config param` errors Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 018/367] 9p: virtio: make sure offs is initialized in zc_request Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 019/367] ASoC: da7219: Flush pending AAD IRQ when suspending Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 020/367] ASoC: da7219: Check for failure reading AAD IRQ events Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 021/367] ethernet: atheros: fix return value check in atl1c_tso_csum() Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 022/367] vxlan: generalize vxlan_parse_gpe_hdr and remove unused args Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 023/367] m68k: Fix invalid .section syntax Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 024/367] s390/dasd: use correct number of retries for ERP requests Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 025/367] s390/dasd: fix hanging device after request requeue Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 026/367] fs/nls: make load_nls() take a const parameter Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 027/367] ASoc: codecs: ES8316: Fix DMIC config Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 028/367] ASoC: atmel: Fix the 8K sample parameter in I2SC master Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 029/367] platform/x86: intel: hid: Always call BTNL ACPI method Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 030/367] platform/x86: huawei-wmi: Silence ambient light sensor Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 031/367] security: keys: perform capable check only on privileged operations Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 032/367] clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 033/367] net: usb: qmi_wwan: add Quectel EM05GV2 Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 034/367] idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 035/367] scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 036/367] netlabel: fix shift wrapping bug in netlbl_catmap_setlong() Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 037/367] bnx2x: fix page fault following EEH recovery Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 038/367] sctp: handle invalid error codes without calling BUG() Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 039/367] cifs: add a warning when the in-flight count goes negative Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 040/367] scsi: storvsc: Always set no_report_opcodes Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 041/367] ALSA: seq: oss: Fix racy open/close of MIDI devices Greg Kroah-Hartman
2023-09-20 11:26 ` [PATCH 5.4 042/367] platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE notifications Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 043/367] net: Avoid address overwrite in kernel_connect Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 044/367] powerpc/32s: Fix assembler warning about r0 Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 045/367] udf: Check consistency of Space Bitmap Descriptor Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 046/367] udf: Handle error when adding extent to a file Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 047/367] Revert "net: macsec: preserve ingress frame ordering" Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 048/367] reiserfs: Check the return value from __getblk() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 049/367] eventfd: Export eventfd_ctx_do_read() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 050/367] eventfd: prevent underflow for eventfd semaphores Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 051/367] new helper: lookup_positive_unlocked() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 052/367] fs: Fix error checking for d_hash_and_lookup() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 053/367] tmpfs: verify {g,u}id mount options correctly Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 054/367] OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 055/367] x86/asm: Make more symbols local Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 056/367] x86/boot: Annotate local functions Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 057/367] x86/decompressor: Dont rely on upper 32 bits of GPRs being preserved Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 058/367] perf/imx_ddr: dont enable counter0 if none of 4 counters are used Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 059/367] cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 060/367] bpf: Clear the probe_addr for uprobe Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 061/367] tcp: tcp_enter_quickack_mode() should be static Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 062/367] regmap: rbtree: Use alloc_flags for memory allocations Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 063/367] spi: tegra20-sflash: fix to check return value of platform_get_irq() in tegra_sflash_probe() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 064/367] can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also in case of OOM Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 065/367] wifi: mwifiex: Fix OOB and integer underflow when rx packets Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 066/367] mwifiex: switch from pci_ to dma_ API Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 067/367] wifi: mwifiex: fix error recovery in PCIE buffer descriptor management Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 068/367] crypto: stm32 - Properly handle pm_runtime_get failing Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 069/367] Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 070/367] crypto: caam - fix unchecked return value error Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 071/367] hwrng: iproc-rng200 - use semicolons rather than commas to separate statements Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 072/367] hwrng: iproc-rng200 - Implement suspend and resume calls Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 073/367] lwt: Fix return values of BPF xmit ops Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 074/367] lwt: Check LWTUNNEL_XMIT_CONTINUE strictly Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 075/367] fs: ocfs2: namei: check return value of ocfs2_add_entry() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 076/367] wifi: mwifiex: fix memory leak in mwifiex_histogram_read() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 077/367] wifi: mwifiex: Fix missed return in oob checks failed path Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 078/367] wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 079/367] wifi: ath9k: protect WMI command response buffer replacement with a lock Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 080/367] wifi: mwifiex: avoid possible NULL skb pointer dereference Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 081/367] wifi: ath9k: use IS_ERR() with debugfs_create_dir() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 082/367] net: arcnet: Do not call kfree_skb() under local_irq_disable() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 083/367] mlxsw: i2c: Fix chunk size setting in output mailbox buffer Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 084/367] mlxsw: i2c: Limit single transaction buffer size Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 085/367] net/sched: sch_hfsc: Ensure inner classes have fsc curve Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 086/367] netrom: Deny concurrent connect() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 087/367] drm/bridge: tc358764: Fix debug print parameter order Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 088/367] quota: avoid increasing DQST_LOOKUPS when iterating over dirty/inuse list Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 089/367] quota: factor out dquot_write_dquot() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 090/367] quota: rename dquot_active() to inode_quota_active() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 091/367] quota: add new helper dquot_active() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 092/367] quota: fix dqput() to follow the guarantees dquot_srcu should provide Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 093/367] drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar() Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 094/367] ARM: dts: BCM53573: Drop nonexistent "default-off" LED trigger Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 095/367] ARM: dts: BCM53573: Add cells sizes to PCIe node Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 096/367] ARM: dts: BCM53573: Use updated "spi-gpio" binding properties Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 097/367] drm/etnaviv: fix dumping of active MMU context Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 098/367] ARM: dts: s3c6410: move fixed clocks under root node in Mini6410 Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 099/367] ARM: dts: s3c6410: align node SROM bus node name with dtschema " Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 100/367] ARM: dts: s3c64xx: align pinctrl with dtschema Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 101/367] ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split) Greg Kroah-Hartman
2023-09-20 11:27 ` [PATCH 5.4 102/367] ARM: dts: s5pv210: add RTC 32 KHz clock in SMDKV210 Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 103/367] ARM: dts: s5pv210: use defines for IRQ flags " Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 104/367] ARM: dts: s5pv210: correct ethernet unit address " Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 105/367] ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210 Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 106/367] ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split) Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 107/367] drm: adv7511: Fix low refresh rate register for ADV7533/5 Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 108/367] ARM: dts: BCM53573: Fix Ethernet info for Luxul devices Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 109/367] arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 110/367] drm/amdgpu: Update min() to min_t() in amdgpu_info_ioctl Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 111/367] md/bitmap: dont set max_write_behind if there is no write mostly device Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 112/367] md/md-bitmap: hold reconfig_mutex in backlog_store() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 113/367] drm/tegra: Remove superfluous error messages around platform_get_irq() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 114/367] drm/tegra: dpaux: Fix incorrect return value of platform_get_irq Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 115/367] of: unittest: fix null pointer dereferencing in of_unittest_find_node_by_name() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 116/367] drm/armada: Fix off-by-one error in armada_overlay_get_property() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 117/367] drm/panel: simple: Add missing connector type and pixel format for AUO T215HVN01 Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 118/367] ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig Greg Kroah-Hartman
2023-09-26 20:10 ` Mimi Zohar
2023-09-20 11:28 ` [PATCH 5.4 119/367] drm/msm/mdp5: Dont leak some plane state Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 120/367] smackfs: Prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 121/367] audit: fix possible soft lockup in __audit_inode_child() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 122/367] drm/mediatek: Fix potential memory leak if vmap() fail Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 123/367] of: unittest: Fix overlay type in apply/revert check Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 124/367] ALSA: ac97: Fix possible error value of *rac97 Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 125/367] ipmi:ssif: Add check for kstrdup Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 126/367] ipmi:ssif: Fix a memory leak when scanning for an adapter Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 127/367] drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 128/367] clk: sunxi-ng: Modify mismatched function name Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 129/367] PCI: Mark NVIDIA T4 GPUs to avoid bus reset Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 130/367] PCI: pciehp: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 131/367] PCI/ASPM: " Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 132/367] clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 133/367] powerpc/fadump: reset dump area size if fadump memory reserve fails Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 134/367] PCI: Add #defines for Enter Compliance, Transmit Margin Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 135/367] drm/amdgpu: Correct Transmit Margin masks Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 136/367] drm/amdgpu: Replace numbers with PCI_EXP_LNKCTL2 definitions Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 137/367] drm/amdgpu: Prefer pcie_capability_read_word() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 138/367] drm/amdgpu: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 139/367] drm/radeon: Correct Transmit Margin masks Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 140/367] drm/radeon: Replace numbers with PCI_EXP_LNKCTL2 definitions Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 141/367] drm/radeon: Prefer pcie_capability_read_word() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 142/367] drm/radeon: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 143/367] wifi: ath10k: " Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 144/367] nfs/blocklayout: Use the passed in gfp flags Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 145/367] powerpc/iommu: Fix notifiers being shared by PCI and VIO buses Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 146/367] jfs: validate max amount of blocks before allocation Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 147/367] fs: lockd: avoid possible wrong NULL parameter Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 148/367] NFSD: da_addr_body field missing in some GETDEVICEINFO replies Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 149/367] NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 150/367] media: v4l2-fwnode: fix v4l2_fwnode_parse_link handling Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 151/367] media: v4l2-fwnode: simplify v4l2_fwnode_parse_link Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 152/367] media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 153/367] drivers: usb: smsusb: fix error handling code in smsusb_init_device Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 154/367] media: dib7000p: Fix potential division by zero Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 155/367] media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 156/367] media: cx24120: Add retval check for cx24120_message_send() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 157/367] media: mediatek: vcodec: Return NULL if no vdec_fb is found Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 158/367] usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 159/367] scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param() Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 160/367] scsi: be2iscsi: Add length check when parsing nlattrs Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 161/367] scsi: qla4xxx: " Greg Kroah-Hartman
2023-09-20 11:28 ` [PATCH 5.4 162/367] serial: sprd: getting port index via serial aliases only Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 163/367] serial: sprd: remove redundant sprd_port cleanup Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 164/367] serial: sprd: Assign sprd_port after initialized to avoid wrong access Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 165/367] serial: sprd: Fix DMA buffer leak issue Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 166/367] x86/APM: drop the duplicate APM_MINOR_DEV macro Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 167/367] scsi: qedf: Do not touch __user pointer in qedf_dbg_stop_io_on_error_cmd_read() directly Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 168/367] scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() directly Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 169/367] scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() directly Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 170/367] coresight: tmc: Explicit type conversions to prevent integer overflow Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 171/367] dma-buf/sync_file: Fix docs syntax Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 172/367] driver core: test_async: fix an error code Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 173/367] IB/uverbs: Fix an potential error pointer dereference Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 174/367] iommu/vt-d: Fix to flush cache of PASID directory table Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 175/367] media: go7007: Remove redundant if statement Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 176/367] USB: gadget: f_mass_storage: Fix unused variable warning Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 177/367] media: i2c: ov5640: Configure HVP lines in s_power callback Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 178/367] media: ov5640: Enable MIPI interface in ov5640_set_power_mipi() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 179/367] media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 180/367] media: ov2680: Remove auto-gain and auto-exposure controls Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 181/367] media: ov2680: Fix ov2680_bayer_order() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 182/367] media: ov2680: Fix vflip / hflip set functions Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 183/367] media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 184/367] scsi: core: Use 32-bit hostnum in scsi_host_lookup() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 185/367] scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 186/367] serial: tegra: handle clk prepare error in tegra_uart_hw_init() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 187/367] amba: bus: fix refcount leak Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 188/367] Revert "IB/isert: Fix incorrect release of isert connection" Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 189/367] RDMA/siw: Balance the reference of cep->kref in the error path Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 190/367] RDMA/siw: Correct wrong debug message Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 191/367] HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 192/367] HID: multitouch: Correct devm device reference for hidinput input_dev name Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 193/367] x86/speculation: Mark all Skylake CPUs as vulnerable to GDS Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 194/367] tracing: Fix race issue between cpu buffer write and swap Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 195/367] phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328 Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 196/367] phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 197/367] phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 198/367] rpmsg: glink: Add check for kstrdup Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 199/367] mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 200/367] um: Fix hostaudio build errors Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 201/367] dmaengine: ste_dma40: Add missing IRQ check in d40_probe Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 202/367] cpufreq: Fix the race condition while updating the transition_task of policy Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 203/367] virtio_ring: fix avail_wrap_counter in virtqueue_add_packed Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 204/367] igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 205/367] netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for ip_set_hash_netportnet.c Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 206/367] netfilter: xt_u32: validate user space input Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 207/367] netfilter: xt_sctp: validate the flag_info count Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 208/367] skbuff: skb_segment, Call zero copy functions before using skbuff frags Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 209/367] igb: set max size RX buffer when store bad packet is enabled Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 210/367] PM / devfreq: Fix leak in devfreq_dev_release() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 211/367] ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 212/367] ipmi_si: fix a memleak in try_smi_init() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 213/367] ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 214/367] backlight/gpio_backlight: Compare against struct fb_info.device Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 215/367] backlight/bd6107: " Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 216/367] backlight/lv5207lp: " Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 217/367] xtensa: PMU: fix base address for the newer hardware Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 218/367] media: dvb: symbol fixup for dvb_attach() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 219/367] ntb: Drop packets when qp link is down Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 220/367] ntb: Clean up tx tail index on link down Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 221/367] ntb: Fix calculation ntb_transport_tx_free_entry() Greg Kroah-Hartman
2023-09-20 11:29 ` [PATCH 5.4 222/367] Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset" Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 223/367] procfs: block chmod on /proc/thread-self/comm Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 224/367] parisc: Fix /proc/cpuinfo output for lscpu Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 225/367] dlm: fix plock lookup when using multiple lockspaces Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 226/367] dccp: Fix out of bounds access in DCCP error handler Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 227/367] X.509: if signature is unsupported skip validation Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 228/367] net: handle ARPHRD_PPP in dev_is_mac_header_xmit() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 229/367] fsverity: skip PKCS#7 parser when keyring is empty Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 230/367] pstore/ram: Check start of empty przs during init Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 231/367] s390/ipl: add missing secure/has_secure file to ipl type unknown Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 232/367] crypto: stm32 - fix loop iterating through scatterlist for DMA Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 233/367] cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 234/367] sc16is7xx: Set iobase to device index Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 235/367] serial: sc16is7xx: fix broken port 0 uart init Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 236/367] usb: typec: tcpci: clear the fault status bit Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 237/367] udf: initialize newblock to 0 Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 238/367] drm: fix double free for gbo in drm_gem_vram_init and drm_gem_vram_create Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 239/367] net/ipv6: SKB symmetric hash should incorporate transport ports Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 240/367] scsi: qla2xxx: fix inconsistent TMF timeout Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 241/367] scsi: qla2xxx: Fix erroneous link up failure Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 242/367] scsi: qla2xxx: Turn off noisy message log Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 243/367] scsi: qla2xxx: Remove unsupported ql2xenabledif option Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 244/367] fbdev/ep93xx-fb: Do not assign to struct fb_info.dev Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 245/367] drm/ast: Fix DRAM init on AST2200 Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 246/367] lib/test_meminit: allocate pages up to order MAX_ORDER Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 247/367] parisc: led: Fix LAN receive and transmit LEDs Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 248/367] parisc: led: Reduce CPU overhead for disk & lan LED computation Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 249/367] clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 250/367] soc: qcom: qmi_encdec: Restrict string length in decode Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 251/367] NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 252/367] kconfig: fix possible buffer overflow Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 253/367] perf annotate bpf: Dont enclose non-debug code with an assert() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 254/367] x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 255/367] perf top: Dont pass an ERR_PTR() directly to perf_session__delete() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 256/367] watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 257/367] pwm: lpc32xx: Remove handling of PWM channels Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 258/367] sctp: annotate data-races around sk->sk_wmem_queued Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 259/367] ipv4: annotate data-races around fi->fib_dead Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 260/367] net: read sk->sk_family once in sk_mc_loop() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 261/367] igb: disable virtualization features on 82580 Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 262/367] veth: Fixing transmit return status for dropped packets Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 263/367] net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 264/367] af_unix: Fix data-races around user->unix_inflight Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 265/367] af_unix: Fix data-race around unix_tot_inflight Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 266/367] af_unix: Fix data-races around sk->sk_shutdown Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 267/367] af_unix: Fix data race around sk->sk_err Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 268/367] net: sched: sch_qfq: Fix UAF in qfq_dequeue() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 269/367] kcm: Destroy mutex in kcm_exit_net() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 270/367] igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 271/367] igbvf: Change IGBVF_MIN " Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 272/367] igb: Change IGB_MIN " Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 273/367] s390/zcrypt: dont leak memory if dev_set_name() fails Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 274/367] idr: fix param name in idr_alloc_cyclic() doc Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 275/367] ip_tunnels: use DEV_STATS_INC() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 276/367] netfilter: nfnetlink_osf: avoid OOB read Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 277/367] net: hns3: fix the port information display when sfp is absent Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 278/367] sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 279/367] ata: sata_gemini: Add missing MODULE_DESCRIPTION Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 280/367] ata: pata_ftide010: " Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 281/367] fuse: nlookup missing decrement in fuse_direntplus_link Greg Kroah-Hartman
2023-09-20 11:30 ` [PATCH 5.4 282/367] btrfs: dont start transaction when joining with TRANS_JOIN_NOSTART Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 283/367] btrfs: use the correct superblock to compare fsid in btrfs_validate_super Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 284/367] mtd: rawnand: brcmnand: Fix crash during the panic_write Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 285/367] mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 286/367] mtd: rawnand: brcmnand: Fix potential false time out warning Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 287/367] perf hists browser: Fix hierarchy mode header Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 288/367] perf tools: Handle old data in PERF_RECORD_ATTR Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 289/367] usb: typec: tcpm: Refactor tcpm_handle_vdm_request payload handling Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 290/367] usb: typec: tcpm: Refactor tcpm_handle_vdm_request Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 291/367] usb: typec: bus: verify partner exists in typec_altmode_attention Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 292/367] ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 293/367] clk: imx8mm: Move 1443X/1416X PLL clock structure to common place Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 294/367] clk: imx: clk-pll14xx: Make two variables static Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 295/367] clk: imx: pll14xx: Add new frequency entries for pll1443x table Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 296/367] clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz Greg Kroah-Hartman
2023-09-21 7:03 ` Ahmad Fatoum
2023-09-23 8:28 ` Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 297/367] net: ipv4: fix one memleak in __inet_del_ifa() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 298/367] net: ethernet: mvpp2_main: fix possible OOB write in mvpp2_ethtool_get_rxnfc() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 299/367] net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in mtk_hwlro_get_fdir_all() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 300/367] r8152: check budget for r8152_poll() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 301/367] kcm: Fix memory leak in error path of kcm_sendmsg() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 302/367] platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 303/367] mlxbf-tmfifo: sparse tags for config access Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 304/367] platform/mellanox: mlxbf-tmfifo: Drop jumbo frames Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 305/367] net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 306/367] ixgbe: fix timestamp configuration code Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 307/367] kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 308/367] drm/amd/display: Fix a bug when searching for insert_above_mpcc Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 309/367] parisc: Drop loops_per_jiffy from per_cpu struct Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 310/367] autofs: fix memory leak of waitqueues in autofs_catatonic_mode Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 311/367] btrfs: output extra debug info if we failed to find an inline backref Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 312/367] locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 313/367] ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 314/367] kernel/fork: beware of __put_task_struct() calling context Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 315/367] ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 316/367] perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 317/367] hw_breakpoint: fix single-stepping when using bpf_overflow_handler Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 318/367] devlink: remove reload failed checks in params get/set callbacks Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 319/367] wifi: ath9k: fix printk specifier Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 320/367] wifi: mwifiex: fix fortify warning Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 321/367] crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 322/367] tpm_tis: Resend command to recover from data transfer errors Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 323/367] mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 324/367] alx: fix OOB-read compiler warning Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 325/367] wifi: mac80211_hwsim: drop short frames Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 326/367] libbpf: Free btf_vmlinux when closing bpf_object Greg Kroah-Hartman
2023-09-20 13:28 ` Harshit Mogalapalli
2023-09-23 8:25 ` Greg Kroah-Hartman
2023-09-25 10:42 ` Harshit Mogalapalli
2023-09-20 11:31 ` [PATCH 5.4 327/367] drm/exynos: fix a possible null-pointer dereference due to data race in exynos_drm_crtc_atomic_disable() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 328/367] bus: ti-sysc: Configure uart quirks for k3 SoC Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 329/367] md: raid1: fix potential OOB in raid1_remove_disk() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 330/367] ext2: fix datatype of block number in ext2_xattr_set2() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 331/367] fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 332/367] jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 333/367] powerpc/pseries: fix possible memory leak in ibmebus_bus_init() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 334/367] media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 335/367] media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 336/367] media: af9005: Fix null-ptr-deref in af9005_i2c_xfer Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 337/367] media: anysee: fix null-ptr-deref in anysee_master_xfer Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 338/367] media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 339/367] media: tuners: qt1010: replace BUG_ON with a regular error Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 340/367] media: pci: cx23885: replace BUG with error return Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 341/367] usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc Greg Kroah-Hartman
2023-09-20 11:31 ` [PATCH 5.4 342/367] scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 343/367] serial: cpm_uart: Avoid suspicious locking Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 344/367] media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 345/367] kobject: Add sanity check for kset->kobj.ktype in kset_register() Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 346/367] tools features: Add feature test to check if libbfd has buildid support Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 347/367] perf jevents: Make build dependency on test JSONs Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 348/367] perf tools: Add an option to build without libbfd Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 349/367] perf jevents: Switch build to use jevents.py Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 350/367] perf build: Update build rule for generated files Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 351/367] btrfs: move btrfs_pinned_by_swapfile prototype into volumes.h Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 352/367] btrfs: add a helper to read the superblock metadata_uuid Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 353/367] btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 354/367] selftests: tracing: Fix to unmount tracefs for recovering environment Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 355/367] md/raid1: fix error: ISO C90 forbids mixed declarations Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 356/367] attr: block mode changes of symlinks Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 357/367] btrfs: fix lockdep splat and potential deadlock after failure running delayed items Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 358/367] tracing: Have current_trace inc the trace array ref count Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 359/367] tracing: Have option files " Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 360/367] nfsd: fix change_info in NFSv4 RENAME replies Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 361/367] tracefs: Add missing lockdown check to tracefs_create_dir() Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 362/367] i2c: aspeed: Reset the i2c controller when timeout occurs Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 363/367] scsi: megaraid_sas: Fix deadlock on firmware crashdump Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 364/367] ext4: fix rec_len verify error Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 365/367] mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller Greg Kroah-Hartman
2023-09-20 11:32 ` [PATCH 5.4 366/367] drm/amdgpu: fix amdgpu_cs_p1_user_fence Greg Kroah-Hartman
2023-09-20 11:32 ` Greg Kroah-Hartman [this message]
2023-09-20 17:21 ` [PATCH 5.4 000/367] 5.4.257-rc1 review Florian Fainelli
2023-09-21 12:20 ` Guenter Roeck
2023-09-23 8:26 ` Greg Kroah-Hartman
2023-09-20 21:37 ` Shuah Khan
2023-09-21 12:08 ` Naresh Kamboju
2023-09-21 13:10 ` Sui Jingfeng
2023-09-21 13:16 ` Sui Jingfeng
2023-09-23 8:30 ` Greg Kroah-Hartman
2023-09-21 14:33 ` Naresh Kamboju
2023-09-21 15:55 ` Guenter Roeck
2023-09-22 9:46 ` Jon Hunter
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=20230920112907.975134022@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=jhs@mojatatu.com \
--cc=jiri@nvidia.com \
--cc=pabeni@redhat.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=zengyhkyle@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).