Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1451794 > unrolled thread
| Started by | Bhaktipriya Shridhar <bhaktipriya96@gmail.com> |
|---|---|
| First post | 2016-07-28 10:30 +0200 |
| Last post | 2016-07-29 00:50 +0200 |
| Articles | 8 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Bhaktipriya Shridhar <bhaktipriya96@gmail.com> - 2016-07-28 10:30 +0200
Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Leon Romanovsky <leonro@mellanox.com> - 2016-07-28 11:40 +0200
Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Saeed Mahameed <saeedm@dev.mellanox.co.il> - 2016-07-29 00:50 +0200
Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Tejun Heo <tj@kernel.org> - 2016-07-29 14:30 +0200
Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Leon Romanovsky <leonro@mellanox.com> - 2016-07-31 09:00 +0200
Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Tejun Heo <tj@kernel.org> - 2016-08-01 17:20 +0200
Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Leon Romanovsky <leonro@mellanox.com> - 2016-08-02 08:00 +0200
Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue Saeed Mahameed <saeedm@dev.mellanox.co.il> - 2016-07-29 00:50 +0200
| From | Bhaktipriya Shridhar <bhaktipriya96@gmail.com> |
|---|---|
| Date | 2016-07-28 10:30 +0200 |
| Subject | [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue |
| Message-ID | <rZORz-3Ef-1@gated-at.bofh.it> |
A dedicated workqueue has been used since the work items are being used
on a memory reclaim path. WQ_MEM_RECLAIM has been set to guarantee forward
progress under memory pressure.
The workqueue has a single work item. Hence, alloc_workqueue() is used
instead of alloc_ordered_workqueue() since ordering is unnecessary when
there's only one work item.
Explicit concurrency limit is unnecessary here since there are only a
fixed number of work items.
Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
---
drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
index 9eeee05..7c85262 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
@@ -552,7 +552,8 @@ void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev)
int mlx5_pagealloc_start(struct mlx5_core_dev *dev)
{
- dev->priv.pg_wq = create_singlethread_workqueue("mlx5_page_allocator");
+ dev->priv.pg_wq = alloc_workqueue("mlx5_page_allocator",
+ WQ_MEM_RECLAIM, 0);
if (!dev->priv.pg_wq)
return -ENOMEM;
--
2.1.4
[toc] | [next] | [standalone]
| From | Leon Romanovsky <leonro@mellanox.com> |
|---|---|
| Date | 2016-07-28 11:40 +0200 |
| Message-ID | <rZPXj-4m8-1@gated-at.bofh.it> |
| In reply to | #1451794 |
[Multipart message — attachments visible in raw view] — view raw
On Thu, Jul 28, 2016 at 01:49:49PM +0530, Bhaktipriya Shridhar wrote:
> A dedicated workqueue has been used since the work items are being used
> on a memory reclaim path. WQ_MEM_RECLAIM has been set to guarantee forward
> progress under memory pressure.
>
> The workqueue has a single work item. Hence, alloc_workqueue() is used
> instead of alloc_ordered_workqueue() since ordering is unnecessary when
> there's only one work item.
>
> Explicit concurrency limit is unnecessary here since there are only a
> fixed number of work items.
>
> Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
Hi Bhaktipriya,
First of all, I would like to thank you for your work and invite you to
continue, but can you please submit ONE patch SERIES which changes all
similar places?
BTW,
Did you test this patch? Did you notice the memory reclaim path nature
of this work?
Thanks
>
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
> index 9eeee05..7c85262 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
> @@ -552,7 +552,8 @@ void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev)
>
> int mlx5_pagealloc_start(struct mlx5_core_dev *dev)
> {
> - dev->priv.pg_wq = create_singlethread_workqueue("mlx5_page_allocator");
> + dev->priv.pg_wq = alloc_workqueue("mlx5_page_allocator",
> + WQ_MEM_RECLAIM, 0);
> if (!dev->priv.pg_wq)
> return -ENOMEM;
>
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
[toc] | [prev] | [next] | [standalone]
| From | Saeed Mahameed <saeedm@dev.mellanox.co.il> |
|---|---|
| Date | 2016-07-29 00:50 +0200 |
| Subject | Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue |
| Message-ID | <s02hQ-4cF-11@gated-at.bofh.it> |
| In reply to | #1451825 |
On Thu, Jul 28, 2016 at 12:37 PM, Leon Romanovsky <leonro@mellanox.com> wrote:
> On Thu, Jul 28, 2016 at 01:49:49PM +0530, Bhaktipriya Shridhar wrote:
>> A dedicated workqueue has been used since the work items are being used
>> on a memory reclaim path. WQ_MEM_RECLAIM has been set to guarantee forward
>> progress under memory pressure.
>>
>> The workqueue has a single work item. Hence, alloc_workqueue() is used
>> instead of alloc_ordered_workqueue() since ordering is unnecessary when
>> there's only one work item.
>>
>> Explicit concurrency limit is unnecessary here since there are only a
>> fixed number of work items.
>>
>> Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
>> ---
>> drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> Hi Bhaktipriya,
>
> First of all, I would like to thank you for your work and invite you to
> continue, but can you please submit ONE patch SERIES which changes all
> similar places?
>
I agree with Leon, please push one series for all mlx5 patches and add
some explanation in the cover letter regarding the motivation of this
work.
> BTW,
> Did you test this patch? Did you notice the memory reclaim path nature
> of this work?
>
> Thanks
>
>>
>> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
>> index 9eeee05..7c85262 100644
>> --- a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
>> +++ b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
>> @@ -552,7 +552,8 @@ void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev)
>>
>> int mlx5_pagealloc_start(struct mlx5_core_dev *dev)
>> {
>> - dev->priv.pg_wq = create_singlethread_workqueue("mlx5_page_allocator");
>> + dev->priv.pg_wq = alloc_workqueue("mlx5_page_allocator",
>> + WQ_MEM_RECLAIM, 0);
>> if (!dev->priv.pg_wq)
>> return -ENOMEM;
>>
>> --
>> 2.1.4
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2016-07-29 14:30 +0200 |
| Message-ID | <s0f5n-4zA-15@gated-at.bofh.it> |
| In reply to | #1451825 |
Hello, On Thu, Jul 28, 2016 at 12:37:35PM +0300, Leon Romanovsky wrote: > Did you test this patch? Did you notice the memory reclaim path nature > of this work? The conversion uses WQ_MEM_RECLAIM, which is standard for all workqueues which can stall packet processing if stalled. The requirement comes from nfs or block devices over network. Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Leon Romanovsky <leonro@mellanox.com> |
|---|---|
| Date | 2016-07-31 09:00 +0200 |
| Message-ID | <s0ST7-54W-3@gated-at.bofh.it> |
| In reply to | #1452393 |
[Multipart message — attachments visible in raw view] — view raw
On Fri, Jul 29, 2016 at 08:22:37AM -0400, Tejun Heo wrote: > Hello, > > On Thu, Jul 28, 2016 at 12:37:35PM +0300, Leon Romanovsky wrote: > > Did you test this patch? Did you notice the memory reclaim path nature > > of this work? > > The conversion uses WQ_MEM_RECLAIM, which is standard for all > workqueues which can stall packet processing if stalled. The > requirement comes from nfs or block devices over network. The title stays "remove deprecated create_singlethread_workqueue" and if we put aside the word "deprecated", the code moves from ordered workqueue to unordered workqueue and changes max_active count which isn't expressed in commit message. For reclaim paths, I want to be extra caution and want to see justification for doing that along with understanding if it is tested or not. Right now, I'm feeling that I'm participating in soapie where one sends patch for every line, waits and sends the same patch for another file. It is worth to send one patch set and let us to test it all in once. Thanks. > > Thanks. > > -- > tejun > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2016-08-01 17:20 +0200 |
| Message-ID | <s1nax-7Zk-5@gated-at.bofh.it> |
| In reply to | #1452778 |
Hello, Leon. On Sun, Jul 31, 2016 at 09:35:13AM +0300, Leon Romanovsky wrote: > > The conversion uses WQ_MEM_RECLAIM, which is standard for all > > workqueues which can stall packet processing if stalled. The > > requirement comes from nfs or block devices over network. > > The title stays "remove deprecated create_singlethread_workqueue" and if > we put aside the word "deprecated", the code moves from ordered > workqueue to unordered workqueue and changes max_active count which > isn't expressed in commit message. Maybe it was too compressed but the description says "The workqueue has a single work item. Hence, alloc_workqueue() is used instead of alloc_ordered_workqueue() since ordering is unnecessary when there's only one work item." There's only one work item so whether the workqueue is ordered and its concurrency level don't make any difference. The reason why people used to use create_singlethread_workqueue() in these situations was because per-cpu workqueues used to be very expensive which isn't true anymore. > For reclaim paths, I want to be extra caution and want to see > justification for doing that along with understanding if it is tested or > not. WQ_MEM_RECLAIM maintains the behavior of the existing code and the requirement comes from network interfaces being used for nfs and transport for block devices and is universial to everything in network layer. The only test we can do here is removing it and pushing it really hard and see whether we can actually trigger deadlock, which it will under the right circumstances which may or may not be easy to replicate in test environments. I don't see many merits in doing this especially when the behavior doesn't change from the existing code. > Right now, I'm feeling that I'm participating in soapie where one sends > patch for every line, waits and sends the same patch for another file. > It is worth to send one patch set and let us to test it all in once. Yeah, I guess it can be a bit annoying. Bhaktipriya, can you please group patches for meallnox? Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Leon Romanovsky <leonro@mellanox.com> |
|---|---|
| Date | 2016-08-02 08:00 +0200 |
| Message-ID | <s1AU9-jn-13@gated-at.bofh.it> |
| In reply to | #1453270 |
[Multipart message — attachments visible in raw view] — view raw
On Mon, Aug 01, 2016 at 11:11:19AM -0400, Tejun Heo wrote: > > Right now, I'm feeling that I'm participating in soapie where one sends > > patch for every line, waits and sends the same patch for another file. > > It is worth to send one patch set and let us to test it all in once. > > Yeah, I guess it can be a bit annoying. Bhaktipriya, can you please > group patches for meallnox? Please do. Thanks. > > Thanks. > > -- > tejun > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html
[toc] | [prev] | [next] | [standalone]
| From | Saeed Mahameed <saeedm@dev.mellanox.co.il> |
|---|---|
| Date | 2016-07-29 00:50 +0200 |
| Subject | Re: [PATCH] net/mlx5_core/pagealloc: Remove deprecated create_singlethread_workqueue |
| Message-ID | <s02hQ-4cF-7@gated-at.bofh.it> |
| In reply to | #1451794 |
On Thu, Jul 28, 2016 at 11:19 AM, Bhaktipriya Shridhar
<bhaktipriya96@gmail.com> wrote:
> A dedicated workqueue has been used since the work items are being used
> on a memory reclaim path. WQ_MEM_RECLAIM has been set to guarantee forward
> progress under memory pressure.
>
> The workqueue has a single work item. Hence, alloc_workqueue() is used
> instead of alloc_ordered_workqueue() since ordering is unnecessary when
> there's only one work item.
let's keep the current behavior (ST WQ) because at the moment we don't
know how this WQ will evolve in the future, the original author had
something in mind .. let's keep.
>
> Explicit concurrency limit is unnecessary here since there are only a
> fixed number of work items.
>
> Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
> index 9eeee05..7c85262 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
> @@ -552,7 +552,8 @@ void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev)
>
> int mlx5_pagealloc_start(struct mlx5_core_dev *dev)
> {
> - dev->priv.pg_wq = create_singlethread_workqueue("mlx5_page_allocator");
> + dev->priv.pg_wq = alloc_workqueue("mlx5_page_allocator",
> + WQ_MEM_RECLAIM, 0);
> if (!dev->priv.pg_wq)
> return -ENOMEM;
>
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web