The patch titled ramdisk: remove long-deprecated "ramdisk=" boot-time parameter has been removed from the -mm tree. Its filename was ramdisk-remove-long-deprecated-ramdisk=-boot-time-param.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: ramdisk: remove long-deprecated "ramdisk=" boot-time parameter From: "Robert P. J. Day" <rpjday@xxxxxxxxxxxxxx> The "ramdisk" parameter was removed from the defunct rd.c file quite some time ago, in favour of the more specific "ramdisk_size" parameter so, for consistency, the same should be done here. Signed-off-by: Robert P. J. Day <rpjday@xxxxxxxxxxxxxx> Cc: Jens Axboe <jens.axboe@xxxxxxxxxx> Acked-by: Nick Piggin <nickpiggin@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/brd.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff -puN drivers/block/brd.c~ramdisk-remove-long-deprecated-ramdisk=-boot-time-param drivers/block/brd.c --- a/drivers/block/brd.c~ramdisk-remove-long-deprecated-ramdisk=-boot-time-param +++ a/drivers/block/brd.c @@ -407,12 +407,7 @@ static int __init ramdisk_size(char *str rd_size = simple_strtol(str, NULL, 0); return 1; } -static int __init ramdisk_size2(char *str) -{ - return ramdisk_size(str); -} -__setup("ramdisk=", ramdisk_size); -__setup("ramdisk_size=", ramdisk_size2); +__setup("ramdisk_size=", ramdisk_size); #endif /* _ Patches currently in -mm which might be from rpjday@xxxxxxxxxxxxxx are origin.patch linux-next.patch drm-simplify-kcalloc-call-to-kzalloc.patch kernel-kfifoc-replace-conditional-test-with-is_power_of_2.patch ntfs-use-is_power_of_2-function-for-clarity.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