From: luca.boccassi@gmail.com To: Bruce Richardson <bruce.richardson@intel.com> Cc: David Hunt <david.hunt@intel.com>, Anatoly Burakov <anatoly.burakov@intel.com>, dpdk stable <stable@dpdk.org> Subject: [dpdk-stable] patch 'power: rename public structs' has been queued to stable release 20.11.1 Date: Fri, 5 Feb 2021 11:18:06 +0000 Message-ID: <20210205111920.1272063-200-luca.boccassi@gmail.com> (raw) In-Reply-To: <20210205111920.1272063-1-luca.boccassi@gmail.com> Hi, FYI, your patch has been queued to stable release 20.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 02/07/21. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/bluca/dpdk-stable This queued commit can be viewed at: https://github.com/bluca/dpdk-stable/commit/9bb069b024c61fb995069bce8643392ca958d73f Thanks. Luca Boccassi --- From 9bb069b024c61fb995069bce8643392ca958d73f Mon Sep 17 00:00:00 2001 From: Bruce Richardson <bruce.richardson@intel.com> Date: Thu, 21 Jan 2021 17:21:58 +0000 Subject: [PATCH] power: rename public structs [ upstream commit bd5b6720fe6588ff2d48c70879f355243466f155 ] Rename the public structs to have an rte_power_ prefix. Fixes: 210c383e247b ("power: packet format for vm power management") Fixes: cd0d5547e873 ("power: vm communication channels in guest") Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Signed-off-by: David Hunt <david.hunt@intel.com> Acked-by: Anatoly Burakov <anatoly.burakov@intel.com> --- examples/vm_power_manager/channel_monitor.c | 33 ++++++------ examples/vm_power_manager/channel_monitor.h | 2 +- examples/vm_power_manager/guest_cli/main.c | 2 +- .../guest_cli/vm_power_cli_guest.c | 38 +++++++------- .../guest_cli/vm_power_cli_guest.h | 4 +- lib/librte_power/guest_channel.c | 7 +-- lib/librte_power/guest_channel.h | 7 +-- lib/librte_power/power_kvm_vm.c | 2 +- lib/librte_power/rte_power_guest_channel.h | 51 +++++++++---------- 9 files changed, 73 insertions(+), 73 deletions(-) diff --git a/examples/vm_power_manager/channel_monitor.c b/examples/vm_power_manager/channel_monitor.c index 08306105d3..1b6041b6f8 100644 --- a/examples/vm_power_manager/channel_monitor.c +++ b/examples/vm_power_manager/channel_monitor.c @@ -108,7 +108,7 @@ str_to_ether_addr(const char *a, struct rte_ether_addr *ether_addr) } static int -set_policy_mac(struct channel_packet *pkt, int idx, char *mac) +set_policy_mac(struct rte_power_channel_packet *pkt, int idx, char *mac) { union PFID pfid; int ret; @@ -165,7 +165,7 @@ get_resource_id_from_vmname(const char *vm_name) } static int -parse_json_to_pkt(json_t *element, struct channel_packet *pkt, +parse_json_to_pkt(json_t *element, struct rte_power_channel_packet *pkt, const char *vm_name) { const char *key; @@ -173,7 +173,7 @@ parse_json_to_pkt(json_t *element, struct channel_packet *pkt, int ret; int resource_id; - memset(pkt, 0, sizeof(struct channel_packet)); + memset(pkt, 0, sizeof(*pkt)); pkt->nb_mac_to_monitor = 0; pkt->t_boost_status.tbEnabled = false; @@ -463,7 +463,7 @@ get_pfid(struct policy *pol) } static int -update_policy(struct channel_packet *pkt) +update_policy(struct rte_power_channel_packet *pkt) { unsigned int updated = 0; @@ -512,7 +512,7 @@ update_policy(struct channel_packet *pkt) } static int -remove_policy(struct channel_packet *pkt __rte_unused) +remove_policy(struct rte_power_channel_packet *pkt __rte_unused) { unsigned int i; @@ -673,7 +673,7 @@ static void apply_policy(struct policy *pol) { - struct channel_packet *pkt = &pol->pkt; + struct rte_power_channel_packet *pkt = &pol->pkt; /*Check policy to use*/ if (pkt->policy_to_use == TRAFFIC) @@ -715,12 +715,12 @@ write_binary_packet(void *buffer, } static int -send_freq(struct channel_packet *pkt, +send_freq(struct rte_power_channel_packet *pkt, struct channel_info *chan_info, bool freq_list) { unsigned int vcore_id = pkt->resource_id; - struct channel_packet_freq_list channel_pkt_freq_list; + struct rte_power_channel_packet_freq_list channel_pkt_freq_list; struct vm_info info; if (get_info_vm(pkt->vm_name, &info) != 0) @@ -751,12 +751,12 @@ send_freq(struct channel_packet *pkt, } static int -send_capabilities(struct channel_packet *pkt, +send_capabilities(struct rte_power_channel_packet *pkt, struct channel_info *chan_info, bool list_requested) { unsigned int vcore_id = pkt->resource_id; - struct channel_packet_caps_list channel_pkt_caps_list; + struct rte_power_channel_packet_caps_list channel_pkt_caps_list; struct vm_info info; struct rte_power_core_capabilities caps; int ret; @@ -805,18 +805,19 @@ send_capabilities(struct channel_packet *pkt, } static int -send_ack_for_received_cmd(struct channel_packet *pkt, +send_ack_for_received_cmd(struct rte_power_channel_packet *pkt, struct channel_info *chan_info, uint32_t command) { pkt->command = command; return write_binary_packet(pkt, - sizeof(struct channel_packet), + sizeof(*pkt), chan_info); } static int -process_request(struct channel_packet *pkt, struct channel_info *chan_info) +process_request(struct rte_power_channel_packet *pkt, + struct channel_info *chan_info) { int ret; @@ -988,7 +989,7 @@ channel_monitor_init(void) static void read_binary_packet(struct channel_info *chan_info) { - struct channel_packet pkt; + struct rte_power_channel_packet pkt; void *buffer = &pkt; int buffer_len = sizeof(pkt); int n_bytes, err = 0; @@ -1019,7 +1020,7 @@ read_binary_packet(struct channel_info *chan_info) static void read_json_packet(struct channel_info *chan_info) { - struct channel_packet pkt; + struct rte_power_channel_packet pkt; int n_bytes, ret; json_t *root; json_error_t error; @@ -1063,7 +1064,7 @@ read_json_packet(struct channel_info *chan_info) /* * Because our data is now in the json * object, we can overwrite the pkt - * with a channel_packet struct, using + * with a rte_power_channel_packet struct, using * parse_json_to_pkt() */ ret = parse_json_to_pkt(root, &pkt, resource_name); diff --git a/examples/vm_power_manager/channel_monitor.h b/examples/vm_power_manager/channel_monitor.h index 4a526ff670..0ca6207ad8 100644 --- a/examples/vm_power_manager/channel_monitor.h +++ b/examples/vm_power_manager/channel_monitor.h @@ -18,7 +18,7 @@ struct core_share { }; struct policy { - struct channel_packet pkt; + struct rte_power_channel_packet pkt; uint32_t pfid[MAX_VFS]; uint32_t port[MAX_VFS]; unsigned int enabled; diff --git a/examples/vm_power_manager/guest_cli/main.c b/examples/vm_power_manager/guest_cli/main.c index f63b3c988a..fc7a8c30af 100644 --- a/examples/vm_power_manager/guest_cli/main.c +++ b/examples/vm_power_manager/guest_cli/main.c @@ -48,7 +48,7 @@ parse_args(int argc, char **argv) { "policy", required_argument, 0, 'o'}, {NULL, 0, 0, 0} }; - struct channel_packet *policy; + struct rte_power_channel_packet *policy; unsigned short int hours[MAX_HOURS]; unsigned short int cores[MAX_VCPU_PER_VM]; unsigned short int ports[MAX_VCPU_PER_VM]; diff --git a/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c b/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c index cf1636e784..125dfeb10a 100644 --- a/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c +++ b/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c @@ -38,9 +38,9 @@ union PFID { uint64_t pfid; }; -static struct channel_packet policy; +static struct rte_power_channel_packet policy; -struct channel_packet * +struct rte_power_channel_packet * get_policy(void) { return &policy; @@ -49,7 +49,7 @@ get_policy(void) int set_policy_mac(int port, int idx) { - struct channel_packet *policy; + struct rte_power_channel_packet *policy; union PFID pfid; int ret; @@ -73,7 +73,7 @@ set_policy_mac(int port, int idx) } int -set_policy_defaults(struct channel_packet *pkt) +set_policy_defaults(struct rte_power_channel_packet *pkt) { int ret; @@ -145,7 +145,7 @@ struct cmd_freq_list_result { }; static int -query_data(struct channel_packet *pkt, unsigned int lcore_id) +query_data(struct rte_power_channel_packet *pkt, unsigned int lcore_id) { int ret; ret = rte_power_guest_channel_send_msg(pkt, lcore_id); @@ -157,13 +157,13 @@ query_data(struct channel_packet *pkt, unsigned int lcore_id) } static int -receive_freq_list(struct channel_packet_freq_list *pkt_freq_list, +receive_freq_list(struct rte_power_channel_packet_freq_list *pkt_freq_list, unsigned int lcore_id) { int ret; ret = rte_power_guest_channel_receive_msg(pkt_freq_list, - sizeof(struct channel_packet_freq_list), + sizeof(*pkt_freq_list), lcore_id); if (ret < 0) { RTE_LOG(ERR, GUEST_CLI, "Error receiving message.\n"); @@ -183,14 +183,14 @@ cmd_query_freq_list_parsed(void *parsed_result, { struct cmd_freq_list_result *res = parsed_result; unsigned int lcore_id; - struct channel_packet_freq_list pkt_freq_list; - struct channel_packet pkt; + struct rte_power_channel_packet_freq_list pkt_freq_list; + struct rte_power_channel_packet pkt; bool query_list = false; int ret; char *ep; - memset(&pkt, 0, sizeof(struct channel_packet)); - memset(&pkt_freq_list, 0, sizeof(struct channel_packet_freq_list)); + memset(&pkt, 0, sizeof(pkt)); + memset(&pkt_freq_list, 0, sizeof(pkt_freq_list)); if (!strcmp(res->cpu_num, "all")) { @@ -267,13 +267,13 @@ struct cmd_query_caps_result { }; static int -receive_capabilities(struct channel_packet_caps_list *pkt_caps_list, +receive_capabilities(struct rte_power_channel_packet_caps_list *pkt_caps_list, unsigned int lcore_id) { int ret; ret = rte_power_guest_channel_receive_msg(pkt_caps_list, - sizeof(struct channel_packet_caps_list), + sizeof(*pkt_caps_list), lcore_id); if (ret < 0) { RTE_LOG(ERR, GUEST_CLI, "Error receiving message.\n"); @@ -293,14 +293,14 @@ cmd_query_caps_list_parsed(void *parsed_result, { struct cmd_query_caps_result *res = parsed_result; unsigned int lcore_id; - struct channel_packet_caps_list pkt_caps_list; - struct channel_packet pkt; + struct rte_power_channel_packet_caps_list pkt_caps_list; + struct rte_power_channel_packet pkt; bool query_list = false; int ret; char *ep; - memset(&pkt, 0, sizeof(struct channel_packet)); - memset(&pkt_caps_list, 0, sizeof(struct channel_packet_caps_list)); + memset(&pkt, 0, sizeof(pkt)); + memset(&pkt_caps_list, 0, sizeof(pkt_caps_list)); if (!strcmp(res->cpu_num, "all")) { @@ -380,7 +380,7 @@ cmdline_parse_inst_t cmd_query_caps_list = { static int check_response_cmd(unsigned int lcore_id, int *result) { - struct channel_packet pkt; + struct rte_power_channel_packet pkt; int ret; ret = rte_power_guest_channel_receive_msg(&pkt, sizeof pkt, lcore_id); @@ -473,7 +473,7 @@ struct cmd_send_policy_result { }; static inline int -send_policy(struct channel_packet *pkt, struct cmdline *cl) +send_policy(struct rte_power_channel_packet *pkt, struct cmdline *cl) { int ret; diff --git a/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h b/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h index 2299d23dce..5d285ca9de 100644 --- a/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h +++ b/examples/vm_power_manager/guest_cli/vm_power_cli_guest.h @@ -11,11 +11,11 @@ extern "C" { #include "rte_power_guest_channel.h" -struct channel_packet *get_policy(void); +struct rte_power_channel_packet *get_policy(void); int set_policy_mac(int port, int idx); -int set_policy_defaults(struct channel_packet *pkt); +int set_policy_defaults(struct rte_power_channel_packet *pkt); void run_cli(__rte_unused void *arg); diff --git a/lib/librte_power/guest_channel.c b/lib/librte_power/guest_channel.c index 4cb5ae1ddf..9eb2f63306 100644 --- a/lib/librte_power/guest_channel.c +++ b/lib/librte_power/guest_channel.c @@ -55,7 +55,7 @@ int guest_channel_host_connect(const char *path, unsigned int lcore_id) { int flags, ret; - struct channel_packet pkt; + struct rte_power_channel_packet pkt; char fd_path[PATH_MAX]; int fd = -1; @@ -119,7 +119,8 @@ error: } int -guest_channel_send_msg(struct channel_packet *pkt, unsigned int lcore_id) +guest_channel_send_msg(struct rte_power_channel_packet *pkt, + unsigned int lcore_id) { int ret, buffer_len = sizeof(*pkt); void *buffer = pkt; @@ -149,7 +150,7 @@ guest_channel_send_msg(struct channel_packet *pkt, unsigned int lcore_id) return 0; } -int rte_power_guest_channel_send_msg(struct channel_packet *pkt, +int rte_power_guest_channel_send_msg(struct rte_power_channel_packet *pkt, unsigned int lcore_id) { return guest_channel_send_msg(pkt, lcore_id); diff --git a/lib/librte_power/guest_channel.h b/lib/librte_power/guest_channel.h index 83186cfbba..a1db4b0580 100644 --- a/lib/librte_power/guest_channel.h +++ b/lib/librte_power/guest_channel.h @@ -63,15 +63,16 @@ void guest_channel_host_disconnect(unsigned int lcore_id); * - Negative on channel not connected. * - errno on write to channel error. */ -int guest_channel_send_msg(struct channel_packet *pkt, unsigned int lcore_id); +int guest_channel_send_msg(struct rte_power_channel_packet *pkt, + unsigned int lcore_id); /** * Read a message contained in pkt over the Virtio-Serial * from the host endpoint. * * @param pkt - * Pointer to channel_packet or - * channel_packet_freq_list struct. + * Pointer to rte_power_channel_packet or + * rte_power_channel_packet_freq_list struct. * * @param pkt_len * Size of expected data packet. diff --git a/lib/librte_power/power_kvm_vm.c b/lib/librte_power/power_kvm_vm.c index 649ebe85c4..9ae438489e 100644 --- a/lib/librte_power/power_kvm_vm.c +++ b/lib/librte_power/power_kvm_vm.c @@ -13,7 +13,7 @@ #define FD_PATH "/dev/virtio-ports/virtio.serial.port.poweragent" -static struct channel_packet pkt[RTE_MAX_LCORE]; +static struct rte_power_channel_packet pkt[RTE_MAX_LCORE]; int power_kvm_vm_check_supported(void) diff --git a/lib/librte_power/rte_power_guest_channel.h b/lib/librte_power/rte_power_guest_channel.h index c500c0cda6..c9ab7bae81 100644 --- a/lib/librte_power/rte_power_guest_channel.h +++ b/lib/librte_power/rte_power_guest_channel.h @@ -11,7 +11,10 @@ extern "C" { #include <stdint.h> #include <stdbool.h> -/* --- Incoming messages --- */ +#define MAX_VFS 10 +#define VM_MAX_NAME_SZ 32 +#define MAX_VCPU_PER_VM 8 +#define HOURS 24 /* Valid Commands */ #define CPU_POWER 1 @@ -19,6 +22,9 @@ extern "C" { #define PKT_POLICY 3 #define PKT_POLICY_REMOVE 4 +#define CORE_TYPE_VIRTUAL 0 +#define CORE_TYPE_PHYSICAL 1 + /* CPU Power Command Scaling */ #define CPU_POWER_SCALE_UP 1 #define CPU_POWER_SCALE_DOWN 2 @@ -43,41 +49,32 @@ extern "C" { #define CPU_POWER_FREQ_LIST 3 #define CPU_POWER_CAPS_LIST 4 -#define HOURS 24 - -#define MAX_VFS 10 -#define VM_MAX_NAME_SZ 32 - -#define MAX_VCPU_PER_VM 8 - -struct t_boost_status { - bool tbEnabled; -}; - -struct timer_profile { +struct rte_power_timer_profile { int busy_hours[HOURS]; int quiet_hours[HOURS]; int hours_to_use_traffic_profile[HOURS]; }; -enum workload {HIGH, MEDIUM, LOW}; -enum policy_to_use { +enum rte_power_workload_level {HIGH, MEDIUM, LOW}; + +enum rte_power_policy { TRAFFIC, TIME, WORKLOAD, BRANCH_RATIO }; -struct traffic { +struct rte_power_traffic_policy { uint32_t min_packet_thresh; uint32_t avg_max_packet_thresh; uint32_t max_max_packet_thresh; }; -#define CORE_TYPE_VIRTUAL 0 -#define CORE_TYPE_PHYSICAL 1 +struct rte_power_turbo_status { + bool tbEnabled; +}; -struct channel_packet { +struct rte_power_channel_packet { uint64_t resource_id; /**< core_num, device */ uint32_t unit; /**< scale down/up/min/max */ uint32_t command; /**< Power, IO, etc */ @@ -85,17 +82,17 @@ struct channel_packet { uint64_t vfid[MAX_VFS]; int nb_mac_to_monitor; - struct traffic traffic_policy; + struct rte_power_traffic_policy traffic_policy; uint8_t vcpu_to_control[MAX_VCPU_PER_VM]; uint8_t num_vcpu; - struct timer_profile timer_policy; + struct rte_power_timer_profile timer_policy; bool core_type; - enum workload workload; - enum policy_to_use policy_to_use; - struct t_boost_status t_boost_status; + enum rte_power_workload_level workload; + enum rte_power_policy policy_to_use; + struct rte_power_turbo_status t_boost_status; }; -struct channel_packet_freq_list { +struct rte_power_channel_packet_freq_list { uint64_t resource_id; /**< core_num, device */ uint32_t unit; /**< scale down/up/min/max */ uint32_t command; /**< Power, IO, etc */ @@ -105,7 +102,7 @@ struct channel_packet_freq_list { uint8_t num_vcpu; }; -struct channel_packet_caps_list { +struct rte_power_channel_packet_caps_list { uint64_t resource_id; /**< core_num, device */ uint32_t unit; /**< scale down/up/min/max */ uint32_t command; /**< Power, IO, etc */ @@ -135,7 +132,7 @@ struct channel_packet_caps_list { * - Negative on error. */ __rte_experimental -int rte_power_guest_channel_send_msg(struct channel_packet *pkt, +int rte_power_guest_channel_send_msg(struct rte_power_channel_packet *pkt, unsigned int lcore_id); /** -- 2.29.2 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2021-02-05 11:18:38.091423149 +0000 +++ 0200-power-rename-public-structs.patch 2021-02-05 11:18:29.158697813 +0000 @@ -1 +1 @@ -From bd5b6720fe6588ff2d48c70879f355243466f155 Mon Sep 17 00:00:00 2001 +From 9bb069b024c61fb995069bce8643392ca958d73f Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit bd5b6720fe6588ff2d48c70879f355243466f155 ] + @@ -10 +11,0 @@ -Cc: stable@dpdk.org
next prev parent reply other threads:[~2021-02-05 11:35 UTC|newest] Thread overview: 312+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-02-05 11:14 [dpdk-stable] patch 'eal/windows: fix build with MinGW-w64 8' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'bus/pci: " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'eal/windows: fix debug build with MinGW' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'eal/windows: fix vfprintf warning with clang' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'license: add licenses for exception cases' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'rib: fix insertion in some " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'bus/pci: fix hardware ID limit on Windows' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'bus/pci: ignore missing NUMA node " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'build: fix plugin load on static build' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'app/flow-perf: simplify objects initialization' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'regex/octeontx2: fix PCI table overflow' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'app/procinfo: fix _filters stats reporting' " luca.boccassi 2021-02-05 11:14 ` [dpdk-stable] patch 'app/procinfo: fix check on xstats-ids' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'app/procinfo: remove useless memset' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'app/procinfo: remove useless assignment' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/pcap: remove local variable shadowing outer one' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bonding: " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/af_xdp: remove useless assignment' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: remove redundant return' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'app/crypto-perf: remove always true condition' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/avp: " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'eal/linux: fix handling of error events from epoll' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'mbuf: add C++ include guard for dynamic fields header' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bonding: fix port id validity check on parsing' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'app/testpmd: fix queue stats mapping configuration' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: remove warnings about inline specifiers' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: fix signed/unsigned mismatch warnings' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: support alternative MAE match fields' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ionic: do minor logging fixups' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix Verbs memory allocation callback' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix shared age action validation' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix memory leak when mapping fails' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: disable end of packet padding for Rx' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/hns3: fix FEC state query' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice: fix outer UDP Tx checksum offload' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix L4 checksum flag' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix global register recovery' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ixgbe: detect failed VF MTU set' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix Rx rings in RSS redirection table' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix VNIC config on Rx queue stop' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: release HWRM lock in error' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: propagate FW command failure to application' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix cleanup on mutex init failure' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix format specifier for unsigned int' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix max rings computation' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix freeing mbuf' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix VNIC RSS configure function' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix PF resource query' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: update MCDI headers for MAE privilege' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'common/sfc_efx/base: check " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/netvsc: ignore unsupported packet on sync command' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/iavf: fix memory leak in large VF' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice: fix outer checksum flags' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix Direct Verbs flow descriptor allocation' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix mbuf freeing in vectorized MPRQ' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/mlx5: fix buffer split offload advertising' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bonding: fix PCI address comparison on non-PCI ports' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix stats counters' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'doc: fix some statements for ice vector PMD' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix VLAN stripping in VF' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ixgbe: fix flex bytes flow director rule' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix Rx bytes statistics' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice: check Rx queue number on RSS init' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice/base: fix tunnel destroy' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/ice/base: fix null pointer dereference' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/iavf: fix queue pairs configuration' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/iavf: fix GTPU UL and DL support for flow director' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/i40e: fix flex payload rule conflict' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: limit Rx representor packets per poll' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix doorbell write ordering' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: fix outer UDP checksum Rx offload capability' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: make offload flags mapping per-ring' " luca.boccassi 2021-02-05 11:15 ` [dpdk-stable] patch 'net/bnxt: set correct checksum status in mbuf' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'app/testpmd: release flows left before port stop' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix tunnel rules validation on VF representor' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix constant array size' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix freeing packet pacing' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix flow action destroy wrapper' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix flow operation wrapper per OS' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: unify operations for all " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix device name size on Windows' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix comparison sign in flow engine' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix shared RSS and mark actions combination' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix VXLAN decap on non-VXLAN flow' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix leak on Rx queue creation failure' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix leak on Tx " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio-user: fix run closing stdin and close callfd' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio-user: fix protocol features advertising' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice/base: fix memory handling' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'doc: fix RSS flow description in i40e guide' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/i40e: fix returned code for RSS hardware failure' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'doc: add vtune profiling config to prog guide' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'build: fix linker flags on Windows' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'lpm: fix vector IPv4 lookup' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/hns3: fix build with SVE' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/octeontx: " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'common/octeontx2: " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/cxgbe: accept VLAN flow items without ethertype' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio: add missing backend features negotiation' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/virtio: fix memory init with vDPA backend' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/iavf: fix conflicting RSS combination rules' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice: fix RSS lookup table initialization' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice: disable IPv4 checksum offload in vector Tx' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/ice: enlarge Rx queue rearm threshold to 64' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/i40e: add null input checks' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/bnxt: fix lock init and destroy' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/bnxt: fix error handling in device start' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mvneta: check allocation in Rx queue flush' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/octeontx2: fix corruption in segments list' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix hairpin flow split decision' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'common/mlx5: fix completion queue entry size configuration' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: remove CQE padding device argument' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/mlx5: fix leak on ASO SQ creation failure' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'common/mlx5: fix pointer cast on Windows' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'ip_frag: remove padding length of fragment' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'doc: fix figure numbering in graph guide' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'bus/pci: fix build with Windows SDK >= 10.0.20253' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'service: propagate init error in EAL' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'test/mcslock: remove unneeded per lcore copy' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'eal/windows: fix C++ compatibility' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'test/rwlock: fix spelling and missing whitespace' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'test: fix terminal settings on exit' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'test: fix buffer overflow in Tx burst' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'fbarray: fix overlap check' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'examples/l3fwd: remove limitation on Tx queue count' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'regex/mlx5: fix memory rule alignment' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'regex/mlx5: fix support for group id' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'regex/mlx5: fix number of supported queues' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'crypto/qat: fix access to uninitialized variable' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'app/crypto-perf: fix spelling in output' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/i40e: fix X722 for 802.1ad frames ability' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/hns3: fix interception with flow director' " luca.boccassi 2021-02-05 11:16 ` [dpdk-stable] patch 'net/hns3: fix xstats with id and names' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix error code in xstats' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix Rx/Tx errors stats' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix crash with multi-process' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/qede: fix promiscuous enable' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'app/testpmd: fix start index for showing FEC array' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: fix MPORT related byte order handling' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: fix MAE match spec validation helper' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: fix MAE match spec class comparison API' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: enhance field ID check in field set " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'ethdev: fix max Rx packet length check' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'app/testpmd: fix max Rx packet length for VLAN packets' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/dpaa: fix jumbo frame flag condition for MTU set' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/dpaa2: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/e1000: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/i40e: fix jumbo frame flag condition' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/iavf: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/ice: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/ipn3ke: fix jumbo frame flag condition for MTU set' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/octeontx: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/octeontx2: fix jumbo frame flag condition for MTU' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/qede: fix jumbo frame flag condition for MTU set' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/sfc: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/thunderx: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/ixgbe: fix jumbo frame flag condition' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/cxgbe: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/axgbe: fix jumbo frame flag condition for MTU set' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/enetc: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hinic: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/nfp: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/liquidio: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hinic: restore vectorised code' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'ethdev: avoid blocking telemetry for link status' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'app/testpmd: fix IP checksum calculation' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/ionic: fix link speed and autonegotiation' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix VF query link status in dev init' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: use new opcode for clearing hardware resource' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix register length when dumping registers' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix data overwriting during register dump' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/hns3: fix dump register out of range' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'common/sfc_efx/base: apply mask to value on match field set' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/mlx5: fix unnecessary checking for RSS action' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net/ixgbe: fix configuration of max frame size' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'build: provide suitable error for "both" libraries option' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'eal: fix reciprocal header include' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'telemetry: fix missing " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'ethdev: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'net: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'mbuf: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'bitrate: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'rib: fix missing header includes' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'vhost: " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'ipsec: fix missing header include' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'fib: fix missing header includes' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'table: fix missing header include' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'pipeline: fix missing header includes' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'metrics: fix variable declaration in header' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'node: fix missing header include' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'app: fix build with extra include paths' " luca.boccassi 2021-02-05 11:17 ` [dpdk-stable] patch 'examples/pipeline: fix VXLAN script permission' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'build: force pkg-config for dependency detection' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/procinfo: fix security context info' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'eal/arm: fix debug build with gcc for 128-bit atomics' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'test/distributor: fix return buffer queue overload' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'power: create guest channel public header file' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'power: make channel message functions public' " luca.boccassi 2021-02-05 11:18 ` luca.boccassi [this message] 2021-02-05 11:18 ` [dpdk-stable] patch 'power: rename constants' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'power: export guest channel header file' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'power: clean up includes' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'test/ring: reduce duration of performance tests' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'lib: fix doxygen for parameters of function pointers' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'examples/pipeline: fix CLI parsing crash' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/eventdev: adjust event count order for pipeline test' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/eventdev: remove redundant enqueue in burst Tx' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'examples/eventdev: check CPU core enabling' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'examples/eventdev: add info output for main core' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'examples/eventdev: move ethdev stop to the end' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/eventdev: fix SMP barrier in performance test' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'test/event_crypto: set cipher operation in transform' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/crypto-perf: fix latency CSV output' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/crypto-perf: fix CSV output format' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'crypto/qat: fix digest in buffer' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'test/ipsec: fix result code for not supported' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'crypto/dpaa2_sec: fix memory allocation check' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'eal: fix MCS lock header include' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'eal: fix internal ABI tag with clang' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'power: fix missing header includes' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'rib: fix missing header include' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/testpmd: fix packets dump overlapping' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/e1000: fix flow control mode setting' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix flow split combined with counter' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix flow split combined with age action' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx4: fix device detach' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx4: fix handling of probing failure' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: fix FW version log' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: fix packet type index calculation' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: refactor init/uninit' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/ice: drain out DCF AdminQ command queue' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'app/testpmd: fix key for RSS flow rule' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/bnxt: fix null termination of Rx mbuf chain' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/octeontx2: fix PF flow action for Tx' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix mark action in active tunnel offload' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix drop action in tunnel offload mode' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix flow tag decompression' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: refuse empty VLAN in flow pattern' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'doc: update flow mark action in mlx5 guide' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix multi-process port ID' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix crash on secondary process port close' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx5: fix port attach in secondary process' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/mlx4: " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/iavf: fix symmetric flow rule creation' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/ixgbe: disable NFS filtering' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/sfc: fix generic byte statistics to exclude FCS bytes' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'ethdev: fix close failure handling' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/virtio: fix getting old status on reconnect' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'vdpa/mlx5: fix configuration mutex cleanup' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/ionic: allow separate L3 and L4 checksum offload' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/ionic: fix up function attribute tags' " luca.boccassi 2021-02-05 11:18 ` [dpdk-stable] patch 'net/ionic: fix address handling in Tx' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: fix stack corruption' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: remove debug log on fast-path' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: remove VLAN flush' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: remove CRC length from MRU validation' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/mvpp2: fix frame size checking' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/mlx5: fix count actions query in sample flow' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/mlx5: fix wire vport hint' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: fix memory leak on secondary process exit' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: fix interrupt resources in Rx interrupt mode' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: adjust some comments' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/hns3: adjust format specifier for enum' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'app/testpmd: fix setting maximum packet length' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'app/testpmd: avoid exit without terminal restore' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/nfp: read chip model from PluDevice register' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: flush Rx buffers memory pool cache' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: fix Tx doorbell statistics' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: validate Rx req ID upon acquiring descriptor' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: fix Tx SQ free space assessment' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/ena: prevent double doorbell' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'net/iavf: fix vector mapping with queue' " luca.boccassi 2021-02-05 11:19 ` [dpdk-stable] patch 'app/testpmd: fix queue reconfig request on Rx split update' " luca.boccassi 2021-02-09 10:34 ` [dpdk-stable] patch 'net/bnxt: fix Rx completion ring size calculation' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/mlx5: fix shared RSS translation and cleanup' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'doc: fix QinQ flow rules in testpmd guide' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/enic: fix filter type used for flow API' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'doc: add FEC to NIC features' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'doc: fix product link in hns3 guide' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/sfc: fix TSO and checksum offloads for EF10' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/mlx5: check FW miniCQE format capabilities' " luca.boccassi 2021-02-09 10:42 ` Luca Boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/mlx5: fix miniCQE configuration for Verbs' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'vhost: fix vid allocation race' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/octeontx: fix max Rx packet length' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'doc: fix supported feature table in mlx5 guide' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/mlx5: fix counter and age flow action validation' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'common/mlx5: fix storing synced MAC to internal table' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/hns3: fix link status change from firmware' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/hns3: fix RSS indirection table size' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/hns3: remove MPLS from supported flow items' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/hns3: fix flow director rule residue on malloc failure' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/hns3: fix firmware exceptions by concurrent commands' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/hns3: fix VF reset on mailbox failure' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/hns3: validate requested maximum Rx frame length' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'app/testpmd: support shared age action query' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/pcap: fix byte stats for drop Tx' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/pcap: fix infinite Rx with large files' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/mlx5: fix shared RSS capability check' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/mlx5: validate hash Rx queue pointer' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'net/enic: fix filter log message' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'event/dlb: fix accessing uninitialized variables' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'eventdev: fix a return value comment' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'mempool: fix panic on dump or audit' " luca.boccassi 2021-02-09 10:35 ` [dpdk-stable] patch 'mbuf: remove unneeded atomic generic header include' " luca.boccassi 2021-02-12 23:40 ` [dpdk-stable] patch 'eal: fix automatic loading of drivers as shared libs' " luca.boccassi 2021-02-12 23:40 ` [dpdk-stable] patch 'net/ixgbe: fix UDP zero checksum on x86' " luca.boccassi 2021-02-12 23:40 ` [dpdk-stable] patch 'vhost: fix packed ring dequeue offloading' " luca.boccassi 2021-02-12 23:40 ` [dpdk-stable] patch 'doc: fix mark action zero value in mlx5 guide' " luca.boccassi 2021-02-12 23:40 ` [dpdk-stable] patch 'app/testpmd: fix help of metering commands' " luca.boccassi 2021-02-12 23:40 ` [dpdk-stable] patch 'usertools: fix binding built-in kernel driver' " luca.boccassi
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=20210205111920.1272063-200-luca.boccassi@gmail.com \ --to=luca.boccassi@gmail.com \ --cc=anatoly.burakov@intel.com \ --cc=bruce.richardson@intel.com \ --cc=david.hunt@intel.com \ --cc=stable@dpdk.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
patches for DPDK stable branches This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/stable/0 stable/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 stable stable/ https://inbox.dpdk.org/stable \ stable@dpdk.org public-inbox-index stable Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.stable AGPL code for this site: git clone https://public-inbox.org/public-inbox.git