- kernel-timec-add-missing-symbol-exports.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     kernel/time.c: add missing symbol exports
has been removed from the -mm tree.  Its filename was
     kernel-timec-add-missing-symbol-exports.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
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 file 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


-
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

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux