The patch titled export reciprocal_value for modules has been added to the -mm tree. Its filename is export-reciprocal_value-for-modules.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: export reciprocal_value for modules From: Stephen Hemminger <shemminger@xxxxxxxxxxxxxxxxxxxx> Need this in later sky2 code. Signed-off-by: Stephen Hemminger <shemminger@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/reciprocal_div.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN lib/reciprocal_div.c~export-reciprocal_value-for-modules lib/reciprocal_div.c --- a/lib/reciprocal_div.c~export-reciprocal_value-for-modules +++ a/lib/reciprocal_div.c @@ -1,5 +1,6 @@ #include <asm/div64.h> #include <linux/reciprocal_div.h> +#include <linux/module.h> u32 reciprocal_value(u32 k) { @@ -7,3 +8,4 @@ u32 reciprocal_value(u32 k) do_div(val, k); return (u32)val; } +EXPORT_SYMBOL(reciprocal_value); _ Patches currently in -mm which might be from shemminger@xxxxxxxxxxxxxxxxxxxx are origin.patch pci-x-pci-express-read-control-interfaces-mthca.patch pci-x-pci-express-read-control-interfaces-e1000.patch sky2-fe-chip-support.patch sky2-use-debugfs-rename.patch sky2-document-gphy_ctrl-bits.patch sky2-dont-restrict-config-space-access.patch sky2-advanced-error-reporting.patch sky2-use-pci_config-access-functions.patch sky2-use-net_device-internal-stats.patch ktime_sub_ns-analog-of-ktime_add_ns.patch export-reciprocal_value-for-modules.patch sky2-hardware-receive-timestamp-counter.patch sky2-avoid-divide-in-receive-path.patch sky2-118.patch git-net.patch i386-optimize-memset-of-6-and-8-bytes.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