The patch titled
drm: don't cast a pointer to pointer of list_head
has been added to the -mm tree. Its filename is
drm-dont-cast-a-pointer-to-pointer-of-list_head.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: drm: don't cast a pointer to pointer of list_head
From: Li Zefan <[EMAIL PROTECTED]>
The casting is safe only when the list_head member is the first member of
the structure.
Signed-off-by: Li Zefan <[EMAIL PROTECTED]>
Cc: Dave Airlie <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] are
drm-dont-cast-a-pointer-to-pointer-of-list_head.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 [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html