The patch titled drm: don't cast a pointer to pointer of list_head has been removed from the -mm tree. Its filename was drm-dont-cast-a-pointer-to-pointer-of-list_head.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: drm: don't cast a pointer to pointer of list_head From: Li Zefan <lizf@xxxxxxxxxxxxxx> The casting is safe only when the list_head member is the first member of the structure. Signed-off-by: Li Zefan <lizf@xxxxxxxxxxxxxx> Cc: Dave Airlie <airlied@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/drm/i915_irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/char/drm/i915_irq.c~drm-dont-cast-a-pointer-to-pointer-of-list_head drivers/char/drm/i915_irq.c --- a/drivers/char/drm/i915_irq.c~drm-dont-cast-a-pointer-to-pointer-of-list_head +++ a/drivers/char/drm/i915_irq.c @@ -699,7 +699,7 @@ int i915_vblank_swap(struct drm_device * spin_lock_irqsave(&dev_priv->swaps_lock, irqflags); - list_add_tail((struct list_head *)vbl_swap, &dev_priv->vbl_swaps.head); + list_add_tail(&vbl_swap->head, &dev_priv->vbl_swaps.head); dev_priv->swaps_pending++; spin_unlock_irqrestore(&dev_priv->swaps_lock, irqflags); _ Patches currently in -mm which might be from lizf@xxxxxxxxxxxxxx are powerpc-dont-cast-a-pointer-to-pointer-of-list_head.patch git-drm.patch git-hid.patch git-net.patch wireless-libertas-dont-cast-a-pointer-to-pointer-of-list_head.patch clocksource-remove-redundant-code.patch clockevent-simplify-list-operations.patch timekeeping-rename-timekeeping_is_continuous-to-timekeeping_valid_for_hres.patch time-fix-typo-in-comments.patch time-delete-comments-that-refer-to-noexistent-symbols.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