Re: [PATCH V4] mtd: m25p80: Modify the name of mtd_info

2014-04-21 Thread Huang Shijie
> V2: > 1. Fix some code style issue. > 2. Cast physical address to unsigned long long. > > drivers/mtd/devices/m25p80.c | 16 ++-- please rebase this patch on the latest l2-mtd tree. thanks Huang Shijie ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

[PATCH] kconfig: remove CONFIG_MTD_NAND_VERIFY_WRITE

2012-08-15 Thread Huang Shijie
; So kill MTD_NAND_VERIFY_WRITE entirely. Please see the patch: http://lists.infradead.org/pipermail/linux-mtd/2012-August/043189.html This patch removes the CONFIG_MTD_NAND_VERIFY_WRITE in the defconfigs. Signed-off-by: Huang Shijie --- arch/arm/configs/bcmring_defconfig |1 - arch/a

[PATCH] init: refactor the generic cpu_to_node for NUMA

2024-01-17 Thread Huang Shijie
4) introduce smp_prepare_cpus_done() to wrap the original smp_prepare_cpus(). The "numa_node" is ready after smp_prepare_cpus(), then set cpu_to_node with _cpu_to_node(). Signed-off-by: Huang Shijie --- drivers/base/arch_numa.c | 11 +++

[PATCH] NUMA: Early use of cpu_to_node() returns 0 instead of the correct node id

2024-01-18 Thread Huang Shijie
: Huang Shijie --- drivers/base/arch_numa.c | 11 +++ include/linux/topology.h | 6 ++ init/main.c | 29 +++-- 3 files changed, 40 insertions(+), 6 deletions(-) diff --git a/drivers/base/arch_numa.c b/drivers/base/arch_numa.c index 5b59d133b6af

[PATCH v2] NUMA: Early use of cpu_to_node() returns 0 instead of the correct node id

2024-01-22 Thread Huang Shijie
_cpu_to_node(). Signed-off-by: Huang Shijie --- v1 --> v2: In order to fix the x86 compiling error, move the cpu_to_node() from driver/base/arch_numa.c to driver/base/node.c. v1: http://lists.infradead.org/pipermail/linux-arm-kernel/2024-January/896160.html An

[PATCH v3] NUMA: Early use of cpu_to_node() returns 0 instead of the correct node id

2024-01-25 Thread Huang Shijie
after smp_prepare_boot_cpu() in start_kernel. early_numa_node_init will initialize the "numa_node" as soon as the early_cpu_to_node() is ready, before the cpu_to_node() is called at the first time. Signed-off-by: Huang Shijie --- v2 --> v3: Do not change the cpu_to_node to fun