net/mlx4: remove barrier for memory region cache
authorFeifei Wang <feifei.wang2@arm.com>
Tue, 18 May 2021 08:50:57 +0000 (16:50 +0800)
committerRaslan Darawsheh <rasland@nvidia.com>
Wed, 23 Jun 2021 15:02:35 +0000 (17:02 +0200)
commitf0f7c557f3a17f87eba08d801cbf27de1515d13b
tree39c270817b3c1511bf478526861c9c8e2fb5590a
parent80731e4b5b44036d05ae9b36432b6f2fd9f49d3b
net/mlx4: remove barrier for memory region cache

'dev_gen' is a variable to trigger all cores to flush their local caches
once the global MR cache has been rebuilt.

This is due to MR cache's R/W lock can maintain synchronization between
threads:

1. dev_gen and global cache updating ordering inside the lock protected
section does not matter. Because other threads cannot take the lock
until global cache has been updated. Thus, in out of order platform,
even if other agents firstly observe updated dev_gen but global does
not update, they still have to wait the lock. As a result, it is
unnecessary to add a wmb between global cache rebuilding and updating
the dev_gen to keep the memory store order.

2. Store-Release of unlock provides the implicit wmb at the level
visible by software. This makes 'rebuilding global cache' and 'updating
dev_gen' be observed before local_cache starts to be updated by other
agents. Thus, wmb after 'updating dev_gen' can be removed.

Suggested-by: Ruifeng Wang <ruifeng.wang@arm.com>
Signed-off-by: Feifei Wang <feifei.wang2@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
drivers/net/mlx4/mlx4_mr.c