Whamcloud - gitweb
LU-1302 llog: introduce llog_open
[fs/lustre-release.git] / lustre / obdclass / lu_time.c
index 26513cf..8b1310a 100644 (file)
@@ -1,6 +1,4 @@
-/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
- * vim:expandtab:shiftwidth=8:tabstop=8:
- *
+/*
  * GPL HEADER START
  *
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -26,7 +24,7 @@
  * GPL HEADER END
  */
 /*
- * Copyright  2008 Sun Microsystems, Inc. All rights reserved
+ * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  */
 /*
@@ -43,9 +41,6 @@
  */
 
 #define DEBUG_SUBSYSTEM S_CLASS
-#ifndef EXPORT_SYMTAB
-# define EXPORT_SYMTAB
-#endif
 
 #include <obd_class.h>
 /* OBD_{ALLOC,FREE}_PTR() */
@@ -131,7 +126,7 @@ EXPORT_SYMBOL(lu_time_named_init);
 int lu_time_init(struct lprocfs_stats **stats, cfs_proc_dir_entry_t *entry,
                  const char **names, int nr)
 {
-        return lu_time_named_init(stats, "stats", entry, names, nr);
+        return lu_time_named_init(stats, "lu_stats", entry, names, nr);
 }
 EXPORT_SYMBOL(lu_time_init);
 
@@ -175,7 +170,7 @@ unsigned long long lu_time_stamp_get(void)
        struct timeval now;
        unsigned long long ret;
 
-       do_gettimeofday(&now);
+       cfs_gettimeofday(&now);
        ret = now.tv_sec;
        ret *= 1000000;
        ret += now.tv_usec;