未验证 提交 9d6f05f7 编写于 作者: O openeuler-ci-bot 提交者: Gitee

!1223 iommu/iova: increase the iova_rcache depot max size to 128

Merge Pull Request from: @ci-robot 
 
PR sync from: Zhang Zekun <zhangzekun11@huawei.com>
https://mailweb.openeuler.org/hyperkitty/list/kernel@openeuler.org/message/OQE3GDKPH36NAFWPS5QAOYB7RBEGMMIE/ 
 
 
Link:https://gitee.com/openeuler/kernel/pulls/1223 

Reviewed-by: Weilong Chen <chenweilong@huawei.com> 
Reviewed-by: Hanjun Guo <guohanjun@huawei.com> 
Signed-off-by: Jialin Zhang <zhangjialin11@huawei.com> 
...@@ -437,5 +437,15 @@ config SMMU_BYPASS_DEV ...@@ -437,5 +437,15 @@ config SMMU_BYPASS_DEV
This feature will be replaced by ACPI IORT RMR node, which will be This feature will be replaced by ACPI IORT RMR node, which will be
upstreamed in mainline. upstreamed in mainline.
config IOVA_MAX_GLOBAL_MAGS
int "Set the max iova global magzines in iova rcache"
range 16 2048
default "32"
help
Iova rcache global magizine is shared among every cpu. The size of
it can be a bottle neck when lots of cpus are contending to use it.
If you are suffering from the speed of allocing iova with more than
128 cpus, try to tune this config larger.
endif # IOMMU_SUPPORT endif # IOMMU_SUPPORT
...@@ -26,7 +26,7 @@ struct iova_magazine; ...@@ -26,7 +26,7 @@ struct iova_magazine;
struct iova_cpu_rcache; struct iova_cpu_rcache;
#define IOVA_RANGE_CACHE_MAX_SIZE 6 /* log of max cached IOVA range size (in pages) */ #define IOVA_RANGE_CACHE_MAX_SIZE 6 /* log of max cached IOVA range size (in pages) */
#define MAX_GLOBAL_MAGS 32 /* magazines per bin */ #define MAX_GLOBAL_MAGS CONFIG_IOVA_MAX_GLOBAL_MAGS /* magazines per bin */
struct iova_rcache { struct iova_rcache {
spinlock_t lock; spinlock_t lock;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册