The patch titled drivers/video/ps3fb: fix memset size error has been removed from the -mm tree. Its filename was drivers-video-ps3fb-fix-memset-size-error.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: drivers/video/ps3fb: fix memset size error From: Li Zefan <lizf@xxxxxxxxxxxxxx> The size passing to memset is wrong. Signed-off-by Li Zefan <lizf@xxxxxxxxxxxxxx> Acked-by: Geert Uytterhoeven <Geert.Uytterhoeven@xxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/ps3fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/ps3fb.c~drivers-video-ps3fb-fix-memset-size-error drivers/video/ps3fb.c --- a/drivers/video/ps3fb.c~drivers-video-ps3fb-fix-memset-size-error +++ a/drivers/video/ps3fb.c @@ -727,7 +727,7 @@ static int ps3fb_blank(int blank, struct static int ps3fb_get_vblank(struct fb_vblank *vblank) { - memset(vblank, 0, sizeof(&vblank)); + memset(vblank, 0, sizeof(*vblank)); vblank->flags = FB_VBLANK_HAVE_VSYNC; return 0; } _ Patches currently in -mm which might be from lizf@xxxxxxxxxxxxxx are origin.patch arm-fix-memset-size-error.patch git-hid.patch ia64-efi-make-full-use-of-macro-efi_md_size.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