Re: [PATCH 15/22] xen/pvcalls: Use alloc_ordered_workqueue() to create ordered workqueues

2023-05-08 Thread Tejun Heo
Applied to wq/for-6.5-cleanup-ordered. Thanks. -- tejun

Re: [PATCH 15/22] xen/pvcalls: Use alloc_ordered_workqueue() to create ordered workqueues

2023-05-08 Thread Juergen Gross
On 21.04.23 04:50, Tejun Heo wrote: BACKGROUND == When multiple work items are queued to a workqueue, their execution order doesn't match the queueing order. They may get executed in any order and simultaneously. When fully serialized execution - one by one in the queueing order - is

[PATCH 15/22] xen/pvcalls: Use alloc_ordered_workqueue() to create ordered workqueues

2023-04-20 Thread Tejun Heo
BACKGROUND == When multiple work items are queued to a workqueue, their execution order doesn't match the queueing order. They may get executed in any order and simultaneously. When fully serialized execution - one by one in the queueing order - is needed, an ordered workqueue should be