]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/splat/splat-time.c
Condition variable reference counts
[mirror_spl-debian.git] / module / splat / splat-time.c
CommitLineData
716154c5
BB
1/*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5
BB
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://github.com/behlendorf/spl/>.
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
715f6251 15 *
716154c5 16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting LAyer Tests (SPLAT) Time Tests.
25\*****************************************************************************/
715f6251 26
7c50328b 27#include "splat-internal.h"
f1ca4da6 28
7c50328b 29#define SPLAT_TIME_NAME "time"
30#define SPLAT_TIME_DESC "Kernel Time Tests"
f1ca4da6 31
7c50328b 32#define SPLAT_TIME_TEST1_ID 0x0801
33#define SPLAT_TIME_TEST1_NAME "time1"
34#define SPLAT_TIME_TEST1_DESC "HZ Test"
f1ca4da6 35
7c50328b 36#define SPLAT_TIME_TEST2_ID 0x0802
37#define SPLAT_TIME_TEST2_NAME "time2"
38#define SPLAT_TIME_TEST2_DESC "Monotonic Test"
f1ca4da6 39
40static int
7c50328b 41splat_time_test1(struct file *file, void *arg)
f1ca4da6 42{
43 int myhz = hz;
7c50328b 44 splat_vprint(file, SPLAT_TIME_TEST1_NAME, "hz is %d\n", myhz);
f1ca4da6 45 return 0;
46}
47
48static int
7c50328b 49splat_time_test2(struct file *file, void *arg)
f1ca4da6 50{
51 hrtime_t tm1, tm2;
52 int i;
53
54 tm1 = gethrtime();
7c50328b 55 splat_vprint(file, SPLAT_TIME_TEST2_NAME, "time is %lld\n", tm1);
f1ca4da6 56
57 for(i = 0; i < 100; i++) {
58 tm2 = gethrtime();
7c50328b 59 splat_vprint(file, SPLAT_TIME_TEST2_NAME, "time is %lld\n", tm2);
f1ca4da6 60
61 if(tm1 > tm2) {
7c50328b 62 splat_print(file, "%s: gethrtime() is not giving "
63 "monotonically increasing values\n",
64 SPLAT_TIME_TEST2_NAME);
f1ca4da6 65 return 1;
66 }
67 tm1 = tm2;
68
69 set_current_state(TASK_INTERRUPTIBLE);
70 schedule_timeout(10);
71 }
72
73 return 0;
74}
75
7c50328b 76splat_subsystem_t *
77splat_time_init(void)
f1ca4da6 78{
7c50328b 79 splat_subsystem_t *sub;
f1ca4da6 80
81 sub = kmalloc(sizeof(*sub), GFP_KERNEL);
82 if (sub == NULL)
83 return NULL;
84
85 memset(sub, 0, sizeof(*sub));
7c50328b 86 strncpy(sub->desc.name, SPLAT_TIME_NAME, SPLAT_NAME_SIZE);
87 strncpy(sub->desc.desc, SPLAT_TIME_DESC, SPLAT_DESC_SIZE);
f1ca4da6 88 INIT_LIST_HEAD(&sub->subsystem_list);
89 INIT_LIST_HEAD(&sub->test_list);
90 spin_lock_init(&sub->test_lock);
7c50328b 91 sub->desc.id = SPLAT_SUBSYSTEM_TIME;
f1ca4da6 92
7c50328b 93 SPLAT_TEST_INIT(sub, SPLAT_TIME_TEST1_NAME, SPLAT_TIME_TEST1_DESC,
94 SPLAT_TIME_TEST1_ID, splat_time_test1);
95 SPLAT_TEST_INIT(sub, SPLAT_TIME_TEST2_NAME, SPLAT_TIME_TEST2_DESC,
96 SPLAT_TIME_TEST2_ID, splat_time_test2);
f1ca4da6 97
98 return sub;
99}
100
101void
7c50328b 102splat_time_fini(splat_subsystem_t *sub)
f1ca4da6 103{
104 ASSERT(sub);
105
7c50328b 106 SPLAT_TEST_FINI(sub, SPLAT_TIME_TEST2_ID);
107 SPLAT_TEST_FINI(sub, SPLAT_TIME_TEST1_ID);
f1ca4da6 108
109 kfree(sub);
110}
111
112int
7c50328b 113splat_time_id(void)
f1ca4da6 114{
7c50328b 115 return SPLAT_SUBSYSTEM_TIME;
f1ca4da6 116}