The patch titled slqb: use correct name for rcu callback has been removed from the -mm tree. Its filename was slqb-use-correct-name-for-rcu-callback.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: slqb: use correct name for rcu callback From: Lai Jiangshan <laijs@xxxxxxxxxxxxxx> struct slqb_page defines struct rcu_head rcu_head for rcu, the rcu callback should use it. Signed-off-by: Lai Jiangshan <laijs@xxxxxxxxxxxxxx> Acked-by: Nick Piggin <npiggin@xxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slqb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/slqb.c~slqb-use-correct-name-for-rcu-callback mm/slqb.c --- a/mm/slqb.c~slqb-use-correct-name-for-rcu-callback +++ a/mm/slqb.c @@ -1022,7 +1022,7 @@ static void rcu_free_slab(struct rcu_hea { struct slqb_page *page; - page = container_of((struct list_head *)h, struct slqb_page, lru); + page = container_of(h, struct slqb_page, rcu_head); __free_slab(page->list->cache, page); } _ Patches currently in -mm which might be from laijs@xxxxxxxxxxxxxx are origin.patch linux-next.patch kallsyms-tracing-output-more-proper-symbol-name.patch workqueue-avoid-recursion-in-run_workqueue.patch cpu-hotplug-remove-unused-cpuhotplug_mutex_lock.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