summaryrefslogtreecommitdiff
path: root/test/test_xcall.c
blob: ab4fa113200d29260f784b5e42413383b5b58085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Copyright (c) 2014 Richard Braun.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *
 * This is a simple test of the cross-call functionality. One thread is
 * created and bound to CPU 0. It makes two cross-calls, one on its local
 * processor, and another on a remote processor.
 */

#include <stddef.h>

#include <kern/error.h>
#include <kern/cpumap.h>
#include <kern/panic.h>
#include <kern/printk.h>
#include <kern/thread.h>
#include <kern/xcall.h>
#include <test/test.h>

static int test_done;

static void
test_fn(void *arg)
{
    (void)arg;

    printk("function called, running on cpu%u\n", cpu_id());
    test_done = 1;
}

static void
test_once(unsigned int cpu)
{
    test_done = 0;

    printk("cross-call on cpu%u:\n", cpu);
    xcall_call(test_fn, NULL, cpu);

    if (!test_done) {
        panic("test_done false");
    }
}

static void
test_run(void *arg)
{
    (void)arg;

    test_once(0);
    test_once(1);
    printk("done\n");
}

void
test_setup(void)
{
    struct thread_attr attr;
    struct thread *thread;
    struct cpumap *cpumap;
    int error;

    error = cpumap_create(&cpumap);
    error_check(error, "cpumap_create");
    cpumap_zero(cpumap);
    cpumap_set(cpumap, 0);

    thread_attr_init(&attr, THREAD_KERNEL_PREFIX "test_run");
    thread_attr_set_detached(&attr);
    thread_attr_set_cpumap(&attr, cpumap);
    error = thread_create(&thread, &attr, test_run, NULL);
    error_check(error, "thread_create");

    cpumap_destroy(cpumap);
}