Subject: [ibm-linux-cell] [PATCH] cell: fix null smm_pgsz_get pointer When booting the current cell tree, I get a page fault on 0x0, due to spu_priv1_ops->smm_pgsz_set being NULL. This sets adds the omitted assignment. Booted on cell (DD2). Signed-off-by: Jeremy Kerr Signed-off-by: Arnd Bergmann arch/powerpc/platforms/cell/spu_priv1_mmio.c | 1 + 1 file changed, 1 insertion(+) Index: linux-cg/arch/powerpc/platforms/cell/spu_priv1_mmio.c =================================================================== --- linux-cg.orig/arch/powerpc/platforms/cell/spu_priv1_mmio.c 2006-07-18 18:17:29.000000000 +0200 +++ linux-cg/arch/powerpc/platforms/cell/spu_priv1_mmio.c 2006-07-18 18:17:29.000000000 +0200 @@ -160,6 +160,7 @@ .mfc_sr1_get = mfc_sr1_get, .mfc_tclass_id_set = mfc_tclass_id_set, .mfc_tclass_id_get = mfc_tclass_id_get, + .smm_pgsz_set = smm_pgsz_set, .tlb_invalidate = tlb_invalidate, .resource_allocation_groupID_set = resource_allocation_groupID_set, .resource_allocation_groupID_get = resource_allocation_groupID_get,