]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/systm.h
Revert r335995 due to accidental changes snuck in
[FreeBSD/FreeBSD.git] / sys / sys / systm.h
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1982, 1988, 1991, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  * (c) UNIX System Laboratories, Inc.
7  * All or some portions of this file are derived from material licensed
8  * to the University of California by American Telephone and Telegraph
9  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10  * the permission of UNIX System Laboratories, Inc.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      @(#)systm.h     8.7 (Berkeley) 3/29/95
37  * $FreeBSD$
38  */
39
40 #ifndef _SYS_SYSTM_H_
41 #define _SYS_SYSTM_H_
42
43 #include <sys/cdefs.h>
44 #include <machine/atomic.h>
45 #include <machine/cpufunc.h>
46 #include <sys/callout.h>
47 #include <sys/queue.h>
48 #include <sys/stdint.h>         /* for people using printf mainly */
49
50 __NULLABILITY_PRAGMA_PUSH
51
52 extern int cold;                /* nonzero if we are doing a cold boot */
53 extern int suspend_blocked;     /* block suspend due to pending shutdown */
54 extern int rebooting;           /* kern_reboot() has been called. */
55 extern const char *panicstr;    /* panic message */
56 extern char version[];          /* system version */
57 extern char compiler_version[]; /* compiler version */
58 extern char copyright[];        /* system copyright */
59 extern int kstack_pages;        /* number of kernel stack pages */
60
61 extern u_long pagesizes[];      /* supported page sizes */
62 extern long physmem;            /* physical memory */
63 extern long realmem;            /* 'real' memory */
64
65 extern char *rootdevnames[2];   /* names of possible root devices */
66
67 extern int boothowto;           /* reboot flags, from console subsystem */
68 extern int bootverbose;         /* nonzero to print verbose messages */
69
70 extern int maxusers;            /* system tune hint */
71 extern int ngroups_max;         /* max # of supplemental groups */
72 extern int vm_guest;            /* Running as virtual machine guest? */
73
74 /*
75  * Detected virtual machine guest types. The intention is to expand
76  * and/or add to the VM_GUEST_VM type if specific VM functionality is
77  * ever implemented (e.g. vendor-specific paravirtualization features).
78  * Keep in sync with vm_guest_sysctl_names[].
79  */
80 enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN, VM_GUEST_HV,
81                 VM_GUEST_VMWARE, VM_GUEST_KVM, VM_GUEST_BHYVE, VM_LAST };
82
83 #if defined(WITNESS) || defined(INVARIANT_SUPPORT)
84 void    kassert_panic(const char *fmt, ...)  __printflike(1, 2);
85 #endif
86
87 #ifdef  INVARIANTS              /* The option is always available */
88 #define KASSERT(exp,msg) do {                                           \
89         if (__predict_false(!(exp)))                                    \
90                 kassert_panic msg;                                      \
91 } while (0)
92 #define VNASSERT(exp, vp, msg) do {                                     \
93         if (__predict_false(!(exp))) {                                  \
94                 vn_printf(vp, "VNASSERT failed\n");                     \
95                 kassert_panic msg;                                      \
96         }                                                               \
97 } while (0)
98 #else
99 #define KASSERT(exp,msg) do { \
100 } while (0)
101
102 #define VNASSERT(exp, vp, msg) do { \
103 } while (0)
104 #endif
105
106 #ifndef CTASSERT        /* Allow lint to override */
107 #define CTASSERT(x)     _Static_assert(x, "compile-time assertion failed")
108 #endif
109
110 #if defined(_KERNEL)
111 #include <sys/param.h>          /* MAXCPU */
112 #include <sys/pcpu.h>           /* curthread */
113 #include <sys/kpilite.h>
114 #endif
115
116 /*
117  * Assert that a pointer can be loaded from memory atomically.
118  *
119  * This assertion enforces stronger alignment than necessary.  For example,
120  * on some architectures, atomicity for unaligned loads will depend on
121  * whether or not the load spans multiple cache lines.
122  */
123 #define ASSERT_ATOMIC_LOAD_PTR(var, msg)                                \
124         KASSERT(sizeof(var) == sizeof(void *) &&                        \
125             ((uintptr_t)&(var) & (sizeof(void *) - 1)) == 0, msg)
126
127 /*
128  * Assert that a thread is in critical(9) section.
129  */
130 #define CRITICAL_ASSERT(td)                                             \
131         KASSERT((td)->td_critnest >= 1, ("Not in critical section"));
132  
133 /*
134  * If we have already panic'd and this is the thread that called
135  * panic(), then don't block on any mutexes but silently succeed.
136  * Otherwise, the kernel will deadlock since the scheduler isn't
137  * going to run the thread that holds any lock we need.
138  */
139 #define SCHEDULER_STOPPED_TD(td)  ({                                    \
140         MPASS((td) == curthread);                                       \
141         __predict_false((td)->td_stopsched);                            \
142 })
143 #define SCHEDULER_STOPPED() SCHEDULER_STOPPED_TD(curthread)
144
145 /*
146  * Align variables.
147  */
148 #define __read_mostly           __section(".data.read_mostly")
149 #define __read_frequently       __section(".data.read_frequently")
150 #define __exclusive_cache_line  __aligned(CACHE_LINE_SIZE) \
151                                     __section(".data.exclusive_cache_line")
152 /*
153  * XXX the hints declarations are even more misplaced than most declarations
154  * in this file, since they are needed in one file (per arch) and only used
155  * in two files.
156  * XXX most of these variables should be const.
157  */
158 extern int osreldate;
159 extern int envmode;
160 extern int hintmode;            /* 0 = off. 1 = config, 2 = fallback */
161 extern int dynamic_kenv;
162 extern struct mtx kenv_lock;
163 extern char *kern_envp;
164 extern char static_env[];
165 extern char static_hints[];     /* by config for now */
166
167 extern char **kenvp;
168
169 extern const void *zero_region; /* address space maps to a zeroed page  */
170
171 extern int unmapped_buf_allowed;
172
173 #ifdef __LP64__
174 #define IOSIZE_MAX              iosize_max()
175 #define DEVFS_IOSIZE_MAX        devfs_iosize_max()
176 #else
177 #define IOSIZE_MAX              SSIZE_MAX
178 #define DEVFS_IOSIZE_MAX        SSIZE_MAX
179 #endif
180
181 /*
182  * General function declarations.
183  */
184
185 struct inpcb;
186 struct lock_object;
187 struct malloc_type;
188 struct mtx;
189 struct proc;
190 struct socket;
191 struct thread;
192 struct tty;
193 struct ucred;
194 struct uio;
195 struct _jmp_buf;
196 struct trapframe;
197 struct eventtimer;
198
199 int     setjmp(struct _jmp_buf *) __returns_twice;
200 void    longjmp(struct _jmp_buf *, int) __dead2;
201 int     dumpstatus(vm_offset_t addr, off_t count);
202 int     nullop(void);
203 int     eopnotsupp(void);
204 int     ureadc(int, struct uio *);
205 void    hashdestroy(void *, struct malloc_type *, u_long);
206 void    *hashinit(int count, struct malloc_type *type, u_long *hashmask);
207 void    *hashinit_flags(int count, struct malloc_type *type,
208     u_long *hashmask, int flags);
209 #define HASH_NOWAIT     0x00000001
210 #define HASH_WAITOK     0x00000002
211
212 void    *phashinit(int count, struct malloc_type *type, u_long *nentries);
213 void    *phashinit_flags(int count, struct malloc_type *type, u_long *nentries,
214     int flags);
215 void    g_waitidle(void);
216
217 void    panic(const char *, ...) __dead2 __printflike(1, 2);
218 void    vpanic(const char *, __va_list) __dead2 __printflike(1, 0);
219
220 void    cpu_boot(int);
221 void    cpu_flush_dcache(void *, size_t);
222 void    cpu_rootconf(void);
223 void    critical_enter_KBI(void);
224 void    critical_exit_KBI(void);
225 void    critical_exit_preempt(void);
226 void    init_param1(void);
227 void    init_param2(long physpages);
228 void    init_static_kenv(char *, size_t);
229 void    tablefull(const char *);
230
231 #if defined(KLD_MODULE) || defined(KTR_CRITICAL) || !defined(_KERNEL) || defined(GENOFFSET)
232 #define critical_enter() critical_enter_KBI()
233 #define critical_exit() critical_exit_KBI()
234 #else
235 static __inline void
236 critical_enter(void)
237 {
238         struct thread_lite *td;
239
240         td = (struct thread_lite *)curthread;
241         td->td_critnest++;
242 }
243
244 static __inline void
245 critical_exit(void)
246 {
247         struct thread_lite *td;
248
249         td = (struct thread_lite *)curthread;
250         KASSERT(td->td_critnest != 0,
251             ("critical_exit: td_critnest == 0"));
252         td->td_critnest--;
253         __compiler_membar();
254         if (__predict_false(td->td_owepreempt))
255                 critical_exit_preempt();
256
257 }
258 #endif
259
260
261 #ifdef  EARLY_PRINTF
262 typedef void early_putc_t(int ch);
263 extern early_putc_t *early_putc;
264 #endif
265 int     kvprintf(char const *, void (*)(int, void*), void *, int,
266             __va_list) __printflike(1, 0);
267 void    log(int, const char *, ...) __printflike(2, 3);
268 void    log_console(struct uio *);
269 void    vlog(int, const char *, __va_list) __printflike(2, 0);
270 int     asprintf(char **ret, struct malloc_type *mtp, const char *format, 
271             ...) __printflike(3, 4);
272 int     printf(const char *, ...) __printflike(1, 2);
273 int     snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
274 int     sprintf(char *buf, const char *, ...) __printflike(2, 3);
275 int     uprintf(const char *, ...) __printflike(1, 2);
276 int     vprintf(const char *, __va_list) __printflike(1, 0);
277 int     vasprintf(char **ret, struct malloc_type *mtp, const char *format,
278             __va_list ap) __printflike(3, 0);
279 int     vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
280 int     vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
281 int     vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
282 int     ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
283 int     sscanf(const char *, char const * _Nonnull, ...) __scanflike(2, 3);
284 int     vsscanf(const char * _Nonnull, char const * _Nonnull, __va_list)  __scanflike(2, 0);
285 long    strtol(const char *, char **, int);
286 u_long  strtoul(const char *, char **, int);
287 quad_t  strtoq(const char *, char **, int);
288 u_quad_t strtouq(const char *, char **, int);
289 void    tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
290 void    vtprintf(struct proc *, int, const char *, __va_list) __printflike(3, 0);
291 void    hexdump(const void *ptr, int length, const char *hdr, int flags);
292 #define HD_COLUMN_MASK  0xff
293 #define HD_DELIM_MASK   0xff00
294 #define HD_OMIT_COUNT   (1 << 16)
295 #define HD_OMIT_HEX     (1 << 17)
296 #define HD_OMIT_CHARS   (1 << 18)
297
298 #define ovbcopy(f, t, l) bcopy((f), (t), (l))
299 void    bcopy(const void * _Nonnull from, void * _Nonnull to, size_t len);
300 #define bcopy(from, to, len) __builtin_memmove((to), (from), (len))
301 void    bzero(void * _Nonnull buf, size_t len);
302 #define bzero(buf, len) __builtin_memset((buf), 0, (len))
303 void    explicit_bzero(void * _Nonnull, size_t);
304 int     bcmp(const void *b1, const void *b2, size_t len);
305 #define bcmp(b1, b2, len) __builtin_memcmp((b1), (b2), (len))
306
307 void    *memset(void * _Nonnull buf, int c, size_t len);
308 #define memset(buf, c, len) __builtin_memset((buf), (c), (len))
309 void    *memcpy(void * _Nonnull to, const void * _Nonnull from, size_t len);
310 #define memcpy(to, from, len) __builtin_memcpy((to), (from), (len))
311 void    *memmove(void * _Nonnull dest, const void * _Nonnull src, size_t n);
312 #define memmove(dest, src, n) __builtin_memmove((dest), (src), (n))
313 int     memcmp(const void *b1, const void *b2, size_t len);
314 #define memcmp(b1, b2, len) __builtin_memcmp((b1), (b2), (len))
315
316 int     copystr(const void * _Nonnull __restrict kfaddr,
317             void * _Nonnull __restrict kdaddr, size_t len,
318             size_t * __restrict lencopied);
319 int     copyinstr(const void * __restrict udaddr,
320             void * _Nonnull __restrict kaddr, size_t len,
321             size_t * __restrict lencopied);
322 int     copyin(const void * __restrict udaddr,
323             void * _Nonnull __restrict kaddr, size_t len);
324 int     copyin_nofault(const void * __restrict udaddr,
325             void * _Nonnull __restrict kaddr, size_t len);
326 int     copyout(const void * _Nonnull __restrict kaddr,
327             void * __restrict udaddr, size_t len);
328 int     copyout_nofault(const void * _Nonnull __restrict kaddr,
329             void * __restrict udaddr, size_t len);
330
331 int     fubyte(volatile const void *base);
332 long    fuword(volatile const void *base);
333 int     fuword16(volatile const void *base);
334 int32_t fuword32(volatile const void *base);
335 int64_t fuword64(volatile const void *base);
336 int     fueword(volatile const void *base, long *val);
337 int     fueword32(volatile const void *base, int32_t *val);
338 int     fueword64(volatile const void *base, int64_t *val);
339 int     subyte(volatile void *base, int byte);
340 int     suword(volatile void *base, long word);
341 int     suword16(volatile void *base, int word);
342 int     suword32(volatile void *base, int32_t word);
343 int     suword64(volatile void *base, int64_t word);
344 uint32_t casuword32(volatile uint32_t *base, uint32_t oldval, uint32_t newval);
345 u_long  casuword(volatile u_long *p, u_long oldval, u_long newval);
346 int     casueword32(volatile uint32_t *base, uint32_t oldval, uint32_t *oldvalp,
347             uint32_t newval);
348 int     casueword(volatile u_long *p, u_long oldval, u_long *oldvalp,
349             u_long newval);
350
351 void    realitexpire(void *);
352
353 int     sysbeep(int hertz, int period);
354
355 void    hardclock(int usermode, uintfptr_t pc);
356 void    hardclock_cnt(int cnt, int usermode);
357 void    hardclock_cpu(int usermode);
358 void    hardclock_sync(int cpu);
359 void    softclock(void *);
360 void    statclock(int usermode);
361 void    statclock_cnt(int cnt, int usermode);
362 void    profclock(int usermode, uintfptr_t pc);
363 void    profclock_cnt(int cnt, int usermode, uintfptr_t pc);
364
365 int     hardclockintr(void);
366
367 void    startprofclock(struct proc *);
368 void    stopprofclock(struct proc *);
369 void    cpu_startprofclock(void);
370 void    cpu_stopprofclock(void);
371 void    suspendclock(void);
372 void    resumeclock(void);
373 sbintime_t      cpu_idleclock(void);
374 void    cpu_activeclock(void);
375 void    cpu_new_callout(int cpu, sbintime_t bt, sbintime_t bt_opt);
376 void    cpu_et_frequency(struct eventtimer *et, uint64_t newfreq);
377 extern int      cpu_disable_c2_sleep;
378 extern int      cpu_disable_c3_sleep;
379
380 char    *kern_getenv(const char *name);
381 void    freeenv(char *env);
382 int     getenv_int(const char *name, int *data);
383 int     getenv_uint(const char *name, unsigned int *data);
384 int     getenv_long(const char *name, long *data);
385 int     getenv_ulong(const char *name, unsigned long *data);
386 int     getenv_string(const char *name, char *data, int size);
387 int     getenv_int64(const char *name, int64_t *data);
388 int     getenv_uint64(const char *name, uint64_t *data);
389 int     getenv_quad(const char *name, quad_t *data);
390 int     kern_setenv(const char *name, const char *value);
391 int     kern_unsetenv(const char *name);
392 int     testenv(const char *name);
393
394 int     getenv_array(const char *name, void *data, int size, int *psize,
395     int type_size, bool allow_signed);
396 #define GETENV_UNSIGNED false   /* negative numbers not allowed */
397 #define GETENV_SIGNED   true    /* negative numbers allowed */
398
399 typedef uint64_t (cpu_tick_f)(void);
400 void set_cputicker(cpu_tick_f *func, uint64_t freq, unsigned var);
401 extern cpu_tick_f *cpu_ticks;
402 uint64_t cpu_tickrate(void);
403 uint64_t cputick2usec(uint64_t tick);
404
405 #ifdef APM_FIXUP_CALLTODO
406 struct timeval;
407 void    adjust_timeout_calltodo(struct timeval *time_change);
408 #endif /* APM_FIXUP_CALLTODO */
409
410 #include <sys/libkern.h>
411
412 /* Initialize the world */
413 void    consinit(void);
414 void    cpu_initclocks(void);
415 void    cpu_initclocks_bsp(void);
416 void    cpu_initclocks_ap(void);
417 void    usrinfoinit(void);
418
419 /* Finalize the world */
420 void    kern_reboot(int) __dead2;
421 void    shutdown_nice(int);
422
423 /* Timeouts */
424 typedef void timeout_t(void *); /* timeout function type */
425 #define CALLOUT_HANDLE_INITIALIZER(handle)      \
426         { NULL }
427
428 void    callout_handle_init(struct callout_handle *);
429 struct  callout_handle timeout(timeout_t *, void *, int);
430 void    untimeout(timeout_t *, void *, struct callout_handle);
431
432 /* Stubs for obsolete functions that used to be for interrupt management */
433 static __inline intrmask_t      splbio(void)            { return 0; }
434 static __inline intrmask_t      splcam(void)            { return 0; }
435 static __inline intrmask_t      splclock(void)          { return 0; }
436 static __inline intrmask_t      splhigh(void)           { return 0; }
437 static __inline intrmask_t      splimp(void)            { return 0; }
438 static __inline intrmask_t      splnet(void)            { return 0; }
439 static __inline intrmask_t      spltty(void)            { return 0; }
440 static __inline void            splx(intrmask_t ipl __unused)   { return; }
441
442 /*
443  * Common `proc' functions are declared here so that proc.h can be included
444  * less often.
445  */
446 int     _sleep(void * _Nonnull chan, struct lock_object *lock, int pri,
447            const char *wmesg, sbintime_t sbt, sbintime_t pr, int flags);
448 #define msleep(chan, mtx, pri, wmesg, timo)                             \
449         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg),             \
450             tick_sbt * (timo), 0, C_HARDCLOCK)
451 #define msleep_sbt(chan, mtx, pri, wmesg, bt, pr, flags)                \
452         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (bt), (pr), \
453             (flags))
454 int     msleep_spin_sbt(void * _Nonnull chan, struct mtx *mtx,
455             const char *wmesg, sbintime_t sbt, sbintime_t pr, int flags);
456 #define msleep_spin(chan, mtx, wmesg, timo)                             \
457         msleep_spin_sbt((chan), (mtx), (wmesg), tick_sbt * (timo),      \
458             0, C_HARDCLOCK)
459 int     pause_sbt(const char *wmesg, sbintime_t sbt, sbintime_t pr,
460             int flags);
461 #define pause(wmesg, timo)                                              \
462         pause_sbt((wmesg), tick_sbt * (timo), 0, C_HARDCLOCK)
463 #define pause_sig(wmesg, timo)                                          \
464         pause_sbt((wmesg), tick_sbt * (timo), 0, C_HARDCLOCK | C_CATCH)
465 #define tsleep(chan, pri, wmesg, timo)                                  \
466         _sleep((chan), NULL, (pri), (wmesg), tick_sbt * (timo),         \
467             0, C_HARDCLOCK)
468 #define tsleep_sbt(chan, pri, wmesg, bt, pr, flags)                     \
469         _sleep((chan), NULL, (pri), (wmesg), (bt), (pr), (flags))
470 void    wakeup(void * chan);
471 void    wakeup_one(void * chan);
472
473 /*
474  * Common `struct cdev *' stuff are declared here to avoid #include poisoning
475  */
476
477 struct cdev;
478 dev_t dev2udev(struct cdev *x);
479 const char *devtoname(struct cdev *cdev);
480
481 #ifdef __LP64__
482 size_t  devfs_iosize_max(void);
483 size_t  iosize_max(void);
484 #endif
485
486 int poll_no_poll(int events);
487
488 /* XXX: Should be void nanodelay(u_int nsec); */
489 void    DELAY(int usec);
490
491 /* Root mount holdback API */
492 struct root_hold_token;
493
494 struct root_hold_token *root_mount_hold(const char *identifier);
495 void root_mount_rel(struct root_hold_token *h);
496 int root_mounted(void);
497
498
499 /*
500  * Unit number allocation API. (kern/subr_unit.c)
501  */
502 struct unrhdr;
503 struct unrhdr *new_unrhdr(int low, int high, struct mtx *mutex);
504 void init_unrhdr(struct unrhdr *uh, int low, int high, struct mtx *mutex);
505 void delete_unrhdr(struct unrhdr *uh);
506 void clear_unrhdr(struct unrhdr *uh);
507 void clean_unrhdr(struct unrhdr *uh);
508 void clean_unrhdrl(struct unrhdr *uh);
509 int alloc_unr(struct unrhdr *uh);
510 int alloc_unr_specific(struct unrhdr *uh, u_int item);
511 int alloc_unrl(struct unrhdr *uh);
512 void free_unr(struct unrhdr *uh, u_int item);
513
514 void    intr_prof_stack_use(struct thread *td, struct trapframe *frame);
515
516 void counted_warning(unsigned *counter, const char *msg);
517
518 /*
519  * APIs to manage deprecation and obsolescence.
520  */
521 struct device;
522 void _gone_in(int major, const char *msg);
523 void _gone_in_dev(struct device *dev, int major, const char *msg);
524 #ifdef NO_OBSOLETE_CODE
525 #define __gone_ok(m, msg)                                        \
526         _Static_assert(m < P_OSREL_MAJOR(__FreeBSD_version)),    \
527             "Obsolete code" msg);
528 #else
529 #define __gone_ok(m, msg)
530 #endif
531 #define gone_in(major, msg)             __gone_ok(major, msg) _gone_in(major, msg)
532 #define gone_in_dev(dev, major, msg)    __gone_ok(major, msg) _gone_in_dev(dev, major, msg)
533
534 __NULLABILITY_PRAGMA_POP
535
536 #endif /* !_SYS_SYSTM_H_ */