patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Igor Romanov <romigor@oktetlabs.ru>
To: Luca Boccassi <luca.boccassi@gmail.com>
Cc: Andrew Rybchenko <arybchenko@solarflare.com>,
	dpdk stable <stable@dpdk.org>
Subject: Re: [dpdk-stable] patch 'net/sfc/base: handle manual and auto filter clashes in EF10' has been queued to stable release 19.11.3
Date: Wed, 20 May 2020 15:12:51 +0300	[thread overview]
Message-ID: <e1f37cac-9529-d0f0-9683-deba593363ab@oktetlabs.ru> (raw)
In-Reply-To: <a67f819d6542dbf0080543223bcb80695a8cf1c2.camel@gmail.com>

No, it is not present in master. Should I send it separately?

On 5/20/20 2:57 PM, Luca Boccassi wrote:
> The attached change does not seem to be present in master?
>
> On Wed, 2020-05-20 at 12:53 +0300, Igor Romanov wrote:
>> Hi!
>>
>> The patch has an issue that is fixed in the attached patch.
>>
>> On 5/19/20 3:53 PM, luca.boccassi@gmail.com wrote:
>>> Hi,
>>>
>>> FYI, your patch has been queued to stable release 19.11.3
>>>
>>> Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
>>> It will be pushed if I get no objections before 05/21/20. 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.
>>>
>>> Thanks.
>>>
>>> Luca Boccassi
>>>
>>> ---
>>>>  From 8ea2ea8fe40c8a13bca536bcb4683d9225cd0ea2 Mon Sep 17 00:00:00 2001
>>> From: Igor Romanov <igor.romanov@oktetlabs.ru>
>>> Date: Tue, 10 Mar 2020 09:48:39 +0000
>>> Subject: [PATCH] net/sfc/base: handle manual and auto filter clashes in EF10
>>>
>>> [ upstream commit 585c22edb29cc3cfdb3628c41effd8ff3b75f224 ]
>>>
>>> Make user filters a priority in EF10 datapath. When a manual
>>> filter with a specification that is equal to an existing auto
>>> filter is inserted, the manual filter:
>>> - replaces auto filter if the specification is exclusive;
>>> - is inserted along existing auto filter otherwise;
>>>
>>> In the first case the auto filter that was replaced is saved.
>>> This saved filter can be updated on filter reconfiguration and
>>> is restored on the manual filter removal.
>>>
>>> Fixes: e7cd430c864f ("net/sfc/base: import SFN7xxx family support")
>>>
>>> Signed-off-by: Igor Romanov <igor.romanov@oktetlabs.ru>
>>> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
>>> ---
>>>    drivers/net/sfc/base/ef10_filter.c | 519 ++++++++++++++++++++++-------
>>>    drivers/net/sfc/base/ef10_impl.h   |   4 +-
>>>    drivers/net/sfc/base/efx.h         |   7 +
>>>    drivers/net/sfc/base/efx_filter.c  |  17 +-
>>>    drivers/net/sfc/base/efx_impl.h    |  21 +-
>>>    5 files changed, 437 insertions(+), 131 deletions(-)
>>>
>>> diff --git a/drivers/net/sfc/base/ef10_filter.c b/drivers/net/sfc/base/ef10_filter.c
>>> index 5578765ab3..12802a3d13 100644
>>> --- a/drivers/net/sfc/base/ef10_filter.c
>>> +++ b/drivers/net/sfc/base/ef10_filter.c
>>> @@ -590,6 +590,231 @@ fail1:
>>>    	return (rc);
>>>    }
>>>    
>>> +enum ef10_filter_add_action_e {
>>> +	/* Insert a new filter */
>>> +	EF10_FILTER_ADD_NEW,
>>> +	/*
>>> +	 * Replace old filter with a new, overriding the old one
>>> +	 * if it has lower priority.
>>> +	 */
>>> +	EF10_FILTER_ADD_REPLACE,
>>> +	/* Store new, lower priority filter as overridden by old filter */
>>> +	EF10_FILTER_ADD_STORE,
>>> +	/* Special case for AUTO filters, remove AUTO_OLD flag */
>>> +	EF10_FILTER_ADD_REFRESH,
>>> +};
>>> +
>>> +static	__checkReturn	efx_rc_t
>>> +ef10_filter_add_lookup_equal_spec(
>>> +	__in		efx_filter_spec_t *spec,
>>> +	__in		efx_filter_spec_t *probe_spec,
>>> +	__in		efx_filter_replacement_policy_t policy,
>>> +	__out		boolean_t *found)
>>> +{
>>> +	efx_rc_t rc;
>>> +
>>> +	/* Refreshing AUTO filter */
>>> +	if (spec->efs_priority == EFX_FILTER_PRI_AUTO &&
>>> +	    probe_spec->efs_priority == EFX_FILTER_PRI_AUTO) {
>>> +		*found = B_TRUE;
>>> +		return (0);
>>> +	}
>>> +
>>> +	/*
>>> +	 * With exclusive filters, higher priority ones
>>> +	 * override lower priority ones, and lower priority
>>> +	 * ones are stored in case the higher priority one
>>> +	 * is removed.
>>> +	 */
>>> +	if (ef10_filter_is_exclusive(spec)) {
>>> +		switch (policy) {
>>> +		case EFX_FILTER_REPLACEMENT_HIGHER_OR_EQUAL_PRIORITY:
>>> +			if (spec->efs_priority == probe_spec->efs_priority) {
>>> +				*found = B_TRUE;
>>> +				break;
>>> +			}
>>> +			/* Fall-through */
>>> +		case EFX_FILTER_REPLACEMENT_HIGHER_PRIORITY:
>>> +			if (spec->efs_priority > probe_spec->efs_priority) {
>>> +				*found = B_TRUE;
>>> +				break;
>>> +			}
>>> +			/* Fall-through */
>>> +		case EFX_FILTER_REPLACEMENT_NEVER:
>>> +			/*
>>> +			 * Lower priority filter needs to be
>>> +			 * stored. It does *not* replace the
>>> +			 * old one. That is why EEXIST is not
>>> +			 * returned in that case.
>>> +			 */
>>> +			if (spec->efs_priority < probe_spec->efs_priority) {
>>> +				*found = B_TRUE;
>>> +				break;
>>> +			} else {
>>> +				rc = EEXIST;
>>> +				goto fail1;
>>> +			}
>>> +		default:
>>> +			EFSYS_ASSERT(0);
>>> +			rc = EEXIST;
>>> +			goto fail2;
>>> +		}
>>> +	} else {
>>> +		*found = B_FALSE;
>>> +	}
>>> +
>>> +	return (0);
>>> +
>>> +fail2:
>>> +	EFSYS_PROBE(fail2);
>>> +
>>> +fail1:
>>> +	EFSYS_PROBE1(fail1, efx_rc_t, rc);
>>> +
>>> +	return (rc);
>>> +}
>>> +
>>> +
>>> +static			void
>>> +ef10_filter_add_select_action(
>>> +	__in		efx_filter_spec_t *saved_spec,
>>> +	__in		efx_filter_spec_t *spec,
>>> +	__out		enum ef10_filter_add_action_e *action,
>>> +	__out		efx_filter_spec_t **overridden_spec)
>>> +{
>>> +	efx_filter_spec_t *overridden = NULL;
>>> +
>>> +	if (saved_spec == NULL) {
>>> +		*action = EF10_FILTER_ADD_NEW;
>>> +	} else if (ef10_filter_is_exclusive(spec) == B_FALSE) {
>>> +		/*
>>> +		 * Non-exclusive filters are always stored in separate entries
>>> +		 * in the table. The only case involving a saved spec is
>>> +		 * refreshing an AUTO filter.
>>> +		 */
>>> +		EFSYS_ASSERT(saved_spec->efs_overridden_spec == NULL);
>>> +		EFSYS_ASSERT(spec->efs_priority == EFX_FILTER_PRI_AUTO);
>>> +		EFSYS_ASSERT(saved_spec->efs_priority == EFX_FILTER_PRI_AUTO);
>>> +		*action = EF10_FILTER_ADD_REFRESH;
>>> +	} else {
>>> +		/* Exclusive filters stored in the same entry */
>>> +		if (spec->efs_priority > saved_spec->efs_priority) {
>>> +			/*
>>> +			 * Insert a high priority filter over a lower priority
>>> +			 * one. Only two priority levels are implemented, so
>>> +			 * there must not already be an overridden filter.
>>> +			 */
>>> +			EFX_STATIC_ASSERT(EFX_FILTER_NPRI == 2);
>>> +			EFSYS_ASSERT(saved_spec->efs_overridden_spec == NULL);
>>> +			overridden = saved_spec;
>>> +			*action = EF10_FILTER_ADD_REPLACE;
>>> +		} else if (spec->efs_priority == saved_spec->efs_priority) {
>>> +			/* Replace in-place or refresh an existing filter */
>>> +			if (spec->efs_priority == EFX_FILTER_PRI_AUTO)
>>> +				*action = EF10_FILTER_ADD_REFRESH;
>>> +			else
>>> +				*action = EF10_FILTER_ADD_REPLACE;
>>> +		} else {
>>> +			/*
>>> +			 * Insert a lower priority filter, storing it in case
>>> +			 * the higher priority filter is removed.
>>> +			 *
>>> +			 * Currently there are only two priority levels, so this
>>> +			 * must be an AUTO filter.
>>> +			 */
>>> +			EFX_STATIC_ASSERT(EFX_FILTER_NPRI == 2);
>>> +			EFSYS_ASSERT(spec->efs_priority == EFX_FILTER_PRI_AUTO);
>>> +			if (saved_spec->efs_overridden_spec != NULL) {
>>> +				*action = EF10_FILTER_ADD_REFRESH;
>>> +			} else {
>>> +				overridden = spec;
>>> +				*action = EF10_FILTER_ADD_STORE;
>>> +			}
>>> +		}
>>> +	}
>>> +
>>> +	*overridden_spec = overridden;
>>> +}
>>> +
>>> +static	__checkReturn	efx_rc_t
>>> +ef10_filter_add_execute_action(
>>> +	__in		efx_nic_t *enp,
>>> +	__in		efx_filter_spec_t *saved_spec,
>>> +	__in		efx_filter_spec_t *spec,
>>> +	__in		efx_filter_spec_t *overridden_spec,
>>> +	__in		enum ef10_filter_add_action_e action,
>>> +	__in		int ins_index)
>>> +{
>>> +	ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
>>> +	efsys_lock_state_t state;
>>> +	efx_rc_t rc;
>>> +
>>> +	EFSYS_LOCK(enp->en_eslp, state);
>>> +
>>> +	if (action == EF10_FILTER_ADD_REFRESH) {
>>> +		ef10_filter_set_entry_not_auto_old(eftp, ins_index);
>>> +		goto out_unlock;
>>> +	} else if (action == EF10_FILTER_ADD_STORE) {
>>> +		EFSYS_ASSERT(overridden_spec != NULL);
>>> +		saved_spec->efs_overridden_spec = overridden_spec;
>>> +		goto out_unlock;
>>> +	}
>>> +
>>> +	EFSYS_UNLOCK(enp->en_eslp, state);
>>> +
>>> +	switch (action) {
>>> +	case EF10_FILTER_ADD_REPLACE:
>>> +		/*
>>> +		 * On replacing the filter handle may change after a
>>> +		 * successful replace operation.
>>> +		 */
>>> +		rc = efx_mcdi_filter_op_add(enp, spec,
>>> +		    MC_CMD_FILTER_OP_IN_OP_REPLACE,
>>> +		    &eftp->eft_entry[ins_index].efe_handle);
>>> +		break;
>>> +	case EF10_FILTER_ADD_NEW:
>>> +		if (ef10_filter_is_exclusive(spec)) {
>>> +			rc = efx_mcdi_filter_op_add(enp, spec,
>>> +			    MC_CMD_FILTER_OP_IN_OP_INSERT,
>>> +			    &eftp->eft_entry[ins_index].efe_handle);
>>> +		} else {
>>> +			rc = efx_mcdi_filter_op_add(enp, spec,
>>> +			    MC_CMD_FILTER_OP_IN_OP_SUBSCRIBE,
>>> +			    &eftp->eft_entry[ins_index].efe_handle);
>>> +		}
>>> +		break;
>>> +	default:
>>> +		rc = EINVAL;
>>> +		EFSYS_ASSERT(0);
>>> +		break;
>>> +	}
>>> +	if (rc != 0)
>>> +		goto fail1;
>>> +
>>> +	EFSYS_LOCK(enp->en_eslp, state);
>>> +
>>> +	if (action == EF10_FILTER_ADD_REPLACE) {
>>> +		/* Update the fields that may differ */
>>> +		saved_spec->efs_priority = spec->efs_priority;
>>> +		saved_spec->efs_flags = spec->efs_flags;
>>> +		saved_spec->efs_rss_context = spec->efs_rss_context;
>>> +		saved_spec->efs_dmaq_id = spec->efs_dmaq_id;
>>> +
>>> +		if (overridden_spec != NULL)
>>> +			saved_spec->efs_overridden_spec = overridden_spec;
>>> +	}
>>> +
>>> +out_unlock:
>>> +	EFSYS_UNLOCK(enp->en_eslp, state);
>>> +
>>> +	return (0);
>>> +
>>> +fail1:
>>> +	EFSYS_PROBE1(fail1, efx_rc_t, rc);
>>> +
>>> +	return (rc);
>>> +}
>>> +
>>>    /*
>>>     * An arbitrary search limit for the software hash table. As per the linux net
>>>     * driver.
>>> @@ -600,22 +825,24 @@ static	__checkReturn	efx_rc_t
>>>    ef10_filter_add_internal(
>>>    	__in		efx_nic_t *enp,
>>>    	__inout		efx_filter_spec_t *spec,
>>> -	__in		boolean_t may_replace,
>>> +	__in		efx_filter_replacement_policy_t policy,
>>>    	__out_opt	uint32_t *filter_id)
>>>    {
>>>    	efx_rc_t rc;
>>>    	ef10_filter_table_t *eftp = enp->en_filter.ef_ef10_filter_table;
>>> +	enum ef10_filter_add_action_e action;
>>> +	efx_filter_spec_t *overridden_spec = NULL;
>>>    	efx_filter_spec_t *saved_spec;
>>>    	uint32_t hash;
>>>    	unsigned int depth;
>>>    	int ins_index;
>>> -	boolean_t replacing = B_FALSE;
>>> -	unsigned int i;
>>>    	efsys_lock_state_t state;
>>>    	boolean_t locked = B_FALSE;
>>>    
>>>    	EFSYS_ASSERT(EFX_FAMILY_IS_EF10(enp));
>>>    
>>> +	EFSYS_ASSERT(spec->efs_overridden_spec == NULL);
>>> +
>>>    	hash = ef10_filter_hash(spec);
>>>    
>>>    	/*
>>> @@ -635,35 +862,33 @@ retry:
>>>    	ins_index = -1;
>>>    
>>>    	for (depth = 1; depth <= EF10_FILTER_SEARCH_LIMIT; depth++) {
>>> -		i = (hash + depth) & (EFX_EF10_FILTER_TBL_ROWS - 1);
>>> -		saved_spec = ef10_filter_entry_spec(eftp, i);
>>> +		unsigned int probe_index;
>>> +		efx_filter_spec_t *probe_spec;
>>>    
>>> -		if (saved_spec == NULL) {
>>> +		probe_index = (hash + depth) & (EFX_EF10_FILTER_TBL_ROWS - 1);
>>> +		probe_spec = ef10_filter_entry_spec(eftp, probe_index);
>>> +
>>> +		if (probe_spec == NULL) {
>>>    			if (ins_index < 0)
>>> -				ins_index = i;
>>> -		} else if (ef10_filter_equal(spec, saved_spec)) {
>>> -			if (ef10_filter_entry_is_busy(eftp, i)) {
>>> +				ins_index = probe_index;
>>> +		} else if (ef10_filter_equal(spec, probe_spec)) {
>>> +			boolean_t found;
>>> +
>>> +			if (ef10_filter_entry_is_busy(eftp, probe_index)) {
>>>    				EFSYS_UNLOCK(enp->en_eslp, state);
>>>    				locked = B_FALSE;
>>>    				goto retry;
>>>    			}
>>>    
>>> -			if (saved_spec->efs_priority == EFX_FILTER_PRI_AUTO) {
>>> -				ins_index = i;
>>> -				goto found;
>>> -			}
>>> +			rc = ef10_filter_add_lookup_equal_spec(spec,
>>> +			    probe_spec, policy, &found);
>>> +			if (rc != 0)
>>> +				goto fail1;
>>>    
>>> -			if (ef10_filter_is_exclusive(spec)) {
>>> -				if (may_replace) {
>>> -					ins_index = i;
>>> -					goto found;
>>> -				} else {
>>> -					rc = EEXIST;
>>> -					goto fail1;
>>> -				}
>>> +			if (found != B_FALSE) {
>>> +				ins_index = probe_index;
>>> +				break;
>>>    			}
>>> -
>>> -			/* Leave existing */
>>>    		}
>>>    	}
>>>    
>>> @@ -676,93 +901,90 @@ retry:
>>>    		goto fail2;
>>>    	}
>>>    
>>> -found:
>>>    	/*
>>> -	 * Create a software table entry if necessary, and mark it
>>> -	 * busy.  We might yet fail to insert, but any attempt to
>>> -	 * insert a conflicting filter while we're waiting for the
>>> -	 * firmware must find the busy entry.
>>> +	 * Mark software table entry busy. We might yet fail to insert,
>>> +	 * but any attempt to insert a conflicting filter while we're
>>> +	 * waiting for the firmware must find the busy entry.
>>>    	 */
>>> +	ef10_filter_set_entry_busy(eftp, ins_index);
>>> +
>>>    	saved_spec = ef10_filter_entry_spec(eftp, ins_index);
>>> -	if (saved_spec) {
>>> -		if (saved_spec->efs_priority == EFX_FILTER_PRI_AUTO) {
>>> -			/* This is a filter we are refreshing */
>>> -			ef10_filter_set_entry_not_auto_old(eftp, ins_index);
>>> -			goto out_unlock;
>>> +	ef10_filter_add_select_action(saved_spec, spec, &action,
>>> +	    &overridden_spec);
>>>    
>>> -		}
>>> -		replacing = B_TRUE;
>>> -	} else {
>>> -		EFSYS_KMEM_ALLOC(enp->en_esip, sizeof (*spec), saved_spec);
>>> -		if (!saved_spec) {
>>> +	/*
>>> +	 * Allocate a new filter if found entry is empty or
>>> +	 * a filter should be overridden.
>>> +	 */
>>> +	if (overridden_spec != NULL || saved_spec == NULL) {
>>> +		efx_filter_spec_t *new_spec;
>>> +
>>> +		EFSYS_UNLOCK(enp->en_eslp, state);
>>> +		locked = B_FALSE;
>>> +
>>> +		EFSYS_KMEM_ALLOC(enp->en_esip, sizeof (*new_spec), new_spec);
>>> +		if (new_spec == NULL) {
>>>    			rc = ENOMEM;
>>> +			overridden_spec = NULL;
>>>    			goto fail3;
>>>    		}
>>> -		*saved_spec = *spec;
>>> -		ef10_filter_set_entry(eftp, ins_index, saved_spec);
>>> +
>>> +		EFSYS_LOCK(enp->en_eslp, state);
>>> +		locked = B_TRUE;
>>> +
>>> +		if (saved_spec == NULL) {
>>> +			*new_spec = *spec;
>>> +			ef10_filter_set_entry(eftp, ins_index, new_spec);
>>> +		} else {
>>> +			*new_spec = *overridden_spec;
>>> +			overridden_spec = new_spec;
>>> +		}
>>>    	}
>>> -	ef10_filter_set_entry_busy(eftp, ins_index);
>>>    
>>>    	EFSYS_UNLOCK(enp->en_eslp, state);
>>>    	locked = B_FALSE;
>>>    
>>> -	/*
>>> -	 * On replacing the filter handle may change after after a successful
>>> -	 * replace operation.
>>> -	 */
>>> -	if (replacing) {
>>> -		rc = efx_mcdi_filter_op_add(enp, spec,
>>> -		    MC_CMD_FILTER_OP_IN_OP_REPLACE,
>>> -		    &eftp->eft_entry[ins_index].efe_handle);
>>> -	} else if (ef10_filter_is_exclusive(spec)) {
>>> -		rc = efx_mcdi_filter_op_add(enp, spec,
>>> -		    MC_CMD_FILTER_OP_IN_OP_INSERT,
>>> -		    &eftp->eft_entry[ins_index].efe_handle);
>>> -	} else {
>>> -		rc = efx_mcdi_filter_op_add(enp, spec,
>>> -		    MC_CMD_FILTER_OP_IN_OP_SUBSCRIBE,
>>> -		    &eftp->eft_entry[ins_index].efe_handle);
>>> -	}
>>> -
>>> +	rc = ef10_filter_add_execute_action(enp, saved_spec, spec,
>>> +	    overridden_spec, action, ins_index);
>>>    	if (rc != 0)
>>>    		goto fail4;
>>>    
>>> -	EFSYS_LOCK(enp->en_eslp, state);
>>> -	locked = B_TRUE;
>>> -
>>> -	if (replacing) {
>>> -		/* Update the fields that may differ */
>>> -		saved_spec->efs_priority = spec->efs_priority;
>>> -		saved_spec->efs_flags = spec->efs_flags;
>>> -		saved_spec->efs_rss_context = spec->efs_rss_context;
>>> -		saved_spec->efs_dmaq_id = spec->efs_dmaq_id;
>>> -	}
>>> -
>>> -	ef10_filter_set_entry_not_busy(eftp, ins_index);
>>> -
>>> -out_unlock:
>>> -
>>> -	EFSYS_UNLOCK(enp->en_eslp, state);
>>> -	locked = B_FALSE;
>>> -
>>>    	if (filter_id)
>>>    		*filter_id = ins_index;
>>>    
>>> +	EFSYS_LOCK(enp->en_eslp, state);
>>> +	ef10_filter_set_entry_not_busy(eftp, ins_index);
>>> +	EFSYS_UNLOCK(enp->en_eslp, state);
>>> +
>>>    	return (0);
>>>    
>>>    fail4:
>>>    	EFSYS_PROBE(fail4);
>>>    
>>> -	if (!replacing) {
>>> -		EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec), saved_spec);
>>> -		saved_spec = NULL;
>>> +	EFSYS_ASSERT(locked == B_FALSE);
>>> +	EFSYS_LOCK(enp->en_eslp, state);
>>> +
>>> +	if (action == EF10_FILTER_ADD_NEW) {
>>> +		EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec),
>>> +		    ef10_filter_entry_spec(eftp, ins_index));
>>> +		ef10_filter_set_entry(eftp, ins_index, NULL);
>>>    	}
>>> -	ef10_filter_set_entry_not_busy(eftp, ins_index);
>>> -	ef10_filter_set_entry(eftp, ins_index, NULL);
>>> +
>>> +	EFSYS_UNLOCK(enp->en_eslp, state);
>>> +
>>> +	if (overridden_spec != NULL)
>>> +		EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec), overridden_spec);
>>>    
>>>    fail3:
>>>    	EFSYS_PROBE(fail3);
>>>    
>>> +	EFSYS_ASSERT(locked == B_FALSE);
>>> +	EFSYS_LOCK(enp->en_eslp, state);
>>> +
>>> +	ef10_filter_set_entry_not_busy(eftp, ins_index);
>>> +
>>> +	EFSYS_UNLOCK(enp->en_eslp, state);
>>> +
>>>    fail2:
>>>    	EFSYS_PROBE(fail2);
>>>    
>>> @@ -779,11 +1001,11 @@ fail1:
>>>    ef10_filter_add(
>>>    	__in		efx_nic_t *enp,
>>>    	__inout		efx_filter_spec_t *spec,
>>> -	__in		boolean_t may_replace)
>>> +	__in		enum efx_filter_replacement_policy_e policy)
>>>    {
>>>    	efx_rc_t rc;
>>>    
>>> -	rc = ef10_filter_add_internal(enp, spec, may_replace, NULL);
>>> +	rc = ef10_filter_add_internal(enp, spec, policy, NULL);
>>>    	if (rc != 0)
>>>    		goto fail1;
>>>    
>>> @@ -795,11 +1017,15 @@ fail1:
>>>    	return (rc);
>>>    }
>>>    
>>> -
>>> +/*
>>> + * Delete a filter by index from the filter table with priority
>>> + * that is not higher than specified.
>>> + */
>>>    static	__checkReturn	efx_rc_t
>>>    ef10_filter_delete_internal(
>>>    	__in		efx_nic_t *enp,
>>> -	__in		uint32_t filter_id)
>>> +	__in		uint32_t filter_id,
>>> +	__in		efx_filter_priority_t priority)
>>>    {
>>>    	efx_rc_t rc;
>>>    	ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
>>> @@ -821,7 +1047,8 @@ ef10_filter_delete_internal(
>>>    		EFSYS_LOCK(enp->en_eslp, state);
>>>    	}
>>>    	if ((spec = ef10_filter_entry_spec(table, filter_idx)) != NULL) {
>>> -		ef10_filter_set_entry_busy(table, filter_idx);
>>> +		if (spec->efs_priority <= priority)
>>> +			ef10_filter_set_entry_busy(table, filter_idx);
>>>    	}
>>>    	EFSYS_UNLOCK(enp->en_eslp, state);
>>>    
>>> @@ -830,32 +1057,54 @@ ef10_filter_delete_internal(
>>>    		goto fail1;
>>>    	}
>>>    
>>> -	/*
>>> -	 * Try to remove the hardware filter. This may fail if the MC has
>>> -	 * rebooted (which frees all hardware filter resources).
>>> -	 */
>>> -	if (ef10_filter_is_exclusive(spec)) {
>>> -		rc = efx_mcdi_filter_op_delete(enp,
>>> -		    MC_CMD_FILTER_OP_IN_OP_REMOVE,
>>> -		    &table->eft_entry[filter_idx].efe_handle);
>>> +	if (spec->efs_priority > priority) {
>>> +		/*
>>> +		 * Applied filter stays, but overridden filter is removed since
>>> +		 * next user request to delete the applied filter should not
>>> +		 * restore outdated filter.
>>> +		 */
>>> +		if (spec->efs_overridden_spec != NULL) {
>>> +			EFSYS_ASSERT(spec->efs_overridden_spec->efs_overridden_spec ==
>>> +			    NULL);
>>> +			EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec),
>>> +			    spec->efs_overridden_spec);
>>> +			spec->efs_overridden_spec = NULL;
>>> +		}
>>>    	} else {
>>> -		rc = efx_mcdi_filter_op_delete(enp,
>>> -		    MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE,
>>> -		    &table->eft_entry[filter_idx].efe_handle);
>>> +		/*
>>> +		 * Try to remove the hardware filter or replace it with the
>>> +		 * saved automatic filter. This may fail if the MC has
>>> +		 * rebooted (which frees all hardware filter resources).
>>> +		 */
>>> +		if (spec->efs_overridden_spec != NULL) {
>>> +			rc = efx_mcdi_filter_op_add(enp,
>>> +			    spec->efs_overridden_spec,
>>> +			    MC_CMD_FILTER_OP_IN_OP_REPLACE,
>>> +			    &table->eft_entry[filter_idx].efe_handle);
>>> +		} else if (ef10_filter_is_exclusive(spec)) {
>>> +			rc = efx_mcdi_filter_op_delete(enp,
>>> +			    MC_CMD_FILTER_OP_IN_OP_REMOVE,
>>> +			    &table->eft_entry[filter_idx].efe_handle);
>>> +		} else {
>>> +			rc = efx_mcdi_filter_op_delete(enp,
>>> +			    MC_CMD_FILTER_OP_IN_OP_UNSUBSCRIBE,
>>> +			    &table->eft_entry[filter_idx].efe_handle);
>>> +		}
>>> +
>>> +		/* Free the software table entry */
>>> +		EFSYS_LOCK(enp->en_eslp, state);
>>> +		ef10_filter_set_entry_not_busy(table, filter_idx);
>>> +		ef10_filter_set_entry(table, filter_idx,
>>> +		    spec->efs_overridden_spec);
>>> +		EFSYS_UNLOCK(enp->en_eslp, state);
>>> +
>>> +		EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec), spec);
>>> +
>>> +		/* Check result of hardware filter removal */
>>> +		if (rc != 0)
>>> +			goto fail2;
>>>    	}
>>>    
>>> -	/* Free the software table entry */
>>> -	EFSYS_LOCK(enp->en_eslp, state);
>>> -	ef10_filter_set_entry_not_busy(table, filter_idx);
>>> -	ef10_filter_set_entry(table, filter_idx, NULL);
>>> -	EFSYS_UNLOCK(enp->en_eslp, state);
>>> -
>>> -	EFSYS_KMEM_FREE(enp->en_esip, sizeof (*spec), spec);
>>> -
>>> -	/* Check result of hardware filter removal */
>>> -	if (rc != 0)
>>> -		goto fail2;
>>> -
>>>    	return (0);
>>>    
>>>    fail2:
>>> @@ -867,6 +1116,25 @@ fail1:
>>>    	return (rc);
>>>    }
>>>    
>>> +static			void
>>> +ef10_filter_delete_auto(
>>> +	__in		efx_nic_t *enp,
>>> +	__in		uint32_t filter_id)
>>> +{
>>> +	ef10_filter_table_t *table = enp->en_filter.ef_ef10_filter_table;
>>> +	uint32_t filter_idx = filter_id % EFX_EF10_FILTER_TBL_ROWS;
>>> +
>>> +	/*
>>> +	 * AUTO_OLD flag is cleared since the auto filter that is to be removed
>>> +	 * may not be the filter at the specified index itself, but the filter
>>> +	 * that is overridden by it.
>>> +	 */
>>> +	ef10_filter_set_entry_not_auto_old(table, filter_idx);
>>> +
>>> +	(void) ef10_filter_delete_internal(enp, filter_idx,
>>> +	    EFX_FILTER_PRI_AUTO);
>>> +}
>>> +
>>>    	__checkReturn	efx_rc_t
>>>    ef10_filter_delete(
>>>    	__in		efx_nic_t *enp,
>>> @@ -906,7 +1174,7 @@ ef10_filter_delete(
>>>    	EFSYS_UNLOCK(enp->en_eslp, state);
>>>    	locked = B_FALSE;
>>>    
>>> -	rc = ef10_filter_delete_internal(enp, i);
>>> +	rc = ef10_filter_delete_internal(enp, i, EFX_FILTER_PRI_MANUAL);
>>>    	if (rc != 0)
>>>    		goto fail2;
>>>    
>>> @@ -1131,7 +1399,7 @@ ef10_filter_insert_unicast(
>>>    	if (rc != 0)
>>>    		goto fail1;
>>>    
>>> -	rc = ef10_filter_add_internal(enp, &spec, B_TRUE,
>>> +	rc = ef10_filter_add_internal(enp, &spec, EFX_FILTER_REPLACEMENT_NEVER,
>>>    	    &eftp->eft_unicst_filter_indexes[eftp->eft_unicst_filter_count]);
>>>    	if (rc != 0)
>>>    		goto fail2;
>>> @@ -1165,7 +1433,7 @@ ef10_filter_insert_all_unicast(
>>>    	rc = efx_filter_spec_set_uc_def(&spec);
>>>    	if (rc != 0)
>>>    		goto fail1;
>>> -	rc = ef10_filter_add_internal(enp, &spec, B_TRUE,
>>> +	rc = ef10_filter_add_internal(enp, &spec, EFX_FILTER_REPLACEMENT_NEVER,
>>>    	    &eftp->eft_unicst_filter_indexes[eftp->eft_unicst_filter_count]);
>>>    	if (rc != 0)
>>>    		goto fail2;
>>> @@ -1235,8 +1503,8 @@ ef10_filter_insert_multicast_list(
>>>    			}
>>>    		}
>>>    
>>> -		rc = ef10_filter_add_internal(enp, &spec, B_TRUE,
>>> -					    &filter_index);
>>> +		rc = ef10_filter_add_internal(enp, &spec,
>>> +		    EFX_FILTER_REPLACEMENT_NEVER, &filter_index);
>>>    
>>>    		if (rc == 0) {
>>>    			eftp->eft_mulcst_filter_indexes[filter_count] =
>>> @@ -1263,8 +1531,8 @@ ef10_filter_insert_multicast_list(
>>>    			goto rollback;
>>>    		}
>>>    
>>> -		rc = ef10_filter_add_internal(enp, &spec, B_TRUE,
>>> -					    &filter_index);
>>> +		rc = ef10_filter_add_internal(enp, &spec,
>>> +		    EFX_FILTER_REPLACEMENT_NEVER, &filter_index);
>>>    
>>>    		if (rc == 0) {
>>>    			eftp->eft_mulcst_filter_indexes[filter_count] =
>>> @@ -1285,7 +1553,7 @@ rollback:
>>>    	/* Remove any filters we have inserted */
>>>    	i = filter_count;
>>>    	while (i--) {
>>> -		(void) ef10_filter_delete_internal(enp,
>>> +		ef10_filter_delete_auto(enp,
>>>    		    eftp->eft_mulcst_filter_indexes[i]);
>>>    	}
>>>    	eftp->eft_mulcst_filter_count = 0;
>>> @@ -1313,7 +1581,7 @@ ef10_filter_insert_all_multicast(
>>>    	if (rc != 0)
>>>    		goto fail1;
>>>    
>>> -	rc = ef10_filter_add_internal(enp, &spec, B_TRUE,
>>> +	rc = ef10_filter_add_internal(enp, &spec, EFX_FILTER_REPLACEMENT_NEVER,
>>>    	    &eftp->eft_mulcst_filter_indexes[0]);
>>>    	if (rc != 0)
>>>    		goto fail2;
>>> @@ -1416,8 +1684,9 @@ ef10_filter_insert_encap_filters(
>>>    		if (rc != 0)
>>>    			goto fail1;
>>>    
>>> -		rc = ef10_filter_add_internal(enp, &spec, B_TRUE,
>>> -			    &table->eft_encap_filter_indexes[
>>> +		rc = ef10_filter_add_internal(enp, &spec,
>>> +		    EFX_FILTER_REPLACEMENT_NEVER,
>>> +		    &table->eft_encap_filter_indexes[
>>>    				    table->eft_encap_filter_count]);
>>>    		if (rc != 0) {
>>>    			if (rc != EACCES)
>>> @@ -1446,7 +1715,7 @@ ef10_filter_remove_old(
>>>    
>>>    	for (i = 0; i < EFX_ARRAY_SIZE(table->eft_entry); i++) {
>>>    		if (ef10_filter_entry_is_auto_old(table, i)) {
>>> -			(void) ef10_filter_delete_internal(enp, i);
>>> +			ef10_filter_delete_auto(enp, i);
>>>    		}
>>>    	}
>>>    }
>>> @@ -1521,19 +1790,19 @@ ef10_filter_reconfigure(
>>>    		 * has rebooted, which removes hardware filters).
>>>    		 */
>>>    		for (i = 0; i < table->eft_unicst_filter_count; i++) {
>>> -			(void) ef10_filter_delete_internal(enp,
>>> +			ef10_filter_delete_auto(enp,
>>>    					table->eft_unicst_filter_indexes[i]);
>>>    		}
>>>    		table->eft_unicst_filter_count = 0;
>>>    
>>>    		for (i = 0; i < table->eft_mulcst_filter_count; i++) {
>>> -			(void) ef10_filter_delete_internal(enp,
>>> +			ef10_filter_delete_auto(enp,
>>>    					table->eft_mulcst_filter_indexes[i]);
>>>    		}
>>>    		table->eft_mulcst_filter_count = 0;
>>>    
>>>    		for (i = 0; i < table->eft_encap_filter_count; i++) {
>>> -			(void) ef10_filter_delete_internal(enp,
>>> +			ef10_filter_delete_auto(enp,
>>>    					table->eft_encap_filter_indexes[i]);
>>>    		}
>>>    		table->eft_encap_filter_count = 0;
>>> diff --git a/drivers/net/sfc/base/ef10_impl.h b/drivers/net/sfc/base/ef10_impl.h
>>> index 7a00047829..67abf3b853 100644
>>> --- a/drivers/net/sfc/base/ef10_impl.h
>>> +++ b/drivers/net/sfc/base/ef10_impl.h
>>> @@ -1079,6 +1079,8 @@ ef10_rx_fini(
>>>    
>>>    #if EFSYS_OPT_FILTER
>>>    
>>> +enum efx_filter_replacement_policy_e;
>>> +
>>>    typedef struct ef10_filter_handle_s {
>>>    	uint32_t	efh_lo;
>>>    	uint32_t	efh_hi;
>>> @@ -1148,7 +1150,7 @@ ef10_filter_restore(
>>>    ef10_filter_add(
>>>    	__in		efx_nic_t *enp,
>>>    	__inout		efx_filter_spec_t *spec,
>>> -	__in		boolean_t may_replace);
>>> +	__in		enum efx_filter_replacement_policy_e policy);
>>>    
>>>    	__checkReturn	efx_rc_t
>>>    ef10_filter_delete(
>>> diff --git a/drivers/net/sfc/base/efx.h b/drivers/net/sfc/base/efx.h
>>> index c609c700fa..d94d3c02f7 100644
>>> --- a/drivers/net/sfc/base/efx.h
>>> +++ b/drivers/net/sfc/base/efx.h
>>> @@ -2949,6 +2949,7 @@ typedef uint8_t efx_filter_flags_t;
>>>    
>>>    typedef uint32_t efx_filter_match_flags_t;
>>>    
>>> +/* Filter priority from lowest to highest */
>>>    typedef enum efx_filter_priority_s {
>>>    	EFX_FILTER_PRI_AUTO = 0,	/* Automatic filter based on device
>>>    					 * address list or hardware
>>> @@ -2956,6 +2957,7 @@ typedef enum efx_filter_priority_s {
>>>    					 * by the filter implementation for
>>>    					 * each NIC type. */
>>>    	EFX_FILTER_PRI_MANUAL,		/* Manually configured filter */
>>> +	EFX_FILTER_NPRI,
>>>    } efx_filter_priority_t;
>>>    
>>>    /*
>>> @@ -2970,6 +2972,11 @@ typedef struct efx_filter_spec_s {
>>>    	uint16_t			efs_dmaq_id;
>>>    	uint32_t			efs_rss_context;
>>>    	uint32_t			efs_mark;
>>> +	/*
>>> +	 * Saved lower-priority filter. If it is set, it is restored on
>>> +	 * filter delete operation.
>>> +	 */
>>> +	struct efx_filter_spec_s	*efs_overridden_spec;
>>>    	/* Fields below here are hashed for software filter lookup */
>>>    	uint16_t			efs_outer_vid;
>>>    	uint16_t			efs_inner_vid;
>>> diff --git a/drivers/net/sfc/base/efx_filter.c b/drivers/net/sfc/base/efx_filter.c
>>> index 36332a2801..9949d05bb3 100644
>>> --- a/drivers/net/sfc/base/efx_filter.c
>>> +++ b/drivers/net/sfc/base/efx_filter.c
>>> @@ -28,7 +28,7 @@ static	__checkReturn	efx_rc_t
>>>    siena_filter_add(
>>>    	__in		efx_nic_t *enp,
>>>    	__inout		efx_filter_spec_t *spec,
>>> -	__in		boolean_t may_replace);
>>> +	__in		efx_filter_replacement_policy_t policy);
>>>    
>>>    static	__checkReturn	efx_rc_t
>>>    siena_filter_delete(
>>> @@ -98,7 +98,8 @@ efx_filter_insert(
>>>    		goto fail3;
>>>    	}
>>>    
>>> -	return (efop->efo_add(enp, spec, B_FALSE));
>>> +	return (efop->efo_add(enp, spec,
>>> +	    EFX_FILTER_REPLACEMENT_HIGHER_PRIORITY));
>>>    
>>>    fail3:
>>>    	EFSYS_PROBE(fail3);
>>> @@ -1444,7 +1445,7 @@ static	 __checkReturn	efx_rc_t
>>>    siena_filter_add(
>>>    	__in		efx_nic_t *enp,
>>>    	__inout		efx_filter_spec_t *spec,
>>> -	__in		boolean_t may_replace)
>>> +	__in		efx_filter_replacement_policy_t policy)
>>>    {
>>>    	efx_rc_t rc;
>>>    	siena_filter_spec_t sf_spec;
>>> @@ -1485,9 +1486,17 @@ siena_filter_add(
>>>    	saved_sf_spec = &sftp->sft_spec[filter_idx];
>>>    
>>>    	if (siena_filter_test_used(sftp, filter_idx)) {
>>> -		if (may_replace == B_FALSE) {
>>> +		/* All Siena filter are considered the same priority */
>>> +		switch (policy) {
>>> +		case EFX_FILTER_REPLACEMENT_NEVER:
>>> +		case EFX_FILTER_REPLACEMENT_HIGHER_PRIORITY:
>>>    			rc = EEXIST;
>>>    			goto fail4;
>>> +		case EFX_FILTER_REPLACEMENT_HIGHER_OR_EQUAL_PRIORITY:
>>> +			break;
>>> +		default:
>>> +			EFSYS_ASSERT(0);
>>> +			break;
>>>    		}
>>>    	}
>>>    	siena_filter_set_used(sftp, filter_idx);
>>> diff --git a/drivers/net/sfc/base/efx_impl.h b/drivers/net/sfc/base/efx_impl.h
>>> index 85d984f651..9755f4dfd2 100644
>>> --- a/drivers/net/sfc/base/efx_impl.h
>>> +++ b/drivers/net/sfc/base/efx_impl.h
>>> @@ -246,12 +246,31 @@ typedef struct efx_phy_ops_s {
>>>    } efx_phy_ops_t;
>>>    
>>>    #if EFSYS_OPT_FILTER
>>> +
>>> +/*
>>> + * Policy for replacing existing filter when inserting a new one.
>>> + * Note that all policies allow for storing the new lower priority
>>> + * filters as overridden by existing higher priority ones. It is needed
>>> + * to restore the lower priority filters on higher priority ones removal.
>>> + */
>>> +typedef enum efx_filter_replacement_policy_e {
>>> +	/* Cannot replace existing filter */
>>> +	EFX_FILTER_REPLACEMENT_NEVER,
>>> +	/* Higher priority filters can replace lower priotiry ones */
>>> +	EFX_FILTER_REPLACEMENT_HIGHER_PRIORITY,
>>> +	/*
>>> +	 * Higher priority filters can replace lower priority ones and
>>> +	 * equal priority filters can replace each other.
>>> +	 */
>>> +	EFX_FILTER_REPLACEMENT_HIGHER_OR_EQUAL_PRIORITY,
>>> +} efx_filter_replacement_policy_t;
>>> +
>>>    typedef struct efx_filter_ops_s {
>>>    	efx_rc_t	(*efo_init)(efx_nic_t *);
>>>    	void		(*efo_fini)(efx_nic_t *);
>>>    	efx_rc_t	(*efo_restore)(efx_nic_t *);
>>>    	efx_rc_t	(*efo_add)(efx_nic_t *, efx_filter_spec_t *,
>>> -				   boolean_t may_replace);
>>> +				   efx_filter_replacement_policy_t policy);
>>>    	efx_rc_t	(*efo_delete)(efx_nic_t *, efx_filter_spec_t *);
>>>    	efx_rc_t	(*efo_supported_filters)(efx_nic_t *, uint32_t *,
>>>    				   size_t, size_t *);

-- 
Best regards,
Igor


  reply	other threads:[~2020-05-23 20:22 UTC|newest]

Thread overview: 371+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-19 12:53 [dpdk-stable] patch 'crypto/octeontx2: fix build with gcc 10' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'test: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'app/pipeline: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'examples/vhost_blk: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'examples/eventdev: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'examples/qos_sched: " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'drivers: add crypto as dependency for event drivers' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'drivers/crypto: fix build with make 4.3' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'eal: fix log message print for regex' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'eal/arm64: fix precise TSC' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'mem: mark pages as not accessed when reserving VA' " luca.boccassi
2020-06-09 13:45   ` Kevin Traynor
2020-06-09 14:14     ` Luca Boccassi
2020-06-12  8:00       ` Luca Boccassi
2020-06-16  8:13         ` David Marchand
2020-06-16 10:41           ` Luca Boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'service: fix crash on exit' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'telemetry: fix port stats retrieval' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'pci: remove unneeded includes in public header file' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'pci: fix build on FreeBSD' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'pci: fix build on ppc' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'build: fix linker warnings with clang on Windows' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/octeontx2: fix link information for loopback port' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/i40e: relax barrier in Tx' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix VLAN PCP item calculation' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/i40e: fix X722 performance' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/ice: fix hash flow crash' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/enetc: fix Rx lock-up' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/ice: remove unnecessary variable' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'doc: fix number of failsafe sub-devices' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix reported promiscuous/multicast mode' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/vmxnet3: fix RSS setting on v4' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix initialization error path' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix Rx queue start failure " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/ice: remove bulk alloc option' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix mask used for IPv6 item validation' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'build: support MinGW-w64 with Meson' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/memif: fix init when already connected' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hinic: fix snprintf length of cable info' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hinic: fix repeating cable log and length check' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hns3: fix promiscuous mode for PF' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'ethdev: fix spelling' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: fix promiscuous and allmulticast toggles errors' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc: set priority of created filters to manual' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: reduce filter priorities to implemented only' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: reject automatic filter creation by users' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: refactor filter lookup loop in EF10' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/sfc/base: handle manual and auto filter clashes " luca.boccassi
2020-05-20  9:53   ` Igor Romanov
2020-05-20 11:57     ` Luca Boccassi
2020-05-20 12:12       ` Igor Romanov [this message]
2020-05-20 16:50         ` Luca Boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix zero metadata action' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/hinic: allocate IO memory with socket id' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: fix CVLAN tag set in IP item translation' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'net/mlx5: reduce Tx completion index memory loads' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'contigmem: cleanup properly when load fails' " luca.boccassi
2020-05-19 12:53 ` [dpdk-stable] patch 'devtools: fix symbol map change check' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test: load drivers when required' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test: skip some subtests in no-huge mode' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'eal/freebsd: fix queuing duplicate alarm callbacks' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'mem: preallocate VA space in no-huge mode' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/kvargs: fix to consider empty elements as valid' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/kvargs: fix invalid cases check' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'kvargs: fix buffer overflow when parsing list' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'bus/pci: fix devargs on probing again' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'ci: fix telemetry dependency in Travis' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'fib: fix headers for C++ support' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'cryptodev: fix missing device id range checking' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'common/qat: fix GEN3 marketing name' " luca.boccassi
2020-06-04 17:13   ` Trahe, Fiona
2020-06-05  7:52     ` Luca Boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/ipsec: fix crash in session destroy' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'baseband/turbo_sw: fix exposed LLR decimals assumption' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'crypto/nitrox: fix CSR register address generation' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'crypto/nitrox: fix oversized device name' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'event/dsw: remove redundant control ring poll' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'event/dsw: remove unnecessary read barrier' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'doc: fix sphinx compatibility' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'ipsec: fix build dependency on hash lib' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'log: fix level picked with globbing on type register' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'doc: fix matrix CSS for recent sphinx' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'eal: fix PRNG init with HPET enabled' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'vfio: fix race condition with sysfs' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'vfio: fix use after free with multiprocess' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'drivers: fix log type variables for -fno-common' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'cryptodev: add asymmetric session-less feature name' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'drivers/crypto: fix log type variables for -fno-common' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'test/crypto: fix flag check' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'crypto/openssl: fix out-of-place encryption' " luca.boccassi
2020-05-19 12:54 ` [dpdk-stable] patch 'security: fix verification of parameters' " luca.boccassi
2020-05-19 13:02 ` [dpdk-stable] patch 'security: fix return types in documentation' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'security: fix session counter' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'test: remove redundant macro' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix packets offload features flags in Rx' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix default error code of command interface' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix crash when flushing RSS flow rules with FLR' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix configuring illegal VLAN PVID' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix status after repeated resets' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hinic: fix LRO' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hinic/base: fix port start during FW hot update' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ipn3ke: use control thread to check link status' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix configuring RSS hash when rules are flushed' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix mailbox opcode data type' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/hns3: fix return value of setting VLAN offload' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: fix uninitialized stack variables' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: read PSM clock frequency from register' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: minor fixes' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: fix MAC write command' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ixgbe: fix link status inconsistencies' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix validation of VXLAN/VXLAN-GPE specs' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix metadata for compressed Rx CQEs' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: update VLAN and encap actions validation' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix call to modify action without init item' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix zero value validation for metadata' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'examples/vmdq: fix output of pools/queues' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mvneta: do not use PMD log type' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/virtio: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/tap: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/pfe: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/bnxt: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/dpaa: use dynamic " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/thunderx: " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/mlx5: fix imissed counter overflow' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: fix binary order for GTPU filter' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice/base: check memory pointer before copying' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/tap: remove unused assert' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/octeontx: fix meson build for disabled drivers' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/octeontx2: fix device configuration sequence' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice: change default tunnel type' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice: add action number check for switch' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/ice: fix input set of VLAN item' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/netvsc: propagate descriptor limits from VF' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/netvsc: handle Rx packets during multi-channel setup' " luca.boccassi
2020-05-19 13:02   ` [dpdk-stable] patch 'net/netvsc: split send buffers from Tx descriptors' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: fix memory free on device close' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: remove process event optimization' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: handle Tx completions based on burst size' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/netvsc: avoid possible live lock' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/memif: fix resource leak' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'ethdev: fix build when vtune profiling is on' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'examples/vmdq: fix RSS configuration' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/nfp: fix log format specifiers' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/nfp: fix dangling pointer on probe failure' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ice: fix RSS advanced rule' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ice/base: remove unused code in switch " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: make allocation macros thread-safe' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: prevent allocation of zero sized memory' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: fix documentation of functions' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: fix indentation in CQ polling' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena/base: fix indentation of multiple defines' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/ena: set IO ring size to valid value' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix counter container usage' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'app/testpmd: fix PPPoE flow command' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/pfe: fix double free of MAC address' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/null: fix secondary burst function selection' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/null: remove redundant check' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hinic/base: fix PF firmware hot-active problem' " luca.boccassi
2020-05-20 12:29     ` Wangxiaoyun (Cloud)
2020-05-20 12:48       ` Kevin Traynor
2020-05-20 16:55       ` Luca Boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost/crypto: add missing user protocol flag' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: fix packed ring zero-copy' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/vhost: fix potential memory leak on close' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/virtio: fix outdated comment' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: remove unused variable' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: make IOTLB cache name unique among processes' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: clear residual flow rules on init' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: add RSS hash offload to capabilities' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: fix RSS key length' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: fix default VLAN filter configuration for PF' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/hns3: fix VLAN filter when setting promisucous mode' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'common/mlx5: fix build with -fno-common' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx4: " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: use open/read/close for ib stats query' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/octeontx2: enable error and RAS interrupt in configure' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/octeontx2: disable unnecessary error interrupts' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/i40e: relax barrier in Tx for NEON' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: add device parameter for MPRQ stride size' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: enable MPRQ multi-stride operations' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: add multi-segment packets in MPRQ mode' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix meter suffix table leak' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix jump " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/enic: fix flow action reordering' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix push VLAN action to use item info' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/mlx5: fix validation of push VLAN without full mask' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix mbuf double free when writev fails' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix mbuf and mem leak during queue release' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix check for mbuf number of segment' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix file close on remove' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix fd leak on creation failure' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix unexpected link handler' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: fix shadow update' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'vhost: fix shadowed descriptors not flushed' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/virtio-user: fix devargs parsing' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/tap: fix queues fd check before close' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'net/i40e: fix flow director initialisation' " luca.boccassi
2020-05-19 13:03   ` [dpdk-stable] patch 'common/mlx5: fix build with rdma-core 21' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix crash when releasing meter table' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix header modify action validation' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: set dynamic flow metadata in Rx queues' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: improve logging of MPRQ selection' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/ixgbe: fix resource leak after thread exits normally' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/ixgbe: fix link status after port reset' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/iavf: fix stats query error code' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix HWRM command during FW reset' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: use true/false for bool types' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix port start failure handling' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix VLAN add when port is stopped' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'security: fix crash at accessing non-implemented ops' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'mempool: remove inline functions from export list' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'lpm6: fix size of tbl8 group' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'lpm6: fix comments spelling' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal: " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'timer: protect initialization with lock' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'fix various typos found by Lintian' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'app: fix usage help of options separated by dashes' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'usertools: check for pci.ids in /usr/share/misc' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'bus/pci: fix UIO resource access from secondary process' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix memory leak during queue restart' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix VNIC Rx queue count on VNIC free' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'app/testpmd: add parsing for QinQ VLAN headers' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'doc: fix log level example in Linux guide' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal: fix typo in endian conversion macros' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/avp: fix gcc 10 maybe-uninitialized warning' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'examples/ipsec-gw: " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal/x86: ignore gcc 10 stringop-overflow warnings' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'kvargs: fix invalid token parsing on FreeBSD' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eal/ppc: fix build with gcc 9.3' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/bnxt: fix max ring count' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/i40e: fix flow director for ARP packets' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'doc: add i40e limitation for flow director' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/i40e: fix flush of flow director filter' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix assert in doorbell lookup' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'vhost: fix peer close check' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'vhost: prevent zero-copy with incompatible client mode' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix assert in dynamic metadata handling' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix actions validation on root table' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/sfc/base: use simpler EF10 family conditional check' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/sfc/base: use simpler EF10 family run-time checks' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/sfc/base: fix build when EVB is enabled' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/softnic: fix memory leak for thread' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/softnic: fix resource leak for pipeline' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/hns3: fix VLAN PVID when configuring device' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/hns3: fix return value when clearing statistics' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/octeontx: fix dangling pointer on init failure' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix RSS enablement' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix assert in modify converting' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix VLAN ID check' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'net/mlx5: fix gcc 10 enum-conversion warning' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'event/octeontx2: fix queue removal from Rx adapter' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'eventdev: fix probe and remove for secondary process' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'event/dsw: avoid reusing previously recorded events' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'common/octeontx: fix gcc 9.1 ABI break' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'mk: fix static linkage of mlx dependency' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'service: fix race condition for MT unsafe service' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'service: fix identification of service running on other lcore' " luca.boccassi
2020-05-19 13:04   ` [dpdk-stable] patch 'service: remove rte prefix from static functions' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'remove references to private PCI probe function' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples/l2fwd-keepalive: fix mbuf pool size' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'mem: fix overflow on allocation' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples/eventdev: fix crash on exit' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'mempool/octeontx2: fix build for gcc O1 optimization' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ena: fix build for " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'event/octeontx2: " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'test/flow_classify: enable multi-sockets system' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bbdev: fix doxygen comments' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/ccp: fix fd leak on probe failure' " luca.boccassi
2020-05-19 13:20     ` Kumar, Ravi1
2020-05-19 13:05   ` [dpdk-stable] patch 'app/crypto-perf: fix display of sample test vector' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/qat: fix cipher descriptor for ZUC and SNOW' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/kasumi: fix extern declaration' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples/fips_validation: fix parsing of algorithms' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'drivers/crypto: disable gcc 10 no-common errors' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'ipsec: check SAD lookup error' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/failsafe: fix fd leak' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'app/testpmd: fix statistics after reset' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/netvsc: fix comment spelling' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bus/vmbus: " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/netvsc: do RSS across Rx queue only' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/netvsc: do not configure RSS if disabled' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix possible stack smashing' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/iavf: fix link speed' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ixgbe: fix link status synchronization on BSD' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ice: support mark only action for flow director' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ice: fix crash in switch filter' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/tap: fix crash in flow destroy' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix number of TQM ring' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix TQM ring context memory size' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/virtio: fix crash when device reconnecting' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/bnxt: fix FW version query' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'app/testpmd: fix memory failure handling for i40e DDP' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bus/fslmc: fix dereferencing null pointer' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/dpaa2: fix 10G port negotiation' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/dpaa2: fix congestion ID for multiple traffic classes' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'bus/fslmc: fix size of qman fq descriptor' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ixgbe: fix link state timing on fiber ports' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'Revert "net/bnxt: fix TQM ring context memory size"' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'Revert "net/bnxt: fix number of TQM ring"' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ice: fix variable initialization' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/ring: fix device pointer on allocation' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix match on empty VLAN item in DV mode' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix matching for UDP tunnels with Verbs' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix meter color register consideration' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx4: fix drop queue error handling' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'net/mlx5: fix Tx queue release debug log timing' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'app: remove extra new line after link duplex' " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'examples: " luca.boccassi
2020-05-19 13:05   ` [dpdk-stable] patch 'crypto/qat: support plain SHA1..SHA512 hashes' " luca.boccassi
2020-05-22  9:39     ` [dpdk-stable] patch 'event/dsw: fix enqueue burst return value' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'app/eventdev: check Tx adapter service ID' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'crypto/caam_jr: fix check of file descriptors' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'crypto/caam_jr: fix IRQ functions return type' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'build: disable gcc 10 zero-length-bounds warning' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix LTO config option' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix default symbol binding in ABI guide' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'eal: fix C++17 compilation' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix build issue in ABI guide' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/e1000: fix port hotplug for multi-process' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'doc: fix multicast filter feature announcement' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'common/mlx5: fix umem buffer alignment' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/ixgbe: fix statistics in flow control mode' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/qede: fix link state configuration' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/mlx5: fix VLAN flow action with wildcard VLAN item' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/vmxnet3: handle bad host framing' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/hinic: fix queues resource free' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/hinic: fix Tx mbuf length while copying' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'vhost: handle mbuf allocation failure' " luca.boccassi
2020-05-22  9:39       ` [dpdk-stable] patch 'net/virtio: fix unexpected event after reconnect' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/qede: fix port reconfiguration' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/bnxt: fix error log for command timeout' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/bnxt: fix using RSS config struct' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/bnxt: fix storing MAC address twice' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e: fix queue region in RSS flow' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/mlx5: fix doorbell bitmap management offsets' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'common/mlx5: fix netlink buffer allocation from stack' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'app/testpmd: fix DCB set' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/ixgbe/base: update copyright' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e/base: " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'common/iavf: " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/ice/base: " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'pci: accept 32-bit domain numbers' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'pci: reject negative values in PCI id' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'doc: fix typos in ABI policy' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'kvargs: fix strcmp helper documentation' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'mempool/dpaa2: install missing header with meson' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'fix same typo in multiple places' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'examples/kni: fix MTU change to setup Tx queue' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e: fix wild pointer' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/ice: fix RSS for GTPU' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'net/i40e: fix queue related exception handling' " luca.boccassi
2020-05-22  9:40       ` [dpdk-stable] patch 'vhost: fix zero-copy server mode' " luca.boccassi
2020-05-27  9:24         ` [dpdk-stable] patch 'net/mvpp2: fix build with gcc 10' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/vm_power: fix build with -fno-common' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/vm_power: drop Unix path limit redefinition' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'doc: fix build with doxygen 1.8.18' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'cryptodev: fix SHA-1 digest enum comment' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/bnxt: fix Rx ring producer index' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/octeontx2: fix buffer size assignment' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/hinic: fix TSO' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/sfc/base: fix manual filter delete in EF10' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/i40e: fix setting L2TAG' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/iavf: " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/ice: " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/i40e: fix flow director enabling' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'net/ixgbe: check driver type in MACsec API' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/kni: fix crash during MTU set' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'examples/ip_pipeline: remove check of null response' " luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'doc: fix typo in contributors guide' " luca.boccassi
2020-05-27  9:24           ` luca.boccassi
2020-05-27  9:24           ` [dpdk-stable] patch 'doc: prefer https when pointing to dpdk.org' " 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=e1f37cac-9529-d0f0-9683-deba593363ab@oktetlabs.ru \
    --to=romigor@oktetlabs.ru \
    --cc=arybchenko@solarflare.com \
    --cc=luca.boccassi@gmail.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
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).