mbox series

[v2,0/2] vhost: fix names to follow new naming convention

Message ID 20230309051643.70171-1-nmiki@yahoo-corp.jp (mailing list archive)
Headers
Series vhost: fix names to follow new naming convention |

Message

Nobuhiro MIKI March 9, 2023, 5:16 a.m. UTC
  In this series, we simply replace 'master' with 'frontend' and
'slave' with 'backend' so that vhost user protocol message,
protocol names follow the new naming conventions.

v2:
- Update .mailmap in patch 1
- Replace 'master' with 'frontend' in patch 2

Nobuhiro MIKI (2):
  vhost: fix constants to follow new naming convention
  vhost: refactor to follow new naming convention

 .mailmap                        |  2 +-
 drivers/vdpa/ifc/ifcvf_vdpa.c   |  6 +--
 drivers/vdpa/mlx5/mlx5_vdpa.c   |  4 +-
 drivers/vdpa/sfc/sfc_vdpa_ops.c |  4 +-
 lib/vhost/rte_vhost.h           | 16 +++---
 lib/vhost/version.map           |  2 +-
 lib/vhost/vhost.c               |  4 +-
 lib/vhost/vhost.h               |  4 +-
 lib/vhost/vhost_crypto.c        |  2 +-
 lib/vhost/vhost_user.c          | 90 ++++++++++++++++-----------------
 lib/vhost/vhost_user.h          | 22 ++++----
 11 files changed, 78 insertions(+), 78 deletions(-)
  

Comments

Maxime Coquelin March 16, 2023, 2:47 p.m. UTC | #1
On 3/9/23 06:16, Nobuhiro MIKI wrote:
> In this series, we simply replace 'master' with 'frontend' and
> 'slave' with 'backend' so that vhost user protocol message,
> protocol names follow the new naming conventions.
> 
> v2:
> - Update .mailmap in patch 1
> - Replace 'master' with 'frontend' in patch 2
> 
> Nobuhiro MIKI (2):
>    vhost: fix constants to follow new naming convention
>    vhost: refactor to follow new naming convention
> 
>   .mailmap                        |  2 +-
>   drivers/vdpa/ifc/ifcvf_vdpa.c   |  6 +--
>   drivers/vdpa/mlx5/mlx5_vdpa.c   |  4 +-
>   drivers/vdpa/sfc/sfc_vdpa_ops.c |  4 +-
>   lib/vhost/rte_vhost.h           | 16 +++---
>   lib/vhost/version.map           |  2 +-
>   lib/vhost/vhost.c               |  4 +-
>   lib/vhost/vhost.h               |  4 +-
>   lib/vhost/vhost_crypto.c        |  2 +-
>   lib/vhost/vhost_user.c          | 90 ++++++++++++++++-----------------
>   lib/vhost/vhost_user.h          | 22 ++++----
>   11 files changed, 78 insertions(+), 78 deletions(-)
> 

Applied to dpdk-next-virtio/main.

Thanks,
Maxime