mbox series

[0/6] padata cleanups

Message ID 20200714201356.889176-1-daniel.m.jordan@oracle.com (mailing list archive)
Headers show
Series padata cleanups | expand

Message

Daniel Jordan July 14, 2020, 8:13 p.m. UTC
These cleanups save ~5% of the padata text/data and make it a little
easier to use and develop going forward.

In particular, they pave the way to extend padata's multithreading support to
VFIO, a work-in-progress version of which can be found here:

    https://oss.oracle.com/git/gitweb.cgi?p=linux-dmjordan.git;a=shortlog;h=refs/heads/padata-mt-wip-v0.5

Based on v5.8-rc5.  As always, feedback is welcome.

Daniel

Daniel Jordan (6):
  padata: remove start function
  padata: remove stop function
  padata: inline single call of pd_setup_cpumasks()
  padata: remove effective cpumasks from the instance
  padata: fold padata_alloc_possible() into padata_alloc()
  padata: remove padata_parallel_queue

 Documentation/core-api/padata.rst |  18 +--
 crypto/pcrypt.c                   |  17 +--
 include/linux/padata.h            |  21 +---
 kernel/padata.c                   | 177 ++++++------------------------
 4 files changed, 46 insertions(+), 187 deletions(-)


base-commit: 11ba468877bb23f28956a35e896356252d63c983

Comments

Herbert Xu July 23, 2020, 7:57 a.m. UTC | #1
On Tue, Jul 14, 2020 at 04:13:50PM -0400, Daniel Jordan wrote:
> These cleanups save ~5% of the padata text/data and make it a little
> easier to use and develop going forward.
> 
> In particular, they pave the way to extend padata's multithreading support to
> VFIO, a work-in-progress version of which can be found here:
> 
>     https://oss.oracle.com/git/gitweb.cgi?p=linux-dmjordan.git;a=shortlog;h=refs/heads/padata-mt-wip-v0.5
> 
> Based on v5.8-rc5.  As always, feedback is welcome.
> 
> Daniel
> 
> Daniel Jordan (6):
>   padata: remove start function
>   padata: remove stop function
>   padata: inline single call of pd_setup_cpumasks()
>   padata: remove effective cpumasks from the instance
>   padata: fold padata_alloc_possible() into padata_alloc()
>   padata: remove padata_parallel_queue
> 
>  Documentation/core-api/padata.rst |  18 +--
>  crypto/pcrypt.c                   |  17 +--
>  include/linux/padata.h            |  21 +---
>  kernel/padata.c                   | 177 ++++++------------------------
>  4 files changed, 46 insertions(+), 187 deletions(-)

All applied.  Thanks.