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/amd64/linux32/linux32_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: releng/11.2/sys/amd64/linux32/linux32_dummy.c 331722 2018-03-29 02:50:57Z eadler $");
   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 <amd64/linux32/linux.h>
   41 #include <amd64/linux32/linux32_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(olduname);
   68 DUMMY(syslog);
   69 DUMMY(uname);
   70 DUMMY(vhangup);
   71 DUMMY(swapoff);
   72 DUMMY(adjtimex);
   73 DUMMY(init_module);
   74 DUMMY(delete_module);
   75 DUMMY(quotactl);
   76 DUMMY(bdflush);
   77 DUMMY(sysfs);
   78 DUMMY(sendfile);
   79 DUMMY(setfsuid);
   80 DUMMY(setfsgid);
   81 DUMMY(pivot_root);
   82 DUMMY(ptrace);
   83 DUMMY(lookup_dcookie);
   84 DUMMY(remap_file_pages);
   85 DUMMY(mbind);
   86 DUMMY(get_mempolicy);
   87 DUMMY(set_mempolicy);
   88 DUMMY(mq_open);
   89 DUMMY(mq_unlink);
   90 DUMMY(mq_timedsend);
   91 DUMMY(mq_timedreceive);
   92 DUMMY(mq_notify);
   93 DUMMY(mq_getsetattr);
   94 DUMMY(kexec_load);
   95 /* linux 2.6.11: */
   96 DUMMY(add_key);
   97 DUMMY(request_key);
   98 DUMMY(keyctl);
   99 /* linux 2.6.13: */
  100 DUMMY(ioprio_set);
  101 DUMMY(ioprio_get);
  102 DUMMY(inotify_init);
  103 DUMMY(inotify_add_watch);
  104 DUMMY(inotify_rm_watch);
  105 /* linux 2.6.16: */
  106 DUMMY(migrate_pages);
  107 DUMMY(unshare);
  108 /* linux 2.6.17: */
  109 DUMMY(splice);
  110 DUMMY(sync_file_range);
  111 DUMMY(tee);
  112 DUMMY(vmsplice);
  113 /* linux 2.6.18: */
  114 DUMMY(move_pages);
  115 /* linux 2.6.19: */
  116 DUMMY(getcpu);
  117 /* linux 2.6.22: */
  118 DUMMY(signalfd);
  119 /* linux 2.6.27: */
  120 DUMMY(signalfd4);
  121 DUMMY(inotify_init1);
  122 /* linux 2.6.31: */
  123 DUMMY(perf_event_open);
  124 /* linux 2.6.33: */
  125 DUMMY(fanotify_init);
  126 DUMMY(fanotify_mark);
  127 /* linux 2.6.39: */
  128 DUMMY(name_to_handle_at);
  129 DUMMY(open_by_handle_at);
  130 DUMMY(clock_adjtime);
  131 /* linux 3.0: */
  132 DUMMY(setns);
  133 /* linux 3.2: */
  134 DUMMY(process_vm_readv);
  135 DUMMY(process_vm_writev);
  136 /* linux 3.5: */
  137 DUMMY(kcmp);
  138 /* linux 3.8: */
  139 DUMMY(finit_module);
  140 DUMMY(sched_setattr);
  141 DUMMY(sched_getattr);
  142 /* linux 3.14: */
  143 DUMMY(renameat2);
  144 /* linux 3.15: */
  145 DUMMY(seccomp);
  146 DUMMY(memfd_create);
  147 /* linux 3.18: */
  148 DUMMY(bpf);
  149 /* linux 3.19: */
  150 DUMMY(execveat);
  151 /* linux 4.2: */
  152 DUMMY(userfaultfd);
  153 /* linux 4.3: */
  154 DUMMY(membarrier);
  155 /* linux 4.4: */
  156 DUMMY(mlock2);
  157 /* linux 4.5: */
  158 DUMMY(copy_file_range);
  159 /* linux 4.6: */
  160 DUMMY(preadv2);
  161 DUMMY(pwritev2);
  162 /* linux 4.8: */
  163 DUMMY(pkey_mprotect);
  164 DUMMY(pkey_alloc);
  165 DUMMY(pkey_free);
  166 
  167 #define DUMMY_XATTR(s)                                          \
  168 int                                                             \
  169 linux_ ## s ## xattr(                                           \
  170     struct thread *td, struct linux_ ## s ## xattr_args *arg)   \
  171 {                                                               \
  172                                                                 \
  173         return (ENOATTR);                                       \
  174 }
  175 DUMMY_XATTR(set);
  176 DUMMY_XATTR(lset);
  177 DUMMY_XATTR(fset);
  178 DUMMY_XATTR(get);
  179 DUMMY_XATTR(lget);
  180 DUMMY_XATTR(fget);
  181 DUMMY_XATTR(list);
  182 DUMMY_XATTR(llist);
  183 DUMMY_XATTR(flist);
  184 DUMMY_XATTR(remove);
  185 DUMMY_XATTR(lremove);
  186 DUMMY_XATTR(fremove);

Cache object: 097e65fdea93434424b4ede4ca8eb033


[ 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.