xref: /f-stack/lib/ff_subr_epoch.c (revision 8a60d0f5)
1 /*
2  * Copyright (C) 2017-2021 THL A29 Limited, a Tencent company.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright notice, this
9  *   list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *   this list of conditions and the following disclaimer in the documentation
12  *   and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
18  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 
26 #include <sys/cdefs.h>
27 #include <sys/param.h>
28 #include <sys/systm.h>
29 #include <sys/kernel.h>
30 #include <sys/ktr.h>
31 #include <sys/limits.h>
32 #include <sys/lock.h>
33 #include <sys/mutex.h>
34 #include <sys/proc.h>
35 #include <sys/malloc.h>
36 #include <sys/resourcevar.h>
37 #include <sys/sched.h>
38 #include <sys/sysctl.h>
39 #include <sys/uio.h>
40 #include <sys/epoch.h>
41 
42 #include "ff_host_interface.h"
43 
44 struct epoch {
45 };
46 
47 static struct epoch epoch_array[1];
48 
49 void
_epoch_enter_preempt(epoch_t epoch,epoch_tracker_t et EPOCH_FILE_LINE)50 _epoch_enter_preempt(epoch_t epoch, epoch_tracker_t et EPOCH_FILE_LINE)
51 {
52 
53 }
54 
55 void
_epoch_exit_preempt(epoch_t epoch,epoch_tracker_t et EPOCH_FILE_LINE)56 _epoch_exit_preempt(epoch_t epoch, epoch_tracker_t et EPOCH_FILE_LINE)
57 {
58 
59 }
60 
61 void
epoch_wait_preempt(epoch_t epoch)62 epoch_wait_preempt(epoch_t epoch)
63 {
64 
65 }
66 
67 void
epoch_call(epoch_t epoch,epoch_callback_t callback,epoch_context_t ctx)68 epoch_call(epoch_t epoch, epoch_callback_t callback, epoch_context_t ctx)
69 {
70 
71 }
72 
73 epoch_t
epoch_alloc(const char * name,int flags)74 epoch_alloc(const char *name, int flags)
75 {
76     return &epoch_array[0];
77 }
78 
79 void
epoch_drain_callbacks(epoch_t epoch)80 epoch_drain_callbacks(epoch_t epoch)
81 {
82 
83 }
84