aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched_clock.c
diff options
context:
space:
mode:
authorDivyesh Shah <dpshah@google.com>2010-04-15 08:54:59 +0200
committerJens Axboe <jens.axboe@oracle.com>2010-04-15 08:54:59 +0200
commitb6ac23af2c66e114d3a87ef28d56f1ceec283007 (patch)
treef514445bea36dbeb2bc37f663a6f94275d484515 /kernel/sched_clock.c
parentc0d97e9ca2cfa66bdfd1ed8ecb5dcd230924d675 (diff)
downloadkernel_samsung_smdk4412-b6ac23af2c66e114d3a87ef28d56f1ceec283007.zip
kernel_samsung_smdk4412-b6ac23af2c66e114d3a87ef28d56f1ceec283007.tar.gz
kernel_samsung_smdk4412-b6ac23af2c66e114d3a87ef28d56f1ceec283007.tar.bz2
blkio: fix for modular blk-cgroup build
After merging the block tree, 20100414's linux-next build (x86_64 allmodconfig) failed like this: ERROR: "get_gendisk" [block/blk-cgroup.ko] undefined! ERROR: "sched_clock" [block/blk-cgroup.ko] undefined! This happens because the two symbols aren't exported and hence not available when blk-cgroup code is built as a module. I've tried to stay consistent with the use of EXPORT_SYMBOL or EXPORT_SYMBOL_GPL with the other symbols in the respective files. Signed-off-by: Divyesh Shah <dpshah@google.com> Acked-by: Gui Jianfeng <guijianfeng@cn.fujitsu.cn> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'kernel/sched_clock.c')
-rw-r--r--kernel/sched_clock.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/sched_clock.c b/kernel/sched_clock.c
index 5b49613..906a0f7 100644
--- a/kernel/sched_clock.c
+++ b/kernel/sched_clock.c
@@ -41,6 +41,7 @@ unsigned long long __attribute__((weak)) sched_clock(void)
return (unsigned long long)(jiffies - INITIAL_JIFFIES)
* (NSEC_PER_SEC / HZ);
}
+EXPORT_SYMBOL_GPL(sched_clock);
static __read_mostly int sched_clock_running;