The patch titled lguest update for mm: simplify boot_params has been added to the -mm tree. Its filename is lguest-the-host-code-update-for-mm-simplify-boot_params.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: lguest update for mm: simplify boot_params From: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Andrew patched up lguest after the boot parameters became a proper structure, but in fact it can be considerably neatened. Signed-off-by: Rusty Russell <rusty@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/lguest/lguest.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/lguest/lguest.c~lguest-the-host-code-update-for-mm-simplify-boot_params drivers/lguest/lguest.c --- a/drivers/lguest/lguest.c~lguest-the-host-code-update-for-mm-simplify-boot_params +++ a/drivers/lguest/lguest.c @@ -444,8 +444,7 @@ __init void lguest_init(void *boot) { /* Copy boot parameters first. */ memcpy(&boot_params, boot, PARAM_SIZE); - memcpy(boot_command_line, - __va(*(unsigned long *)((void *)&boot_params + NEW_CL_POINTER)), + memcpy(boot_command_line, __va(boot_params.hdr.cmd_line_ptr), COMMAND_LINE_SIZE); paravirt_ops.name = "lguest"; _ Patches currently in -mm which might be from rusty@xxxxxxxxxxxxxxx are refine-screen_info-sanity-check-for-vgacon-initialization.patch fix-x86_64-mm-sched-clock-share.patch xfs-clean-up-shrinker-games.patch mm-clean-up-and-kernelify-shrinker-registration.patch use-menuconfig-objects-ii-module-menu.patch split-usermodehelper-setup-from-execution.patch fix-stop_machine_run-problem-with-naughty-real-time-process.patch cpu-hotplug-fix-ksoftirqd-termination-on-cpu-hotplug-with-naughty-realtime-process.patch cpu-hotplug-fix-ksoftirqd-termination-on-cpu-hotplug-with-naughty-realtime-process-fix.patch lguest-export-symbols-for-lguest-as-a-module.patch lguest-the-guest-code.patch lguest-the-guest-code-tidyups.patch lguest-the-guest-code-tidyups-update.patch lguest-the-host-code.patch lguest-the-host-code-tidyups.patch lguest-the-host-code-tidyups-update.patch lguest-the-host-code-borkages.patch lguest-the-host-code-update-for-mm-simplify-boot_params.patch lguest-the-asm-offsets.patch lguest-the-makefile-and-kconfig.patch lguest-the-makefile-and-kconfig-tidyups.patch lguest-the-console-driver.patch lguest-the-console-driver-tidyups.patch lguest-the-net-driver.patch lguest-the-net-driver-tidyups.patch lguest-the-net-driver-tidyups-update.patch lguest-the-block-driver.patch lguest-the-block-driver-tidyups.patch lguest-the-block-driver-tidyups-update.patch lguest-the-documentation-example-launcher.patch lguest-update-for-mm-disable-tsc-dont-set-pge-bit.patch mm-clean-up-and-kernelify-shrinker-registration-reiser4.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