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/dev/aac/aac_tables.h

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) 2000 Michael Smith
    3  * Copyright (c) 2000 BSDi
    4  * All rights reserved.
    5  *
    6  * Redistribution and use in source and binary forms, with or without
    7  * modification, are permitted provided that the following conditions
    8  * are met:
    9  * 1. Redistributions of source code must retain the above copyright
   10  *    notice, this list of conditions and the following disclaimer.
   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  *
   15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   25  * SUCH DAMAGE.
   26  *
   27  *      $FreeBSD$
   28  */
   29 
   30 /*
   31  * Status codes for block read/write commands, etc.
   32  *
   33  * XXX many of these would not normally be returned, as they are
   34  * relevant only to FSA operations.
   35  */
   36 static struct aac_code_lookup aac_command_status_table[] = {
   37         {"OK",                                  0},
   38         {"operation not permitted",             1},
   39         {"not found",                           2},
   40         {"I/O error",                           5},
   41         {"device not configured",               6},
   42         {"too big",                             7},
   43         {"permission denied",                   13},
   44         {"file exists",                         17},
   45         {"cross-device link",                   18},
   46         {"operation not supported by device",   19},
   47         {"not a directory",                     20},
   48         {"is a directory",                      21},
   49         {"invalid argument",                    22},
   50         {"file too large",                      27},
   51         {"no space on device",                  28},
   52         {"readonly filesystem",                 30},
   53         {"too many links",                      31},
   54         {"operation would block",               35},
   55         {"file name too long",                  63},
   56         {"directory not empty",                 66},
   57         {"quota exceeded",                      69},
   58         {"stale file handle",                   70},
   59         {"too many levels of remote in path",   71},
   60         {"bad file handle",                     10001},
   61         {"not sync",                            10002},
   62         {"bad cookie",                          10003},
   63         {"operation not supported",             10004},
   64         {"too small",                           10005},
   65         {"server fault",                        10006},
   66         {"bad type",                            10007},
   67         {"jukebox",                             10008},
   68         {"not mounted",                         10009},
   69         {"in maintenance mode",                 10010},
   70         {"stale ACL",                           10011},
   71         {NULL,                                  0},
   72         {"unknown command status",              0}
   73 };
   74 
   75 #define AAC_COMMAND_STATUS(x)   aac_describe_code(aac_command_status_table, x)
   76 
   77 static struct aac_code_lookup aac_cpu_variant[] = {
   78         {"i960JX",              CPUI960_JX},
   79         {"i960CX",              CPUI960_CX},
   80         {"i960HX",              CPUI960_HX},
   81         {"i960RX",              CPUI960_RX},
   82         {"i960 80303",          CPUI960_80303},
   83         {"StrongARM SA110",     CPUARM_SA110},
   84         {"PPC603e",             CPUPPC_603e},
   85         {"XScale 80321",        CPU_XSCALE_80321},
   86         {"MIPS 4KC",            CPU_MIPS_4KC},
   87         {"MIPS 5KC",            CPU_MIPS_5KC},
   88         {"Unknown StrongARM",   CPUARM_xxx},
   89         {"Unknown PowerPC",     CPUPPC_xxx},
   90         {NULL, 0},
   91         {"Unknown processor",   0}
   92 };
   93 
   94 static struct aac_code_lookup aac_battery_platform[] = {
   95         {"required battery present",            PLATFORM_BAT_REQ_PRESENT},
   96         {"REQUIRED BATTERY NOT PRESENT",        PLATFORM_BAT_REQ_NOTPRESENT},
   97         {"optional battery present",            PLATFORM_BAT_OPT_PRESENT},
   98         {"optional battery not installed",      PLATFORM_BAT_OPT_NOTPRESENT},
   99         {"no battery support",                  PLATFORM_BAT_NOT_SUPPORTED},
  100         {NULL, 0},
  101         {"unknown battery platform",            0}
  102 };
  103 
  104 static struct aac_code_lookup aac_container_types[] = {
  105         {"Volume",              CT_VOLUME},
  106         {"RAID 1 (Mirror)",     CT_MIRROR},
  107         {"RAID 0 (Stripe)",     CT_STRIPE},
  108         {"RAID 5",              CT_RAID5},
  109         {"SSRW",                CT_SSRW},
  110         {"SSRO",                CT_SSRO},
  111         {"Morph",               CT_MORPH},
  112         {"Passthrough",         CT_PASSTHRU},
  113         {"RAID 4",              CT_RAID4},
  114         {"RAID 0/1",            CT_RAID10},
  115         {"RAID 0/0",            CT_RAID00},
  116         {"Volume of Mirrors",   CT_VOLUME_OF_MIRRORS},
  117         {"Pseudo RAID 3",       CT_PSEUDO_RAID3},
  118         {"RAID 0/5",            CT_RAID50},
  119         {"RAID 5D",             CT_RAID5D},
  120         {"RAID 0/5D",           CT_RAID5D0},
  121         {"RAID 1E",             CT_RAID1E},
  122         {"RAID 6",              CT_RAID6},
  123         {"RAID 0/6",            CT_RAID60},
  124         {NULL, 0},
  125         {"unknown",             0}
  126 };
  127 

Cache object: 552608217d5c2236a9f7089d0309c0ed


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