The patch titled lib-add-lib-gcdc-fix has been removed from the -mm tree. Its filename was lib-add-lib-gcdc-fix.patch This patch was dropped because it was folded into lib-add-lib-gcdc.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: lib-add-lib-gcdc-fix From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> - use swap() (pointed out by Joe) - Just add gcd.o to lib-y, reove Kconfig changes. Cc: David S. Miller <davem@xxxxxxxxxxxxx> Cc: Florian Fainelli <florian@xxxxxxxxxxx> Cc: Julius Volz <juliusv@xxxxxxxxxx> Cc: Sergei Shtylyov <sshtylyov@xxxxxxxxxxxxx> Cc: Simon Horman <horms@xxxxxxxxxxxx> Cc: Takashi Iwai <tiwai@xxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Patrick McHardy <kaber@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/Kconfig | 3 --- lib/Makefile | 3 +-- lib/gcd.c | 8 +++----- 3 files changed, 4 insertions(+), 10 deletions(-) diff -puN lib/Kconfig~lib-add-lib-gcdc-fix lib/Kconfig --- a/lib/Kconfig~lib-add-lib-gcdc-fix +++ a/lib/Kconfig @@ -13,9 +13,6 @@ config BITREVERSE config RATIONAL boolean -config GCD - bool - config GENERIC_FIND_FIRST_BIT bool diff -puN lib/Makefile~lib-add-lib-gcdc-fix lib/Makefile --- a/lib/Makefile~lib-add-lib-gcdc-fix +++ a/lib/Makefile @@ -12,7 +12,7 @@ lib-y := ctype.o string.o vsprintf.o cmd idr.o int_sqrt.o extable.o prio_tree.o \ sha1.o irq_regs.o reciprocal_div.o argv_split.o \ proportions.o prio_heap.o ratelimit.o show_mem.o \ - is_single_threaded.o plist.o decompress.o + is_single_threaded.o plist.o decompress.o gcd.o lib-$(CONFIG_MMU) += ioremap.o lib-$(CONFIG_SMP) += cpumask.o @@ -58,7 +58,6 @@ obj-$(CONFIG_CRC_ITU_T) += crc-itu-t.o obj-$(CONFIG_CRC32) += crc32.o obj-$(CONFIG_CRC7) += crc7.o obj-$(CONFIG_LIBCRC32C) += libcrc32c.o -obj-$(CONFIG_GCD) += gcd.o obj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ diff -puN lib/gcd.c~lib-add-lib-gcdc-fix lib/gcd.c --- a/lib/gcd.c~lib-add-lib-gcdc-fix +++ a/lib/gcd.c @@ -1,3 +1,4 @@ +#include <linux/kernel.h> #include <linux/gcd.h> #include <linux/module.h> @@ -6,11 +7,8 @@ unsigned long gcd(unsigned long a, unsig { unsigned long r; - if (a < b) { - r = a; - a = b; - b = r; - } + if (a < b) + swap(a, b); while ((r = a % b) != 0) { a = b; b = r; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch documentation-vm-makefile-dont-try-to-build-slqbinfo.patch maintainers-fbdev-is-orphaned.patch gpio-pca953x-get-platform_data-from-openfirmware.patch documentation-changes-perl-is-needed-to-build-the-kernel.patch cgroups-forbid-noprefix-if-mounting-more-than-just-cpuset-subsystem.patch drivers-char-memc-memory_open-cleanup-lookup-minor-device-number-from-devlist.patch edac-add-cpc925-memory-controller-driver.patch edac-add-edac_device_alloc_index.patch edac-kconfig-fix-the-meaning-of-edac-abbreviation.patch kexec-sysrq-simplify-sysrq-c-handler.patch gru-support-for-asynchronous-gru-instructions.patch lib-add-lib-gcdc.patch lib-add-lib-gcdc-fix.patch lib-add-lib-gcdc-fix-fix.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