The patch titled kernel/time.c: add missing symbol exports has been added to the -mm tree. Its filename is kernel-timec-add-missing-symbol-exports.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: kernel/time.c: add missing symbol exports From: Thomas Bittermann <t.bittermann@xxxxxxxxx> This patch adds 2 missing symbol exports: jiffies_to_timeval timeval_to_jiffies I'm working on a Fedora 7 LiveCD which integrates dm-raid4-5 (http://people.redhat.com/~heinzm/sw/dm/dm-raid45/readme). dm-raid4-5.c uses jiffies_to_timeval() ... It was inlined before and got lost somewhere between 2.6.20 and 2.6.21-rcX. Signed-off-by: Thomas Bittermann <t.bittermann@xxxxxxxxx> Acked-by: Ingo Molnar <mingo@xxxxxxx> Acked-by: john stultz <johnstul@xxxxxxxxxx> Acked-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/time.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN kernel/time.c~kernel-timec-add-missing-symbol-exports kernel/time.c --- a/kernel/time.c~kernel-timec-add-missing-symbol-exports +++ a/kernel/time.c @@ -635,6 +635,7 @@ timeval_to_jiffies(const struct timeval (((u64)usec * USEC_CONVERSION + USEC_ROUND) >> (USEC_JIFFIE_SC - SEC_JIFFIE_SC))) >> SEC_JIFFIE_SC; } +EXPORT_SYMBOL(timeval_to_jiffies); void jiffies_to_timeval(const unsigned long jiffies, struct timeval *value) { @@ -649,6 +650,7 @@ void jiffies_to_timeval(const unsigned l tv_usec /= NSEC_PER_USEC; value->tv_usec = tv_usec; } +EXPORT_SYMBOL(jiffies_to_timeval); /* * Convert jiffies/jiffies_64 to clock_t and back. _ Patches currently in -mm which might be from t.bittermann@xxxxxxxxx are kernel-timec-add-missing-symbol-exports.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