The patch titled uml-linec-avoid-null-pointer-dereference-simplify has been removed from the -mm tree. Its filename was uml-linec-avoid-null-pointer-dereference-simplify.patch This patch was dropped because it was folded into uml-linec-avoid-null-pointer-dereference.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: uml-linec-avoid-null-pointer-dereference-simplify From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Alexander Beregalov <a.beregalov@xxxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/um/drivers/line.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff -puN arch/um/drivers/line.c~uml-linec-avoid-null-pointer-dereference-simplify arch/um/drivers/line.c --- a/arch/um/drivers/line.c~uml-linec-avoid-null-pointer-dereference-simplify +++ a/arch/um/drivers/line.c @@ -20,10 +20,8 @@ static irqreturn_t line_interrupt(int ir struct line *line = chan->line; struct tty_struct *tty; - if (line) { - tty = line->tty; - chan_interrupt(&line->chan_list, &line->task, tty, irq); - } + if (line) + chan_interrupt(&line->chan_list, &line->task, line->tty, irq); return IRQ_HANDLED; } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch bitops-rename-for_each_bit-to-for_each_set_bit.patch mm-avoid-false-sharing-of-mm_counter.patch mm-count-swap-usage.patch vmscan-check-high-watermark-after-shrink-zone.patch mm-remove-function-free_hot_page.patch mm-restore-zone-all_unreclaimable-to-independence-word.patch memory-hotplug-create-sys-firmware-memmap-entry-for-new-memory.patch include-linux-fsh-convert-fmode_-constants-to-hex.patch mm-change-anon_vma-linking-to-fix-multi-process-server-scalability-issue.patch mm-pm-force-gfp_noio-during-suspend-hibernation-and-resume.patch uml-linec-avoid-null-pointer-dereference.patch uml-linec-avoid-null-pointer-dereference-simplify.patch lib-more-scalable-list_sort-fix.patch fs-compat_ioctlc-suppress-two-warnings.patch sdio-introduce-api-for-special-power-management-features-fix.patch mm-pass-mm-flags-as-a-coredump-parameter-for-consistency-fix.patch gpio-pca953xc-add-interrupt-handling-capability.patch gpio-pca953xc-add-interrupt-handling-capability-fix.patch gpio-cs5535-gpio-fix-input-direction.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