The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/linux/linux_dummy.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1994-1995 Søren Schmidt
    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
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer
   10  *    in this position and unchanged.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  * 3. The name of the author may not be used to endorse or promote products
   15  *    derived from this software without specific prior written permission
   16  *
   17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   27  */
   28 
   29 #include <sys/cdefs.h>
   30 __FBSDID("$FreeBSD$");
   31 
   32 #include "opt_compat.h"
   33 
   34 #include <sys/param.h>
   35 #include <sys/kernel.h>
   36 #include <sys/sdt.h>
   37 #include <sys/systm.h>
   38 #include <sys/proc.h>
   39 
   40 #include <i386/linux/linux.h>
   41 #include <i386/linux/linux_proto.h>
   42 #include <compat/linux/linux_dtrace.h>
   43 #include <compat/linux/linux_util.h>
   44 
   45 /* DTrace init */
   46 LIN_SDT_PROVIDER_DECLARE(LINUX_DTRACE);
   47 
   48 UNIMPLEMENTED(afs_syscall);
   49 UNIMPLEMENTED(break);
   50 UNIMPLEMENTED(create_module);   /* Added in Linux 1.0 removed in 2.6. */
   51 UNIMPLEMENTED(ftime);
   52 UNIMPLEMENTED(get_kernel_syms); /* Added in Linux 1.0 removed in 2.6. */
   53 UNIMPLEMENTED(getpmsg);
   54 UNIMPLEMENTED(gtty);
   55 UNIMPLEMENTED(stty);
   56 UNIMPLEMENTED(lock);
   57 UNIMPLEMENTED(mpx);
   58 UNIMPLEMENTED(nfsservctl);      /* Added in Linux 2.2 removed in 3.1. */
   59 UNIMPLEMENTED(prof);
   60 UNIMPLEMENTED(profil);
   61 UNIMPLEMENTED(putpmsg);
   62 UNIMPLEMENTED(query_module);    /* Added in Linux 2.2 removed in 2.6. */
   63 UNIMPLEMENTED(ulimit);
   64 UNIMPLEMENTED(vserver);
   65 
   66 DUMMY(stime);
   67 DUMMY(fstat);
   68 DUMMY(olduname);
   69 DUMMY(syslog);
   70 DUMMY(uname);
   71 DUMMY(vhangup);
   72 DUMMY(vm86old);
   73 DUMMY(swapoff);
   74 DUMMY(adjtimex);
   75 DUMMY(init_module);
   76 DUMMY(delete_module);
   77 DUMMY(quotactl);
   78 DUMMY(bdflush);
   79 DUMMY(sysfs);
   80 DUMMY(vm86);
   81 DUMMY(sendfile);                /* different semantics */
   82 DUMMY(setfsuid);
   83 DUMMY(setfsgid);
   84 DUMMY(pivot_root);
   85 DUMMY(lookup_dcookie);
   86 DUMMY(remap_file_pages);
   87 DUMMY(mbind);
   88 DUMMY(get_mempolicy);
   89 DUMMY(set_mempolicy);
   90 DUMMY(kexec_load);
   91 /* Linux 2.6.11: */
   92 DUMMY(add_key);
   93 DUMMY(request_key);
   94 DUMMY(keyctl);
   95 /* Linux 2.6.13: */
   96 DUMMY(ioprio_set);
   97 DUMMY(ioprio_get);
   98 DUMMY(inotify_init);
   99 DUMMY(inotify_add_watch);
  100 DUMMY(inotify_rm_watch);
  101 /* Linux 2.6.16: */
  102 DUMMY(migrate_pages);
  103 DUMMY(unshare);
  104 /* Linux 2.6.17: */
  105 DUMMY(splice);
  106 DUMMY(sync_file_range);
  107 DUMMY(tee);
  108 DUMMY(vmsplice);
  109 /* Linux 2.6.18: */
  110 DUMMY(move_pages);
  111 /* Linux 2.6.19: */
  112 DUMMY(getcpu);
  113 /* Linux 2.6.22: */
  114 DUMMY(signalfd);
  115 /* Linux 2.6.27: */
  116 DUMMY(signalfd4);
  117 DUMMY(inotify_init1);
  118 /* Linux 2.6.31: */
  119 DUMMY(perf_event_open);
  120 /* Linux 2.6.33: */
  121 DUMMY(fanotify_init);
  122 DUMMY(fanotify_mark);
  123 /* Linux 2.6.39: */
  124 DUMMY(name_to_handle_at);
  125 DUMMY(open_by_handle_at);
  126 DUMMY(clock_adjtime);
  127 /* Linux 3.0: */
  128 DUMMY(setns);
  129 /* Linux 3.2: */
  130 DUMMY(process_vm_readv);
  131 DUMMY(process_vm_writev);
  132 /* Linux 3.5: */
  133 DUMMY(kcmp);
  134 /* Linux 3.8: */
  135 DUMMY(finit_module);
  136 DUMMY(sched_setattr);
  137 DUMMY(sched_getattr);
  138 /* Linux 3.14: */
  139 DUMMY(renameat2);
  140 /* Linux 3.15: */
  141 DUMMY(seccomp);
  142 DUMMY(memfd_create);
  143 /* Linux 3.18: */
  144 DUMMY(bpf);
  145 /* Linux 3.19: */
  146 DUMMY(execveat);
  147 /* Linux 4.2: */
  148 DUMMY(userfaultfd);
  149 /* Linux 4.3: */
  150 DUMMY(membarrier);
  151 /* Linux 4.4: */
  152 DUMMY(mlock2);
  153 /* Linux 4.5: */
  154 DUMMY(copy_file_range);
  155 /* Linux 4.6: */
  156 DUMMY(preadv2);
  157 DUMMY(pwritev2);
  158 /* Linux 4.8: */
  159 DUMMY(pkey_mprotect);
  160 DUMMY(pkey_alloc);
  161 DUMMY(pkey_free);
  162 /* Linux 4.11: */
  163 DUMMY(statx);
  164 DUMMY(arch_prctl);
  165 /* Linux 4.18: */
  166 DUMMY(io_pgetevents);
  167 DUMMY(rseq);
  168 /* Linux 5.0: */
  169 DUMMY(clock_gettime64);
  170 DUMMY(clock_settime64);
  171 DUMMY(clock_adjtime64);
  172 DUMMY(clock_getres_time64);
  173 DUMMY(clock_nanosleep_time64);
  174 DUMMY(timer_gettime64);
  175 DUMMY(timer_settime64);
  176 DUMMY(timerfd_gettime64);
  177 DUMMY(timerfd_settime64);
  178 DUMMY(utimensat_time64);
  179 DUMMY(pselect6_time64);
  180 DUMMY(ppoll_time64);
  181 DUMMY(io_pgetevents_time64);
  182 DUMMY(recvmmsg_time64);
  183 DUMMY(mq_timedsend_time64);
  184 DUMMY(mq_timedreceive_time64);
  185 DUMMY(semtimedop_time64);
  186 DUMMY(rt_sigtimedwait_time64);
  187 DUMMY(futex_time64);
  188 DUMMY(sched_rr_get_interval_time64);
  189 DUMMY(pidfd_send_signal);
  190 DUMMY(io_uring_setup);
  191 DUMMY(io_uring_enter);
  192 DUMMY(io_uring_register);
  193 
  194 #define DUMMY_XATTR(s)                                          \
  195 int                                                             \
  196 linux_ ## s ## xattr(                                           \
  197     struct thread *td, struct linux_ ## s ## xattr_args *arg)   \
  198 {                                                               \
  199                                                                 \
  200         return (EOPNOTSUPP);                                    \
  201 }
  202 DUMMY_XATTR(set);
  203 DUMMY_XATTR(lset);
  204 DUMMY_XATTR(fset);
  205 DUMMY_XATTR(get);
  206 DUMMY_XATTR(lget);
  207 DUMMY_XATTR(fget);
  208 DUMMY_XATTR(list);
  209 DUMMY_XATTR(llist);
  210 DUMMY_XATTR(flist);
  211 DUMMY_XATTR(remove);
  212 DUMMY_XATTR(lremove);
  213 DUMMY_XATTR(fremove);

Cache object: 76bfa683bf94521fdeee7101d3ddee90


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.