From: Palmer Dabbelt Date: Tue, 2 Oct 2018 19:14:55 +0000 (-0700) Subject: RISC-V: Don't set cacheinfo.{physical_line_partition,attributes} X-Git-Tag: v4.20-rc1~112^2^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=566d6c428eadf9dc06df8b2195dff58d9a97c9e6;p=thirdparty%2Fkernel%2Flinux.git RISC-V: Don't set cacheinfo.{physical_line_partition,attributes} These are just hard coded in the RISC-V port, which doesn't make any sense. We should probably be setting these from device tree entries when they exist, but for now I think it's saner to just leave them all as their default values. Signed-off-by: Palmer Dabbelt Reviewed-by: Christoph Hellwig Reviewed-by: Jeremy Linton Signed-off-by: Palmer Dabbelt --- diff --git a/arch/riscv/kernel/cacheinfo.c b/arch/riscv/kernel/cacheinfo.c index 0bc86e5f8f3fb..cb35ffd8ec6be 100644 --- a/arch/riscv/kernel/cacheinfo.c +++ b/arch/riscv/kernel/cacheinfo.c @@ -22,13 +22,6 @@ static void ci_leaf_init(struct cacheinfo *this_leaf, { this_leaf->level = level; this_leaf->type = type; - /* not a sector cache */ - this_leaf->physical_line_partition = 1; - /* TODO: Add to DTS */ - this_leaf->attributes = - CACHE_WRITE_BACK - | CACHE_READ_ALLOCATE - | CACHE_WRITE_ALLOCATE; } static int __init_cache_level(unsigned int cpu)