> > Allow binding KNI thread to specific core in single threaded mode
> > by setting core_id and force_bind config parameters.
> >
> > Signed-off-by: Vladyslav Buslov
> > Acked-by: Ferruh Yigit
>
> Tested-by: Ferruh Yigit
Applied, thanks
On 9/24/2016 2:13 PM, Vladyslav Buslov wrote:
> Allow binding KNI thread to specific core in single threaded mode
> by setting core_id and force_bind config parameters.
>
> Signed-off-by: Vladyslav Buslov
> Acked-by: Ferruh Yigit
Tested-by: Ferruh Yigit
Allow binding KNI thread to specific core in single threaded mode
by setting core_id and force_bind config parameters.
Signed-off-by: Vladyslav Buslov
Acked-by: Ferruh Yigit
---
doc/guides/prog_guide/kernel_nic_interface.rst | 3 +
lib/librte_eal/linuxapp/kni/kni_misc.c | 103
On 9/22/2016 10:29 AM, Vladyslav Buslov wrote:
>> On Wed, 21 Sep 2016 19:23:47 +0100
>> Ferruh Yigit wrote:
>>
>>> On 9/21/2016 6:15 PM, Vladyslav Buslov wrote:
> On 9/20/2016 7:36 PM, Stephen Hemminger wrote:
>> On Tue, 20 Sep 2016 21:16:37 +0300 Vladyslav Buslov
>> wrote:
>>
>>>
> On Wed, 21 Sep 2016 19:23:47 +0100
> Ferruh Yigit wrote:
>
> > On 9/21/2016 6:15 PM, Vladyslav Buslov wrote:
> > >> On 9/20/2016 7:36 PM, Stephen Hemminger wrote:
> > >>> On Tue, 20 Sep 2016 21:16:37 +0300 Vladyslav Buslov
> > >>> wrote:
> > >>>
> > @@ -123,6 +125,9 @@ static int __net_in
On 9/21/2016 6:15 PM, Vladyslav Buslov wrote:
>> On 9/20/2016 7:36 PM, Stephen Hemminger wrote:
>>> On Tue, 20 Sep 2016 21:16:37 +0300
>>> Vladyslav Buslov wrote:
>>>
@@ -123,6 +125,9 @@ static int __net_init kni_init_net(struct net *net)
/* Clear the bit of device in use */
c
On 9/20/2016 7:36 PM, Stephen Hemminger wrote:
> On Tue, 20 Sep 2016 21:16:37 +0300
> Vladyslav Buslov wrote:
>
>> @@ -123,6 +125,9 @@ static int __net_init kni_init_net(struct net *net)
>> /* Clear the bit of device in use */
>> clear_bit(KNI_DEV_IN_USE_BIT_NUM, &knet->device_in_use);
> On 9/20/2016 7:36 PM, Stephen Hemminger wrote:
> > On Tue, 20 Sep 2016 21:16:37 +0300
> > Vladyslav Buslov wrote:
> >
> >> @@ -123,6 +125,9 @@ static int __net_init kni_init_net(struct net *net)
> >>/* Clear the bit of device in use */
> >>clear_bit(KNI_DEV_IN_USE_BIT_NUM, &knet->device_
On Wed, 21 Sep 2016 19:23:47 +0100
Ferruh Yigit wrote:
> On 9/21/2016 6:15 PM, Vladyslav Buslov wrote:
> >> On 9/20/2016 7:36 PM, Stephen Hemminger wrote:
> >>> On Tue, 20 Sep 2016 21:16:37 +0300
> >>> Vladyslav Buslov wrote:
> >>>
> @@ -123,6 +125,9 @@ static int __net_init kni_init_ne
On 9/20/2016 7:16 PM, Vladyslav Buslov wrote:
> Allow binding KNI thread to specific core in single threaded mode
> by setting core_id and force_bind config parameters.
>
> Signed-off-by: Vladyslav Buslov
Thanks Vladyslav!
Acked-by: Ferruh Yigit
Allow binding KNI thread to specific core in single threaded mode
by setting core_id and force_bind config parameters.
Signed-off-by: Vladyslav Buslov
---
doc/guides/prog_guide/kernel_nic_interface.rst | 3 +
lib/librte_eal/linuxapp/kni/kni_misc.c | 101 -
2 fil
On Tue, 20 Sep 2016 21:16:37 +0300
Vladyslav Buslov wrote:
> @@ -123,6 +125,9 @@ static int __net_init kni_init_net(struct net *net)
> /* Clear the bit of device in use */
> clear_bit(KNI_DEV_IN_USE_BIT_NUM, &knet->device_in_use);
>
> + mutex_init(&knet->kni_kthread_lock);
> +
On 9/6/2016 3:14 PM, Ferruh Yigit wrote:
> On 9/6/2016 12:25 PM, Vladyslav Buslov wrote:
>> Allow binding KNI thread to specific core in single threaded mode
>> by setting core_id and force_bind config parameters.
>
> Thanks, patch does exactly what we talked, and as I tested it works fine.
>
> 1
On 9/6/2016 3:14 PM, Ferruh Yigit wrote:
> On 9/6/2016 12:25 PM, Vladyslav Buslov wrote:
>> Allow binding KNI thread to specific core in single threaded mode
>> by setting core_id and force_bind config parameters.
>
> Thanks, patch does exactly what we talked, and as I tested it works fine.
>
> 1
On 9/6/2016 12:25 PM, Vladyslav Buslov wrote:
> Allow binding KNI thread to specific core in single threaded mode
> by setting core_id and force_bind config parameters.
Thanks, patch does exactly what we talked, and as I tested it works fine.
1) There are a few comments, can you please find them
: add support for core_id param in single
threaded mode
On 9/6/2016 3:14 PM, Ferruh Yigit wrote:
> On 9/6/2016 12:25 PM, Vladyslav Buslov wrote:
>> Allow binding KNI thread to specific core in single threaded mode by
>> setting core_id and force_bind config parameters.
>
>
Allow binding KNI thread to specific core in single threaded mode
by setting core_id and force_bind config parameters.
Signed-off-by: Vladyslav Buslov
---
lib/librte_eal/linuxapp/kni/kni_misc.c | 48 ++
1 file changed, 32 insertions(+), 16 deletions(-)
diff --git
Allow binding KNI thread to specific core in single threaded mode
by setting core_id and force_bind config parameters.
Signed-off-by: Vladyslav Buslov
---
lib/librte_eal/linuxapp/kni/kni_misc.c | 48 ++
1 file changed, 32 insertions(+), 16 deletions(-)
diff --git
18 matches
Mail list logo