Subject: [merged] powerpc-mm-fix-__node_distance-undefined.patch removed from -mm tree To: qiudayu@xxxxxxxxxxxxxxxxxx,alistair@xxxxxxxxxxxx,benh@xxxxxxxxxxxxxxxxxxx,jlarrew@xxxxxxxxxxxxxxxxxx,nfont@xxxxxxxxxxxxxxxxxx,paulus@xxxxxxxxx,rcj@xxxxxxxxxxxxxxxxxx,sfr@xxxxxxxxxxxxxxxx,srivatsa.bhat@xxxxxxxxxxxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Mon, 21 Apr 2014 11:10:57 -0700 The patch titled Subject: powerpc/mm: fix ".__node_distance" undefined has been removed from the -mm tree. Its filename was powerpc-mm-fix-__node_distance-undefined.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Mike Qiu <qiudayu@xxxxxxxxxxxxxxxxxx> Subject: powerpc/mm: fix ".__node_distance" undefined CHK include/config/kernel.release CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h ... Building modules, stage 2. WARNING: 1 bad relocations c0000000013d6a30 R_PPC64_ADDR64 uprobes_fetch_type_table WRAP arch/powerpc/boot/zImage.pseries WRAP arch/powerpc/boot/zImage.epapr MODPOST 1849 modules ERROR: ".__node_distance" [drivers/block/nvme.ko] undefined! make[1]: *** [__modpost] Error 1 make: *** [modules] Error 2 make: *** Waiting for unfinished jobs.... The reason is symbol "__node_distance" not been exported in powerpc. Signed-off-by: Mike Qiu <qiudayu@xxxxxxxxxxxxxxxxxx> Acked-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Cc: Nathan Fontenot <nfont@xxxxxxxxxxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Cc: Srivatsa S. Bhat <srivatsa.bhat@xxxxxxxxxxxxxxxxxx> Cc: Jesse Larrew <jlarrew@xxxxxxxxxxxxxxxxxx> Cc: Robert Jennings <rcj@xxxxxxxxxxxxxxxxxx> Cc: Alistair Popple <alistair@xxxxxxxxxxxx> Cc: Mike Qiu <qiudayu@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/powerpc/mm/numa.c | 1 + 1 file changed, 1 insertion(+) diff -puN arch/powerpc/mm/numa.c~powerpc-mm-fix-__node_distance-undefined arch/powerpc/mm/numa.c --- a/arch/powerpc/mm/numa.c~powerpc-mm-fix-__node_distance-undefined +++ a/arch/powerpc/mm/numa.c @@ -232,6 +232,7 @@ int __node_distance(int a, int b) return distance; } +EXPORT_SYMBOL(__node_distance); static void initialize_distance_lookup_table(int nid, const __be32 *associativity) _ Patches currently in -mm which might be from qiudayu@xxxxxxxxxxxxxxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html