Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'parisc-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6

Pull PARISC changes from James Bottomley:
"This is a couple of high code motion patches (all within arch/parisc)
I'd like to apply at -rc1 to avoid conflicts with anything else. One
moves us on to the generated instead of included asm file model and
the other is a pull request from David Howells for UAPI
disintegration.

Signed-off-by: James Bottomley <JBottomley@Parallels.com>"

* tag 'parisc-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6:
UAPI: (Scripted) Disintegrate arch/parisc/include/asm
[PARISC] asm: redo generic includes

+1511 -1542
+4 -5
arch/parisc/include/asm/Kbuild
··· 1 - include include/asm-generic/Kbuild.asm 2 1 3 - header-y += pdc.h 4 - generic-y += clkdev.h 5 - generic-y += word-at-a-time.h 6 - generic-y += exec.h 2 + generic-y += word-at-a-time.h auxvec.h user.h cputime.h emergency-restart.h \ 3 + segment.h topology.h vga.h device.h percpu.h hw_irq.h mutex.h \ 4 + div64.h irq_regs.h kdebug.h kvm_para.h local64.h local.h param.h \ 5 + poll.h xor.h clkdev.h exec.h
-4
arch/parisc/include/asm/auxvec.h
··· 1 - #ifndef __ASMPARISC_AUXVEC_H 2 - #define __ASMPARISC_AUXVEC_H 3 - 4 - #endif
arch/parisc/include/asm/bitsperlong.h arch/parisc/include/uapi/asm/bitsperlong.h
arch/parisc/include/asm/byteorder.h arch/parisc/include/uapi/asm/byteorder.h
-2
arch/parisc/include/asm/compat_signal.h
··· 1 - /* Use generic */ 2 - #include <asm-generic/compat_signal.h>
-6
arch/parisc/include/asm/cputime.h
··· 1 - #ifndef __PARISC_CPUTIME_H 2 - #define __PARISC_CPUTIME_H 3 - 4 - #include <asm-generic/cputime.h> 5 - 6 - #endif /* __PARISC_CPUTIME_H */
-7
arch/parisc/include/asm/device.h
··· 1 - /* 2 - * Arch specific extensions to struct device 3 - * 4 - * This file is released under the GPLv2 5 - */ 6 - #include <asm-generic/device.h> 7 -
-1
arch/parisc/include/asm/div64.h
··· 1 - #include <asm-generic/div64.h>
-6
arch/parisc/include/asm/emergency-restart.h
··· 1 - #ifndef _ASM_EMERGENCY_RESTART_H 2 - #define _ASM_EMERGENCY_RESTART_H 3 - 4 - #include <asm-generic/emergency-restart.h> 5 - 6 - #endif /* _ASM_EMERGENCY_RESTART_H */
arch/parisc/include/asm/errno.h arch/parisc/include/uapi/asm/errno.h
arch/parisc/include/asm/fcntl.h arch/parisc/include/uapi/asm/fcntl.h
-8
arch/parisc/include/asm/hw_irq.h
··· 1 - #ifndef _ASM_HW_IRQ_H 2 - #define _ASM_HW_IRQ_H 3 - 4 - /* 5 - * linux/include/asm/hw_irq.h 6 - */ 7 - 8 - #endif
arch/parisc/include/asm/ioctl.h arch/parisc/include/uapi/asm/ioctl.h
arch/parisc/include/asm/ioctls.h arch/parisc/include/uapi/asm/ioctls.h
arch/parisc/include/asm/ipcbuf.h arch/parisc/include/uapi/asm/ipcbuf.h
-1
arch/parisc/include/asm/irq_regs.h
··· 1 - #include <asm-generic/irq_regs.h>
-1
arch/parisc/include/asm/kdebug.h
··· 1 - #include <asm-generic/kdebug.h>
-1
arch/parisc/include/asm/kvm_para.h
··· 1 - #include <asm-generic/kvm_para.h>
-1
arch/parisc/include/asm/local.h
··· 1 - #include <asm-generic/local.h>
-1
arch/parisc/include/asm/local64.h
··· 1 - #include <asm-generic/local64.h>
arch/parisc/include/asm/mman.h arch/parisc/include/uapi/asm/mman.h
arch/parisc/include/asm/msgbuf.h arch/parisc/include/uapi/asm/msgbuf.h
-9
arch/parisc/include/asm/mutex.h
··· 1 - /* 2 - * Pull in the generic implementation for the mutex fastpath. 3 - * 4 - * TODO: implement optimized primitives instead, or leave the generic 5 - * implementation in place, or pick the atomic_xchg() based generic 6 - * implementation. (see asm-generic/mutex-xchg.h for details) 7 - */ 8 - 9 - #include <asm-generic/mutex-dec.h>
-1
arch/parisc/include/asm/param.h
··· 1 - #include <asm-generic/param.h>
+1 -422
arch/parisc/include/asm/pdc.h
··· 1 1 #ifndef _PARISC_PDC_H 2 2 #define _PARISC_PDC_H 3 3 4 - /* 5 - * PDC return values ... 6 - * All PDC calls return a subset of these errors. 7 - */ 8 - 9 - #define PDC_WARN 3 /* Call completed with a warning */ 10 - #define PDC_REQ_ERR_1 2 /* See above */ 11 - #define PDC_REQ_ERR_0 1 /* Call would generate a requestor error */ 12 - #define PDC_OK 0 /* Call completed successfully */ 13 - #define PDC_BAD_PROC -1 /* Called non-existent procedure*/ 14 - #define PDC_BAD_OPTION -2 /* Called with non-existent option */ 15 - #define PDC_ERROR -3 /* Call could not complete without an error */ 16 - #define PDC_NE_MOD -5 /* Module not found */ 17 - #define PDC_NE_CELL_MOD -7 /* Cell module not found */ 18 - #define PDC_INVALID_ARG -10 /* Called with an invalid argument */ 19 - #define PDC_BUS_POW_WARN -12 /* Call could not complete in allowed power budget */ 20 - #define PDC_NOT_NARROW -17 /* Narrow mode not supported */ 21 - 22 - /* 23 - * PDC entry points... 24 - */ 25 - 26 - #define PDC_POW_FAIL 1 /* perform a power-fail */ 27 - #define PDC_POW_FAIL_PREPARE 0 /* prepare for powerfail */ 28 - 29 - #define PDC_CHASSIS 2 /* PDC-chassis functions */ 30 - #define PDC_CHASSIS_DISP 0 /* update chassis display */ 31 - #define PDC_CHASSIS_WARN 1 /* return chassis warnings */ 32 - #define PDC_CHASSIS_DISPWARN 2 /* update&return chassis status */ 33 - #define PDC_RETURN_CHASSIS_INFO 128 /* HVERSION dependent: return chassis LED/LCD info */ 34 - 35 - #define PDC_PIM 3 /* Get PIM data */ 36 - #define PDC_PIM_HPMC 0 /* Transfer HPMC data */ 37 - #define PDC_PIM_RETURN_SIZE 1 /* Get Max buffer needed for PIM*/ 38 - #define PDC_PIM_LPMC 2 /* Transfer HPMC data */ 39 - #define PDC_PIM_SOFT_BOOT 3 /* Transfer Soft Boot data */ 40 - #define PDC_PIM_TOC 4 /* Transfer TOC data */ 41 - 42 - #define PDC_MODEL 4 /* PDC model information call */ 43 - #define PDC_MODEL_INFO 0 /* returns information */ 44 - #define PDC_MODEL_BOOTID 1 /* set the BOOT_ID */ 45 - #define PDC_MODEL_VERSIONS 2 /* returns cpu-internal versions*/ 46 - #define PDC_MODEL_SYSMODEL 3 /* return system model info */ 47 - #define PDC_MODEL_ENSPEC 4 /* enable specific option */ 48 - #define PDC_MODEL_DISPEC 5 /* disable specific option */ 49 - #define PDC_MODEL_CPU_ID 6 /* returns cpu-id (only newer machines!) */ 50 - #define PDC_MODEL_CAPABILITIES 7 /* returns OS32/OS64-flags */ 51 - /* Values for PDC_MODEL_CAPABILITIES non-equivalent virtual aliasing support */ 52 - #define PDC_MODEL_OS64 (1 << 0) 53 - #define PDC_MODEL_OS32 (1 << 1) 54 - #define PDC_MODEL_IOPDIR_FDC (1 << 2) 55 - #define PDC_MODEL_NVA_MASK (3 << 4) 56 - #define PDC_MODEL_NVA_SUPPORTED (0 << 4) 57 - #define PDC_MODEL_NVA_SLOW (1 << 4) 58 - #define PDC_MODEL_NVA_UNSUPPORTED (3 << 4) 59 - #define PDC_MODEL_GET_BOOT__OP 8 /* returns boot test options */ 60 - #define PDC_MODEL_SET_BOOT__OP 9 /* set boot test options */ 61 - 62 - #define PA89_INSTRUCTION_SET 0x4 /* capatibilies returned */ 63 - #define PA90_INSTRUCTION_SET 0x8 64 - 65 - #define PDC_CACHE 5 /* return/set cache (& TLB) info*/ 66 - #define PDC_CACHE_INFO 0 /* returns information */ 67 - #define PDC_CACHE_SET_COH 1 /* set coherence state */ 68 - #define PDC_CACHE_RET_SPID 2 /* returns space-ID bits */ 69 - 70 - #define PDC_HPA 6 /* return HPA of processor */ 71 - #define PDC_HPA_PROCESSOR 0 72 - #define PDC_HPA_MODULES 1 73 - 74 - #define PDC_COPROC 7 /* Co-Processor (usually FP unit(s)) */ 75 - #define PDC_COPROC_CFG 0 /* Co-Processor Cfg (FP unit(s) enabled?) */ 76 - 77 - #define PDC_IODC 8 /* talk to IODC */ 78 - #define PDC_IODC_READ 0 /* read IODC entry point */ 79 - /* PDC_IODC_RI_ * INDEX parameter of PDC_IODC_READ */ 80 - #define PDC_IODC_RI_DATA_BYTES 0 /* IODC Data Bytes */ 81 - /* 1, 2 obsolete - HVERSION dependent*/ 82 - #define PDC_IODC_RI_INIT 3 /* Initialize module */ 83 - #define PDC_IODC_RI_IO 4 /* Module input/output */ 84 - #define PDC_IODC_RI_SPA 5 /* Module input/output */ 85 - #define PDC_IODC_RI_CONFIG 6 /* Module input/output */ 86 - /* 7 obsolete - HVERSION dependent */ 87 - #define PDC_IODC_RI_TEST 8 /* Module input/output */ 88 - #define PDC_IODC_RI_TLB 9 /* Module input/output */ 89 - #define PDC_IODC_NINIT 2 /* non-destructive init */ 90 - #define PDC_IODC_DINIT 3 /* destructive init */ 91 - #define PDC_IODC_MEMERR 4 /* check for memory errors */ 92 - #define PDC_IODC_INDEX_DATA 0 /* get first 16 bytes from mod IODC */ 93 - #define PDC_IODC_BUS_ERROR -4 /* bus error return value */ 94 - #define PDC_IODC_INVALID_INDEX -5 /* invalid index return value */ 95 - #define PDC_IODC_COUNT -6 /* count is too small */ 96 - 97 - #define PDC_TOD 9 /* time-of-day clock (TOD) */ 98 - #define PDC_TOD_READ 0 /* read TOD */ 99 - #define PDC_TOD_WRITE 1 /* write TOD */ 100 - 101 - 102 - #define PDC_STABLE 10 /* stable storage (sprockets) */ 103 - #define PDC_STABLE_READ 0 104 - #define PDC_STABLE_WRITE 1 105 - #define PDC_STABLE_RETURN_SIZE 2 106 - #define PDC_STABLE_VERIFY_CONTENTS 3 107 - #define PDC_STABLE_INITIALIZE 4 108 - 109 - #define PDC_NVOLATILE 11 /* often not implemented */ 110 - 111 - #define PDC_ADD_VALID 12 /* Memory validation PDC call */ 112 - #define PDC_ADD_VALID_VERIFY 0 /* Make PDC_ADD_VALID verify region */ 113 - 114 - #define PDC_INSTR 15 /* get instr to invoke PDCE_CHECK() */ 115 - 116 - #define PDC_PROC 16 /* (sprockets) */ 117 - 118 - #define PDC_CONFIG 16 /* (sprockets) */ 119 - #define PDC_CONFIG_DECONFIG 0 120 - #define PDC_CONFIG_DRECONFIG 1 121 - #define PDC_CONFIG_DRETURN_CONFIG 2 122 - 123 - #define PDC_BLOCK_TLB 18 /* manage hardware block-TLB */ 124 - #define PDC_BTLB_INFO 0 /* returns parameter */ 125 - #define PDC_BTLB_INSERT 1 /* insert BTLB entry */ 126 - #define PDC_BTLB_PURGE 2 /* purge BTLB entries */ 127 - #define PDC_BTLB_PURGE_ALL 3 /* purge all BTLB entries */ 128 - 129 - #define PDC_TLB 19 /* manage hardware TLB miss handling */ 130 - #define PDC_TLB_INFO 0 /* returns parameter */ 131 - #define PDC_TLB_SETUP 1 /* set up miss handling */ 132 - 133 - #define PDC_MEM 20 /* Manage memory */ 134 - #define PDC_MEM_MEMINFO 0 135 - #define PDC_MEM_ADD_PAGE 1 136 - #define PDC_MEM_CLEAR_PDT 2 137 - #define PDC_MEM_READ_PDT 3 138 - #define PDC_MEM_RESET_CLEAR 4 139 - #define PDC_MEM_GOODMEM 5 140 - #define PDC_MEM_TABLE 128 /* Non contig mem map (sprockets) */ 141 - #define PDC_MEM_RETURN_ADDRESS_TABLE PDC_MEM_TABLE 142 - #define PDC_MEM_GET_MEMORY_SYSTEM_TABLES_SIZE 131 143 - #define PDC_MEM_GET_MEMORY_SYSTEM_TABLES 132 144 - #define PDC_MEM_GET_PHYSICAL_LOCATION_FROM_MEMORY_ADDRESS 133 145 - 146 - #define PDC_MEM_RET_SBE_REPLACED 5 /* PDC_MEM return values */ 147 - #define PDC_MEM_RET_DUPLICATE_ENTRY 4 148 - #define PDC_MEM_RET_BUF_SIZE_SMALL 1 149 - #define PDC_MEM_RET_PDT_FULL -11 150 - #define PDC_MEM_RET_INVALID_PHYSICAL_LOCATION ~0ULL 151 - 152 - #define PDC_PSW 21 /* Get/Set default System Mask */ 153 - #define PDC_PSW_MASK 0 /* Return mask */ 154 - #define PDC_PSW_GET_DEFAULTS 1 /* Return defaults */ 155 - #define PDC_PSW_SET_DEFAULTS 2 /* Set default */ 156 - #define PDC_PSW_ENDIAN_BIT 1 /* set for big endian */ 157 - #define PDC_PSW_WIDE_BIT 2 /* set for wide mode */ 158 - 159 - #define PDC_SYSTEM_MAP 22 /* find system modules */ 160 - #define PDC_FIND_MODULE 0 161 - #define PDC_FIND_ADDRESS 1 162 - #define PDC_TRANSLATE_PATH 2 163 - 164 - #define PDC_SOFT_POWER 23 /* soft power switch */ 165 - #define PDC_SOFT_POWER_INFO 0 /* return info about the soft power switch */ 166 - #define PDC_SOFT_POWER_ENABLE 1 /* enable/disable soft power switch */ 167 - 168 - 169 - /* HVERSION dependent */ 170 - 171 - /* The PDC_MEM_MAP calls */ 172 - #define PDC_MEM_MAP 128 /* on s700: return page info */ 173 - #define PDC_MEM_MAP_HPA 0 /* returns hpa of a module */ 174 - 175 - #define PDC_EEPROM 129 /* EEPROM access */ 176 - #define PDC_EEPROM_READ_WORD 0 177 - #define PDC_EEPROM_WRITE_WORD 1 178 - #define PDC_EEPROM_READ_BYTE 2 179 - #define PDC_EEPROM_WRITE_BYTE 3 180 - #define PDC_EEPROM_EEPROM_PASSWORD -1000 181 - 182 - #define PDC_NVM 130 /* NVM (non-volatile memory) access */ 183 - #define PDC_NVM_READ_WORD 0 184 - #define PDC_NVM_WRITE_WORD 1 185 - #define PDC_NVM_READ_BYTE 2 186 - #define PDC_NVM_WRITE_BYTE 3 187 - 188 - #define PDC_SEED_ERROR 132 /* (sprockets) */ 189 - 190 - #define PDC_IO 135 /* log error info, reset IO system */ 191 - #define PDC_IO_READ_AND_CLEAR_ERRORS 0 192 - #define PDC_IO_RESET 1 193 - #define PDC_IO_RESET_DEVICES 2 194 - /* sets bits 6&7 (little endian) of the HcControl Register */ 195 - #define PDC_IO_USB_SUSPEND 0xC000000000000000 196 - #define PDC_IO_EEPROM_IO_ERR_TABLE_FULL -5 /* return value */ 197 - #define PDC_IO_NO_SUSPEND -6 /* return value */ 198 - 199 - #define PDC_BROADCAST_RESET 136 /* reset all processors */ 200 - #define PDC_DO_RESET 0 /* option: perform a broadcast reset */ 201 - #define PDC_DO_FIRM_TEST_RESET 1 /* Do broadcast reset with bitmap */ 202 - #define PDC_BR_RECONFIGURATION 2 /* reset w/reconfiguration */ 203 - #define PDC_FIRM_TEST_MAGIC 0xab9ec36fUL /* for this reboot only */ 204 - 205 - #define PDC_LAN_STATION_ID 138 /* Hversion dependent mechanism for */ 206 - #define PDC_LAN_STATION_ID_READ 0 /* getting the lan station address */ 207 - 208 - #define PDC_LAN_STATION_ID_SIZE 6 209 - 210 - #define PDC_CHECK_RANGES 139 /* (sprockets) */ 211 - 212 - #define PDC_NV_SECTIONS 141 /* (sprockets) */ 213 - 214 - #define PDC_PERFORMANCE 142 /* performance monitoring */ 215 - 216 - #define PDC_SYSTEM_INFO 143 /* system information */ 217 - #define PDC_SYSINFO_RETURN_INFO_SIZE 0 218 - #define PDC_SYSINFO_RRETURN_SYS_INFO 1 219 - #define PDC_SYSINFO_RRETURN_ERRORS 2 220 - #define PDC_SYSINFO_RRETURN_WARNINGS 3 221 - #define PDC_SYSINFO_RETURN_REVISIONS 4 222 - #define PDC_SYSINFO_RRETURN_DIAGNOSE 5 223 - #define PDC_SYSINFO_RRETURN_HV_DIAGNOSE 1005 224 - 225 - #define PDC_RDR 144 /* (sprockets) */ 226 - #define PDC_RDR_READ_BUFFER 0 227 - #define PDC_RDR_READ_SINGLE 1 228 - #define PDC_RDR_WRITE_SINGLE 2 229 - 230 - #define PDC_INTRIGUE 145 /* (sprockets) */ 231 - #define PDC_INTRIGUE_WRITE_BUFFER 0 232 - #define PDC_INTRIGUE_GET_SCRATCH_BUFSIZE 1 233 - #define PDC_INTRIGUE_START_CPU_COUNTERS 2 234 - #define PDC_INTRIGUE_STOP_CPU_COUNTERS 3 235 - 236 - #define PDC_STI 146 /* STI access */ 237 - /* same as PDC_PCI_XXX values (see below) */ 238 - 239 - /* Legacy PDC definitions for same stuff */ 240 - #define PDC_PCI_INDEX 147 241 - #define PDC_PCI_INTERFACE_INFO 0 242 - #define PDC_PCI_SLOT_INFO 1 243 - #define PDC_PCI_INFLIGHT_BYTES 2 244 - #define PDC_PCI_READ_CONFIG 3 245 - #define PDC_PCI_WRITE_CONFIG 4 246 - #define PDC_PCI_READ_PCI_IO 5 247 - #define PDC_PCI_WRITE_PCI_IO 6 248 - #define PDC_PCI_READ_CONFIG_DELAY 7 249 - #define PDC_PCI_UPDATE_CONFIG_DELAY 8 250 - #define PDC_PCI_PCI_PATH_TO_PCI_HPA 9 251 - #define PDC_PCI_PCI_HPA_TO_PCI_PATH 10 252 - #define PDC_PCI_PCI_PATH_TO_PCI_BUS 11 253 - #define PDC_PCI_PCI_RESERVED 12 254 - #define PDC_PCI_PCI_INT_ROUTE_SIZE 13 255 - #define PDC_PCI_GET_INT_TBL_SIZE PDC_PCI_PCI_INT_ROUTE_SIZE 256 - #define PDC_PCI_PCI_INT_ROUTE 14 257 - #define PDC_PCI_GET_INT_TBL PDC_PCI_PCI_INT_ROUTE 258 - #define PDC_PCI_READ_MON_TYPE 15 259 - #define PDC_PCI_WRITE_MON_TYPE 16 260 - 261 - 262 - /* Get SCSI Interface Card info: SDTR, SCSI ID, mode (SE vs LVD) */ 263 - #define PDC_INITIATOR 163 264 - #define PDC_GET_INITIATOR 0 265 - #define PDC_SET_INITIATOR 1 266 - #define PDC_DELETE_INITIATOR 2 267 - #define PDC_RETURN_TABLE_SIZE 3 268 - #define PDC_RETURN_TABLE 4 269 - 270 - #define PDC_LINK 165 /* (sprockets) */ 271 - #define PDC_LINK_PCI_ENTRY_POINTS 0 /* list (Arg1) = 0 */ 272 - #define PDC_LINK_USB_ENTRY_POINTS 1 /* list (Arg1) = 1 */ 273 - 274 - /* cl_class 275 - * page 3-33 of IO-Firmware ARS 276 - * IODC ENTRY_INIT(Search first) RET[1] 277 - */ 278 - #define CL_NULL 0 /* invalid */ 279 - #define CL_RANDOM 1 /* random access (as disk) */ 280 - #define CL_SEQU 2 /* sequential access (as tape) */ 281 - #define CL_DUPLEX 7 /* full-duplex point-to-point (RS-232, Net) */ 282 - #define CL_KEYBD 8 /* half-duplex console (HIL Keyboard) */ 283 - #define CL_DISPL 9 /* half-duplex console (display) */ 284 - #define CL_FC 10 /* FiberChannel access media */ 285 - 286 - /* IODC ENTRY_INIT() */ 287 - #define ENTRY_INIT_SRCH_FRST 2 288 - #define ENTRY_INIT_SRCH_NEXT 3 289 - #define ENTRY_INIT_MOD_DEV 4 290 - #define ENTRY_INIT_DEV 5 291 - #define ENTRY_INIT_MOD 6 292 - #define ENTRY_INIT_MSG 9 293 - 294 - /* IODC ENTRY_IO() */ 295 - #define ENTRY_IO_BOOTIN 0 296 - #define ENTRY_IO_BOOTOUT 1 297 - #define ENTRY_IO_CIN 2 298 - #define ENTRY_IO_COUT 3 299 - #define ENTRY_IO_CLOSE 4 300 - #define ENTRY_IO_GETMSG 9 301 - #define ENTRY_IO_BBLOCK_IN 16 302 - #define ENTRY_IO_BBLOCK_OUT 17 303 - 304 - /* IODC ENTRY_SPA() */ 305 - 306 - /* IODC ENTRY_CONFIG() */ 307 - 308 - /* IODC ENTRY_TEST() */ 309 - 310 - /* IODC ENTRY_TLB() */ 311 - 312 - /* constants for OS (NVM...) */ 313 - #define OS_ID_NONE 0 /* Undefined OS ID */ 314 - #define OS_ID_HPUX 1 /* HP-UX OS */ 315 - #define OS_ID_MPEXL 2 /* MPE XL OS */ 316 - #define OS_ID_OSF 3 /* OSF OS */ 317 - #define OS_ID_HPRT 4 /* HP-RT OS */ 318 - #define OS_ID_NOVEL 5 /* NOVELL OS */ 319 - #define OS_ID_LINUX 6 /* Linux */ 320 - 321 - 322 - /* constants for PDC_CHASSIS */ 323 - #define OSTAT_OFF 0 324 - #define OSTAT_FLT 1 325 - #define OSTAT_TEST 2 326 - #define OSTAT_INIT 3 327 - #define OSTAT_SHUT 4 328 - #define OSTAT_WARN 5 329 - #define OSTAT_RUN 6 330 - #define OSTAT_ON 7 331 - 332 - /* Page Zero constant offsets used by the HPMC handler */ 333 - #define BOOT_CONSOLE_HPA_OFFSET 0x3c0 334 - #define BOOT_CONSOLE_SPA_OFFSET 0x3c4 335 - #define BOOT_CONSOLE_PATH_OFFSET 0x3a8 336 - 337 - /* size of the pdc_result buffer for firmware.c */ 338 - #define NUM_PDC_RESULT 32 4 + #include <uapi/asm/pdc.h> 339 5 340 6 #if !defined(__ASSEMBLY__) 341 - 342 - #include <linux/types.h> 343 - 344 - #ifdef __KERNEL__ 345 7 346 8 extern int pdc_type; 347 9 ··· 335 673 } 336 674 } 337 675 338 - #endif /* __KERNEL__ */ 339 - 340 - /* flags of the device_path */ 341 - #define PF_AUTOBOOT 0x80 342 - #define PF_AUTOSEARCH 0x40 343 - #define PF_TIMER 0x0F 344 - 345 - struct device_path { /* page 1-69 */ 346 - unsigned char flags; /* flags see above! */ 347 - unsigned char bc[6]; /* bus converter routing info */ 348 - unsigned char mod; 349 - unsigned int layers[6];/* device-specific layer-info */ 350 - } __attribute__((aligned(8))) ; 351 - 352 - struct pz_device { 353 - struct device_path dp; /* see above */ 354 - /* struct iomod *hpa; */ 355 - unsigned int hpa; /* HPA base address */ 356 - /* char *spa; */ 357 - unsigned int spa; /* SPA base address */ 358 - /* int (*iodc_io)(struct iomod*, ...); */ 359 - unsigned int iodc_io; /* device entry point */ 360 - short pad; /* reserved */ 361 - unsigned short cl_class;/* see below */ 362 - } __attribute__((aligned(8))) ; 363 - 364 - struct zeropage { 365 - /* [0x000] initialize vectors (VEC) */ 366 - unsigned int vec_special; /* must be zero */ 367 - /* int (*vec_pow_fail)(void);*/ 368 - unsigned int vec_pow_fail; /* power failure handler */ 369 - /* int (*vec_toc)(void); */ 370 - unsigned int vec_toc; 371 - unsigned int vec_toclen; 372 - /* int (*vec_rendz)(void); */ 373 - unsigned int vec_rendz; 374 - int vec_pow_fail_flen; 375 - int vec_pad[10]; 376 - 377 - /* [0x040] reserved processor dependent */ 378 - int pad0[112]; 379 - 380 - /* [0x200] reserved */ 381 - int pad1[84]; 382 - 383 - /* [0x350] memory configuration (MC) */ 384 - int memc_cont; /* contiguous mem size (bytes) */ 385 - int memc_phsize; /* physical memory size */ 386 - int memc_adsize; /* additional mem size, bytes of SPA space used by PDC */ 387 - unsigned int mem_pdc_hi; /* used for 64-bit */ 388 - 389 - /* [0x360] various parameters for the boot-CPU */ 390 - /* unsigned int *mem_booterr[8]; */ 391 - unsigned int mem_booterr[8]; /* ptr to boot errors */ 392 - unsigned int mem_free; /* first location, where OS can be loaded */ 393 - /* struct iomod *mem_hpa; */ 394 - unsigned int mem_hpa; /* HPA of the boot-CPU */ 395 - /* int (*mem_pdc)(int, ...); */ 396 - unsigned int mem_pdc; /* PDC entry point */ 397 - unsigned int mem_10msec; /* number of clock ticks in 10msec */ 398 - 399 - /* [0x390] initial memory module (IMM) */ 400 - /* struct iomod *imm_hpa; */ 401 - unsigned int imm_hpa; /* HPA of the IMM */ 402 - int imm_soft_boot; /* 0 = was hard boot, 1 = was soft boot */ 403 - unsigned int imm_spa_size; /* SPA size of the IMM in bytes */ 404 - unsigned int imm_max_mem; /* bytes of mem in IMM */ 405 - 406 - /* [0x3A0] boot console, display device and keyboard */ 407 - struct pz_device mem_cons; /* description of console device */ 408 - struct pz_device mem_boot; /* description of boot device */ 409 - struct pz_device mem_kbd; /* description of keyboard device */ 410 - 411 - /* [0x430] reserved */ 412 - int pad430[116]; 413 - 414 - /* [0x600] processor dependent */ 415 - __u32 pad600[1]; 416 - __u32 proc_sti; /* pointer to STI ROM */ 417 - __u32 pad608[126]; 418 - }; 419 - 420 676 #endif /* !defined(__ASSEMBLY__) */ 421 - 422 677 #endif /* _PARISC_PDC_H */
-7
arch/parisc/include/asm/percpu.h
··· 1 - #ifndef _PARISC_PERCPU_H 2 - #define _PARISC_PERCPU_H 3 - 4 - #include <asm-generic/percpu.h> 5 - 6 - #endif 7 -
-1
arch/parisc/include/asm/poll.h
··· 1 - #include <asm-generic/poll.h>
arch/parisc/include/asm/posix_types.h arch/parisc/include/uapi/asm/posix_types.h
+3 -43
arch/parisc/include/asm/ptrace.h
··· 1 - #ifndef _PARISC_PTRACE_H 2 - #define _PARISC_PTRACE_H 3 - 4 1 /* written by Philipp Rumpf, Copyright (C) 1999 SuSE GmbH Nuernberg 5 2 ** Copyright (C) 2000 Grant Grundler, Hewlett-Packard 6 3 */ 4 + #ifndef _PARISC_PTRACE_H 5 + #define _PARISC_PTRACE_H 7 6 8 - #include <linux/types.h> 7 + #include <uapi/asm/ptrace.h> 9 8 10 - /* This struct defines the way the registers are stored on the 11 - * stack during a system call. 12 - * 13 - * N.B. gdb/strace care about the size and offsets within this 14 - * structure. If you change things, you may break object compatibility 15 - * for those applications. 16 - */ 17 - 18 - struct pt_regs { 19 - unsigned long gr[32]; /* PSW is in gr[0] */ 20 - __u64 fr[32]; 21 - unsigned long sr[ 8]; 22 - unsigned long iasq[2]; 23 - unsigned long iaoq[2]; 24 - unsigned long cr27; 25 - unsigned long pad0; /* available for other uses */ 26 - unsigned long orig_r28; 27 - unsigned long ksp; 28 - unsigned long kpc; 29 - unsigned long sar; /* CR11 */ 30 - unsigned long iir; /* CR19 */ 31 - unsigned long isr; /* CR20 */ 32 - unsigned long ior; /* CR21 */ 33 - unsigned long ipsw; /* CR22 */ 34 - }; 35 - 36 - /* 37 - * The numbers chosen here are somewhat arbitrary but absolutely MUST 38 - * not overlap with any of the number assigned in <linux/ptrace.h>. 39 - * 40 - * These ones are taken from IA-64 on the assumption that theirs are 41 - * the most correct (and we also want to support PTRACE_SINGLEBLOCK 42 - * since we have taken branch traps too) 43 - */ 44 - #define PTRACE_SINGLEBLOCK 12 /* resume execution until next branch */ 45 - 46 - #ifdef __KERNEL__ 47 9 48 10 #define task_regs(task) ((struct pt_regs *) ((char *)(task) + TASK_REGS)) 49 11 ··· 19 57 #define user_stack_pointer(regs) ((regs)->gr[30]) 20 58 unsigned long profile_pc(struct pt_regs *); 21 59 22 - 23 - #endif /* __KERNEL__ */ 24 60 25 61 #endif
-5
arch/parisc/include/asm/real.h
··· 1 - #ifndef _PARISC_REAL_H 2 - #define _PARISC_REAL_H 3 - 4 - 5 - #endif
arch/parisc/include/asm/resource.h arch/parisc/include/uapi/asm/resource.h
-6
arch/parisc/include/asm/segment.h
··· 1 - #ifndef __PARISC_SEGMENT_H 2 - #define __PARISC_SEGMENT_H 3 - 4 - /* Only here because we have some old header files that expect it.. */ 5 - 6 - #endif
arch/parisc/include/asm/sembuf.h arch/parisc/include/uapi/asm/sembuf.h
arch/parisc/include/asm/setup.h arch/parisc/include/uapi/asm/setup.h
arch/parisc/include/asm/shmbuf.h arch/parisc/include/uapi/asm/shmbuf.h
arch/parisc/include/asm/sigcontext.h arch/parisc/include/uapi/asm/sigcontext.h
arch/parisc/include/asm/siginfo.h arch/parisc/include/uapi/asm/siginfo.h
+1 -112
arch/parisc/include/asm/signal.h
··· 1 1 #ifndef _ASM_PARISC_SIGNAL_H 2 2 #define _ASM_PARISC_SIGNAL_H 3 3 4 - #define SIGHUP 1 5 - #define SIGINT 2 6 - #define SIGQUIT 3 7 - #define SIGILL 4 8 - #define SIGTRAP 5 9 - #define SIGABRT 6 10 - #define SIGIOT 6 11 - #define SIGEMT 7 12 - #define SIGFPE 8 13 - #define SIGKILL 9 14 - #define SIGBUS 10 15 - #define SIGSEGV 11 16 - #define SIGSYS 12 /* Linux doesn't use this */ 17 - #define SIGPIPE 13 18 - #define SIGALRM 14 19 - #define SIGTERM 15 20 - #define SIGUSR1 16 21 - #define SIGUSR2 17 22 - #define SIGCHLD 18 23 - #define SIGPWR 19 24 - #define SIGVTALRM 20 25 - #define SIGPROF 21 26 - #define SIGIO 22 27 - #define SIGPOLL SIGIO 28 - #define SIGWINCH 23 29 - #define SIGSTOP 24 30 - #define SIGTSTP 25 31 - #define SIGCONT 26 32 - #define SIGTTIN 27 33 - #define SIGTTOU 28 34 - #define SIGURG 29 35 - #define SIGLOST 30 /* Linux doesn't use this either */ 36 - #define SIGUNUSED 31 37 - #define SIGRESERVE SIGUNUSED 4 + #include <uapi/asm/signal.h> 38 5 39 - #define SIGXCPU 33 40 - #define SIGXFSZ 34 41 - #define SIGSTKFLT 36 42 - 43 - /* These should not be considered constants from userland. */ 44 - #define SIGRTMIN 37 45 - #define SIGRTMAX _NSIG /* it's 44 under HP/UX */ 46 - 47 - /* 48 - * SA_FLAGS values: 49 - * 50 - * SA_ONSTACK indicates that a registered stack_t will be used. 51 - * SA_RESTART flag to get restarting signals (which were the default long ago) 52 - * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. 53 - * SA_RESETHAND clears the handler when the signal is delivered. 54 - * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies. 55 - * SA_NODEFER prevents the current signal from being masked in the handler. 56 - * 57 - * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single 58 - * Unix names RESETHAND and NODEFER respectively. 59 - */ 60 - #define SA_ONSTACK 0x00000001 61 - #define SA_RESETHAND 0x00000004 62 - #define SA_NOCLDSTOP 0x00000008 63 - #define SA_SIGINFO 0x00000010 64 - #define SA_NODEFER 0x00000020 65 - #define SA_RESTART 0x00000040 66 - #define SA_NOCLDWAIT 0x00000080 67 - #define _SA_SIGGFAULT 0x00000100 /* HPUX */ 68 - 69 - #define SA_NOMASK SA_NODEFER 70 - #define SA_ONESHOT SA_RESETHAND 71 - 72 - #define SA_RESTORER 0x04000000 /* obsolete -- ignored */ 73 - 74 - /* 75 - * sigaltstack controls 76 - */ 77 - #define SS_ONSTACK 1 78 - #define SS_DISABLE 2 79 - 80 - #define MINSIGSTKSZ 2048 81 - #define SIGSTKSZ 8192 82 - 83 - #ifdef __KERNEL__ 84 6 85 7 #define _NSIG 64 86 8 /* bits-per-word, where word apparently means 'long' not 'int' */ 87 9 #define _NSIG_BPW BITS_PER_LONG 88 10 #define _NSIG_WORDS (_NSIG / _NSIG_BPW) 89 11 90 - #endif /* __KERNEL__ */ 91 - 92 - #define SIG_BLOCK 0 /* for blocking signals */ 93 - #define SIG_UNBLOCK 1 /* for unblocking signals */ 94 - #define SIG_SETMASK 2 /* for setting the signal mask */ 95 - 96 - #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ 97 - #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ 98 - #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ 99 - 100 12 # ifndef __ASSEMBLY__ 101 - 102 - # include <linux/types.h> 103 - 104 - /* Avoid too many header ordering problems. */ 105 - struct siginfo; 106 - 107 - /* Type of a signal handler. */ 108 13 #ifdef CONFIG_64BIT 109 - /* function pointers on 64-bit parisc are pointers to little structs and the 110 - * compiler doesn't support code which changes or tests the address of 111 - * the function in the little struct. This is really ugly -PB 112 - */ 113 - typedef char __user *__sighandler_t; 114 14 #else 115 - typedef void __signalfn_t(int); 116 - typedef __signalfn_t __user *__sighandler_t; 117 15 #endif 118 - 119 - typedef struct sigaltstack { 120 - void __user *ss_sp; 121 - int ss_flags; 122 - size_t ss_size; 123 - } stack_t; 124 - 125 - #ifdef __KERNEL__ 126 16 127 17 /* Most things should be clean enough to redefine this at will, if care 128 18 is taken to make libc match. */ ··· 38 148 39 149 #include <asm/sigcontext.h> 40 150 41 - #endif /* __KERNEL__ */ 42 151 #endif /* !__ASSEMBLY */ 43 152 #endif /* _ASM_PARISC_SIGNAL_H */
arch/parisc/include/asm/socket.h arch/parisc/include/uapi/asm/socket.h
arch/parisc/include/asm/sockios.h arch/parisc/include/uapi/asm/sockios.h
arch/parisc/include/asm/stat.h arch/parisc/include/uapi/asm/stat.h
arch/parisc/include/asm/statfs.h arch/parisc/include/uapi/asm/statfs.h
arch/parisc/include/asm/swab.h arch/parisc/include/uapi/asm/swab.h
arch/parisc/include/asm/termbits.h arch/parisc/include/uapi/asm/termbits.h
+1 -40
arch/parisc/include/asm/termios.h
··· 1 1 #ifndef _PARISC_TERMIOS_H 2 2 #define _PARISC_TERMIOS_H 3 3 4 - #include <asm/termbits.h> 5 - #include <asm/ioctls.h> 4 + #include <uapi/asm/termios.h> 6 5 7 - struct winsize { 8 - unsigned short ws_row; 9 - unsigned short ws_col; 10 - unsigned short ws_xpixel; 11 - unsigned short ws_ypixel; 12 - }; 13 - 14 - #define NCC 8 15 - struct termio { 16 - unsigned short c_iflag; /* input mode flags */ 17 - unsigned short c_oflag; /* output mode flags */ 18 - unsigned short c_cflag; /* control mode flags */ 19 - unsigned short c_lflag; /* local mode flags */ 20 - unsigned char c_line; /* line discipline */ 21 - unsigned char c_cc[NCC]; /* control characters */ 22 - }; 23 - 24 - /* modem lines */ 25 - #define TIOCM_LE 0x001 26 - #define TIOCM_DTR 0x002 27 - #define TIOCM_RTS 0x004 28 - #define TIOCM_ST 0x008 29 - #define TIOCM_SR 0x010 30 - #define TIOCM_CTS 0x020 31 - #define TIOCM_CAR 0x040 32 - #define TIOCM_RNG 0x080 33 - #define TIOCM_DSR 0x100 34 - #define TIOCM_CD TIOCM_CAR 35 - #define TIOCM_RI TIOCM_RNG 36 - #define TIOCM_OUT1 0x2000 37 - #define TIOCM_OUT2 0x4000 38 - #define TIOCM_LOOP 0x8000 39 - 40 - /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */ 41 - 42 - #ifdef __KERNEL__ 43 6 44 7 /* intr=^C quit=^\ erase=del kill=^U 45 8 eof=^D vtime=\0 vmin=\1 sxtc=\0 ··· 47 84 #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios2)) 48 85 #define user_termios_to_kernel_termios_1(k, u) copy_from_user(k, u, sizeof(struct termios)) 49 86 #define kernel_termios_to_user_termios_1(u, k) copy_to_user(u, k, sizeof(struct termios)) 50 - 51 - #endif /* __KERNEL__ */ 52 87 53 88 #endif /* _PARISC_TERMIOS_H */
-6
arch/parisc/include/asm/topology.h
··· 1 - #ifndef _ASM_PARISC_TOPOLOGY_H 2 - #define _ASM_PARISC_TOPOLOGY_H 3 - 4 - #include <asm-generic/topology.h> 5 - 6 - #endif /* _ASM_PARISC_TOPOLOGY_H */
arch/parisc/include/asm/types.h arch/parisc/include/uapi/asm/types.h
+1 -834
arch/parisc/include/asm/unistd.h
··· 1 1 #ifndef _ASM_PARISC_UNISTD_H_ 2 2 #define _ASM_PARISC_UNISTD_H_ 3 3 4 - /* 5 - * This file contains the system call numbers. 6 - */ 4 + #include <uapi/asm/unistd.h> 7 5 8 - /* 9 - * HP-UX system calls get their native numbers for binary compatibility. 10 - */ 11 - 12 - #define __NR_HPUX_exit 1 13 - #define __NR_HPUX_fork 2 14 - #define __NR_HPUX_read 3 15 - #define __NR_HPUX_write 4 16 - #define __NR_HPUX_open 5 17 - #define __NR_HPUX_close 6 18 - #define __NR_HPUX_wait 7 19 - #define __NR_HPUX_creat 8 20 - #define __NR_HPUX_link 9 21 - #define __NR_HPUX_unlink 10 22 - #define __NR_HPUX_execv 11 23 - #define __NR_HPUX_chdir 12 24 - #define __NR_HPUX_time 13 25 - #define __NR_HPUX_mknod 14 26 - #define __NR_HPUX_chmod 15 27 - #define __NR_HPUX_chown 16 28 - #define __NR_HPUX_break 17 29 - #define __NR_HPUX_lchmod 18 30 - #define __NR_HPUX_lseek 19 31 - #define __NR_HPUX_getpid 20 32 - #define __NR_HPUX_mount 21 33 - #define __NR_HPUX_umount 22 34 - #define __NR_HPUX_setuid 23 35 - #define __NR_HPUX_getuid 24 36 - #define __NR_HPUX_stime 25 37 - #define __NR_HPUX_ptrace 26 38 - #define __NR_HPUX_alarm 27 39 - #define __NR_HPUX_oldfstat 28 40 - #define __NR_HPUX_pause 29 41 - #define __NR_HPUX_utime 30 42 - #define __NR_HPUX_stty 31 43 - #define __NR_HPUX_gtty 32 44 - #define __NR_HPUX_access 33 45 - #define __NR_HPUX_nice 34 46 - #define __NR_HPUX_ftime 35 47 - #define __NR_HPUX_sync 36 48 - #define __NR_HPUX_kill 37 49 - #define __NR_HPUX_stat 38 50 - #define __NR_HPUX_setpgrp3 39 51 - #define __NR_HPUX_lstat 40 52 - #define __NR_HPUX_dup 41 53 - #define __NR_HPUX_pipe 42 54 - #define __NR_HPUX_times 43 55 - #define __NR_HPUX_profil 44 56 - #define __NR_HPUX_ki_call 45 57 - #define __NR_HPUX_setgid 46 58 - #define __NR_HPUX_getgid 47 59 - #define __NR_HPUX_sigsys 48 60 - #define __NR_HPUX_reserved1 49 61 - #define __NR_HPUX_reserved2 50 62 - #define __NR_HPUX_acct 51 63 - #define __NR_HPUX_set_userthreadid 52 64 - #define __NR_HPUX_oldlock 53 65 - #define __NR_HPUX_ioctl 54 66 - #define __NR_HPUX_reboot 55 67 - #define __NR_HPUX_symlink 56 68 - #define __NR_HPUX_utssys 57 69 - #define __NR_HPUX_readlink 58 70 - #define __NR_HPUX_execve 59 71 - #define __NR_HPUX_umask 60 72 - #define __NR_HPUX_chroot 61 73 - #define __NR_HPUX_fcntl 62 74 - #define __NR_HPUX_ulimit 63 75 - #define __NR_HPUX_getpagesize 64 76 - #define __NR_HPUX_mremap 65 77 - #define __NR_HPUX_vfork 66 78 - #define __NR_HPUX_vread 67 79 - #define __NR_HPUX_vwrite 68 80 - #define __NR_HPUX_sbrk 69 81 - #define __NR_HPUX_sstk 70 82 - #define __NR_HPUX_mmap 71 83 - #define __NR_HPUX_vadvise 72 84 - #define __NR_HPUX_munmap 73 85 - #define __NR_HPUX_mprotect 74 86 - #define __NR_HPUX_madvise 75 87 - #define __NR_HPUX_vhangup 76 88 - #define __NR_HPUX_swapoff 77 89 - #define __NR_HPUX_mincore 78 90 - #define __NR_HPUX_getgroups 79 91 - #define __NR_HPUX_setgroups 80 92 - #define __NR_HPUX_getpgrp2 81 93 - #define __NR_HPUX_setpgrp2 82 94 - #define __NR_HPUX_setitimer 83 95 - #define __NR_HPUX_wait3 84 96 - #define __NR_HPUX_swapon 85 97 - #define __NR_HPUX_getitimer 86 98 - #define __NR_HPUX_gethostname42 87 99 - #define __NR_HPUX_sethostname42 88 100 - #define __NR_HPUX_getdtablesize 89 101 - #define __NR_HPUX_dup2 90 102 - #define __NR_HPUX_getdopt 91 103 - #define __NR_HPUX_fstat 92 104 - #define __NR_HPUX_select 93 105 - #define __NR_HPUX_setdopt 94 106 - #define __NR_HPUX_fsync 95 107 - #define __NR_HPUX_setpriority 96 108 - #define __NR_HPUX_socket_old 97 109 - #define __NR_HPUX_connect_old 98 110 - #define __NR_HPUX_accept_old 99 111 - #define __NR_HPUX_getpriority 100 112 - #define __NR_HPUX_send_old 101 113 - #define __NR_HPUX_recv_old 102 114 - #define __NR_HPUX_socketaddr_old 103 115 - #define __NR_HPUX_bind_old 104 116 - #define __NR_HPUX_setsockopt_old 105 117 - #define __NR_HPUX_listen_old 106 118 - #define __NR_HPUX_vtimes_old 107 119 - #define __NR_HPUX_sigvector 108 120 - #define __NR_HPUX_sigblock 109 121 - #define __NR_HPUX_siggetmask 110 122 - #define __NR_HPUX_sigpause 111 123 - #define __NR_HPUX_sigstack 112 124 - #define __NR_HPUX_recvmsg_old 113 125 - #define __NR_HPUX_sendmsg_old 114 126 - #define __NR_HPUX_vtrace_old 115 127 - #define __NR_HPUX_gettimeofday 116 128 - #define __NR_HPUX_getrusage 117 129 - #define __NR_HPUX_getsockopt_old 118 130 - #define __NR_HPUX_resuba_old 119 131 - #define __NR_HPUX_readv 120 132 - #define __NR_HPUX_writev 121 133 - #define __NR_HPUX_settimeofday 122 134 - #define __NR_HPUX_fchown 123 135 - #define __NR_HPUX_fchmod 124 136 - #define __NR_HPUX_recvfrom_old 125 137 - #define __NR_HPUX_setresuid 126 138 - #define __NR_HPUX_setresgid 127 139 - #define __NR_HPUX_rename 128 140 - #define __NR_HPUX_truncate 129 141 - #define __NR_HPUX_ftruncate 130 142 - #define __NR_HPUX_flock_old 131 143 - #define __NR_HPUX_sysconf 132 144 - #define __NR_HPUX_sendto_old 133 145 - #define __NR_HPUX_shutdown_old 134 146 - #define __NR_HPUX_socketpair_old 135 147 - #define __NR_HPUX_mkdir 136 148 - #define __NR_HPUX_rmdir 137 149 - #define __NR_HPUX_utimes_old 138 150 - #define __NR_HPUX_sigcleanup_old 139 151 - #define __NR_HPUX_setcore 140 152 - #define __NR_HPUX_getpeername_old 141 153 - #define __NR_HPUX_gethostid 142 154 - #define __NR_HPUX_sethostid 143 155 - #define __NR_HPUX_getrlimit 144 156 - #define __NR_HPUX_setrlimit 145 157 - #define __NR_HPUX_killpg_old 146 158 - #define __NR_HPUX_cachectl 147 159 - #define __NR_HPUX_quotactl 148 160 - #define __NR_HPUX_get_sysinfo 149 161 - #define __NR_HPUX_getsockname_old 150 162 - #define __NR_HPUX_privgrp 151 163 - #define __NR_HPUX_rtprio 152 164 - #define __NR_HPUX_plock 153 165 - #define __NR_HPUX_reserved3 154 166 - #define __NR_HPUX_lockf 155 167 - #define __NR_HPUX_semget 156 168 - #define __NR_HPUX_osemctl 157 169 - #define __NR_HPUX_semop 158 170 - #define __NR_HPUX_msgget 159 171 - #define __NR_HPUX_omsgctl 160 172 - #define __NR_HPUX_msgsnd 161 173 - #define __NR_HPUX_msgrecv 162 174 - #define __NR_HPUX_shmget 163 175 - #define __NR_HPUX_oshmctl 164 176 - #define __NR_HPUX_shmat 165 177 - #define __NR_HPUX_shmdt 166 178 - #define __NR_HPUX_m68020_advise 167 179 - /* [168,189] are for Discless/DUX */ 180 - #define __NR_HPUX_csp 168 181 - #define __NR_HPUX_cluster 169 182 - #define __NR_HPUX_mkrnod 170 183 - #define __NR_HPUX_test 171 184 - #define __NR_HPUX_unsp_open 172 185 - #define __NR_HPUX_reserved4 173 186 - #define __NR_HPUX_getcontext_old 174 187 - #define __NR_HPUX_osetcontext 175 188 - #define __NR_HPUX_bigio 176 189 - #define __NR_HPUX_pipenode 177 190 - #define __NR_HPUX_lsync 178 191 - #define __NR_HPUX_getmachineid 179 192 - #define __NR_HPUX_cnodeid 180 193 - #define __NR_HPUX_cnodes 181 194 - #define __NR_HPUX_swapclients 182 195 - #define __NR_HPUX_rmt_process 183 196 - #define __NR_HPUX_dskless_stats 184 197 - #define __NR_HPUX_sigprocmask 185 198 - #define __NR_HPUX_sigpending 186 199 - #define __NR_HPUX_sigsuspend 187 200 - #define __NR_HPUX_sigaction 188 201 - #define __NR_HPUX_reserved5 189 202 - #define __NR_HPUX_nfssvc 190 203 - #define __NR_HPUX_getfh 191 204 - #define __NR_HPUX_getdomainname 192 205 - #define __NR_HPUX_setdomainname 193 206 - #define __NR_HPUX_async_daemon 194 207 - #define __NR_HPUX_getdirentries 195 208 - #define __NR_HPUX_statfs 196 209 - #define __NR_HPUX_fstatfs 197 210 - #define __NR_HPUX_vfsmount 198 211 - #define __NR_HPUX_reserved6 199 212 - #define __NR_HPUX_waitpid 200 213 - /* 201 - 223 missing */ 214 - #define __NR_HPUX_sigsetreturn 224 215 - #define __NR_HPUX_sigsetstatemask 225 216 - /* 226 missing */ 217 - #define __NR_HPUX_cs 227 218 - #define __NR_HPUX_cds 228 219 - #define __NR_HPUX_set_no_trunc 229 220 - #define __NR_HPUX_pathconf 230 221 - #define __NR_HPUX_fpathconf 231 222 - /* 232, 233 missing */ 223 - #define __NR_HPUX_nfs_fcntl 234 224 - #define __NR_HPUX_ogetacl 235 225 - #define __NR_HPUX_ofgetacl 236 226 - #define __NR_HPUX_osetacl 237 227 - #define __NR_HPUX_ofsetacl 238 228 - #define __NR_HPUX_pstat 239 229 - #define __NR_HPUX_getaudid 240 230 - #define __NR_HPUX_setaudid 241 231 - #define __NR_HPUX_getaudproc 242 232 - #define __NR_HPUX_setaudproc 243 233 - #define __NR_HPUX_getevent 244 234 - #define __NR_HPUX_setevent 245 235 - #define __NR_HPUX_audwrite 246 236 - #define __NR_HPUX_audswitch 247 237 - #define __NR_HPUX_audctl 248 238 - #define __NR_HPUX_ogetaccess 249 239 - #define __NR_HPUX_fsctl 250 240 - /* 251 - 258 missing */ 241 - #define __NR_HPUX_swapfs 259 242 - #define __NR_HPUX_fss 260 243 - /* 261 - 266 missing */ 244 - #define __NR_HPUX_tsync 267 245 - #define __NR_HPUX_getnumfds 268 246 - #define __NR_HPUX_poll 269 247 - #define __NR_HPUX_getmsg 270 248 - #define __NR_HPUX_putmsg 271 249 - #define __NR_HPUX_fchdir 272 250 - #define __NR_HPUX_getmount_cnt 273 251 - #define __NR_HPUX_getmount_entry 274 252 - #define __NR_HPUX_accept 275 253 - #define __NR_HPUX_bind 276 254 - #define __NR_HPUX_connect 277 255 - #define __NR_HPUX_getpeername 278 256 - #define __NR_HPUX_getsockname 279 257 - #define __NR_HPUX_getsockopt 280 258 - #define __NR_HPUX_listen 281 259 - #define __NR_HPUX_recv 282 260 - #define __NR_HPUX_recvfrom 283 261 - #define __NR_HPUX_recvmsg 284 262 - #define __NR_HPUX_send 285 263 - #define __NR_HPUX_sendmsg 286 264 - #define __NR_HPUX_sendto 287 265 - #define __NR_HPUX_setsockopt 288 266 - #define __NR_HPUX_shutdown 289 267 - #define __NR_HPUX_socket 290 268 - #define __NR_HPUX_socketpair 291 269 - #define __NR_HPUX_proc_open 292 270 - #define __NR_HPUX_proc_close 293 271 - #define __NR_HPUX_proc_send 294 272 - #define __NR_HPUX_proc_recv 295 273 - #define __NR_HPUX_proc_sendrecv 296 274 - #define __NR_HPUX_proc_syscall 297 275 - /* 298 - 311 missing */ 276 - #define __NR_HPUX_semctl 312 277 - #define __NR_HPUX_msgctl 313 278 - #define __NR_HPUX_shmctl 314 279 - #define __NR_HPUX_mpctl 315 280 - #define __NR_HPUX_exportfs 316 281 - #define __NR_HPUX_getpmsg 317 282 - #define __NR_HPUX_putpmsg 318 283 - /* 319 missing */ 284 - #define __NR_HPUX_msync 320 285 - #define __NR_HPUX_msleep 321 286 - #define __NR_HPUX_mwakeup 322 287 - #define __NR_HPUX_msem_init 323 288 - #define __NR_HPUX_msem_remove 324 289 - #define __NR_HPUX_adjtime 325 290 - #define __NR_HPUX_kload 326 291 - #define __NR_HPUX_fattach 327 292 - #define __NR_HPUX_fdetach 328 293 - #define __NR_HPUX_serialize 329 294 - #define __NR_HPUX_statvfs 330 295 - #define __NR_HPUX_fstatvfs 331 296 - #define __NR_HPUX_lchown 332 297 - #define __NR_HPUX_getsid 333 298 - #define __NR_HPUX_sysfs 334 299 - /* 335, 336 missing */ 300 - #define __NR_HPUX_sched_setparam 337 301 - #define __NR_HPUX_sched_getparam 338 302 - #define __NR_HPUX_sched_setscheduler 339 303 - #define __NR_HPUX_sched_getscheduler 340 304 - #define __NR_HPUX_sched_yield 341 305 - #define __NR_HPUX_sched_get_priority_max 342 306 - #define __NR_HPUX_sched_get_priority_min 343 307 - #define __NR_HPUX_sched_rr_get_interval 344 308 - #define __NR_HPUX_clock_settime 345 309 - #define __NR_HPUX_clock_gettime 346 310 - #define __NR_HPUX_clock_getres 347 311 - #define __NR_HPUX_timer_create 348 312 - #define __NR_HPUX_timer_delete 349 313 - #define __NR_HPUX_timer_settime 350 314 - #define __NR_HPUX_timer_gettime 351 315 - #define __NR_HPUX_timer_getoverrun 352 316 - #define __NR_HPUX_nanosleep 353 317 - #define __NR_HPUX_toolbox 354 318 - /* 355 missing */ 319 - #define __NR_HPUX_getdents 356 320 - #define __NR_HPUX_getcontext 357 321 - #define __NR_HPUX_sysinfo 358 322 - #define __NR_HPUX_fcntl64 359 323 - #define __NR_HPUX_ftruncate64 360 324 - #define __NR_HPUX_fstat64 361 325 - #define __NR_HPUX_getdirentries64 362 326 - #define __NR_HPUX_getrlimit64 363 327 - #define __NR_HPUX_lockf64 364 328 - #define __NR_HPUX_lseek64 365 329 - #define __NR_HPUX_lstat64 366 330 - #define __NR_HPUX_mmap64 367 331 - #define __NR_HPUX_setrlimit64 368 332 - #define __NR_HPUX_stat64 369 333 - #define __NR_HPUX_truncate64 370 334 - #define __NR_HPUX_ulimit64 371 335 - #define __NR_HPUX_pread 372 336 - #define __NR_HPUX_preadv 373 337 - #define __NR_HPUX_pwrite 374 338 - #define __NR_HPUX_pwritev 375 339 - #define __NR_HPUX_pread64 376 340 - #define __NR_HPUX_preadv64 377 341 - #define __NR_HPUX_pwrite64 378 342 - #define __NR_HPUX_pwritev64 379 343 - #define __NR_HPUX_setcontext 380 344 - #define __NR_HPUX_sigaltstack 381 345 - #define __NR_HPUX_waitid 382 346 - #define __NR_HPUX_setpgrp 383 347 - #define __NR_HPUX_recvmsg2 384 348 - #define __NR_HPUX_sendmsg2 385 349 - #define __NR_HPUX_socket2 386 350 - #define __NR_HPUX_socketpair2 387 351 - #define __NR_HPUX_setregid 388 352 - #define __NR_HPUX_lwp_create 389 353 - #define __NR_HPUX_lwp_terminate 390 354 - #define __NR_HPUX_lwp_wait 391 355 - #define __NR_HPUX_lwp_suspend 392 356 - #define __NR_HPUX_lwp_resume 393 357 - /* 394 missing */ 358 - #define __NR_HPUX_lwp_abort_syscall 395 359 - #define __NR_HPUX_lwp_info 396 360 - #define __NR_HPUX_lwp_kill 397 361 - #define __NR_HPUX_ksleep 398 362 - #define __NR_HPUX_kwakeup 399 363 - /* 400 missing */ 364 - #define __NR_HPUX_pstat_getlwp 401 365 - #define __NR_HPUX_lwp_exit 402 366 - #define __NR_HPUX_lwp_continue 403 367 - #define __NR_HPUX_getacl 404 368 - #define __NR_HPUX_fgetacl 405 369 - #define __NR_HPUX_setacl 406 370 - #define __NR_HPUX_fsetacl 407 371 - #define __NR_HPUX_getaccess 408 372 - #define __NR_HPUX_lwp_mutex_init 409 373 - #define __NR_HPUX_lwp_mutex_lock_sys 410 374 - #define __NR_HPUX_lwp_mutex_unlock 411 375 - #define __NR_HPUX_lwp_cond_init 412 376 - #define __NR_HPUX_lwp_cond_signal 413 377 - #define __NR_HPUX_lwp_cond_broadcast 414 378 - #define __NR_HPUX_lwp_cond_wait_sys 415 379 - #define __NR_HPUX_lwp_getscheduler 416 380 - #define __NR_HPUX_lwp_setscheduler 417 381 - #define __NR_HPUX_lwp_getstate 418 382 - #define __NR_HPUX_lwp_setstate 419 383 - #define __NR_HPUX_lwp_detach 420 384 - #define __NR_HPUX_mlock 421 385 - #define __NR_HPUX_munlock 422 386 - #define __NR_HPUX_mlockall 423 387 - #define __NR_HPUX_munlockall 424 388 - #define __NR_HPUX_shm_open 425 389 - #define __NR_HPUX_shm_unlink 426 390 - #define __NR_HPUX_sigqueue 427 391 - #define __NR_HPUX_sigwaitinfo 428 392 - #define __NR_HPUX_sigtimedwait 429 393 - #define __NR_HPUX_sigwait 430 394 - #define __NR_HPUX_aio_read 431 395 - #define __NR_HPUX_aio_write 432 396 - #define __NR_HPUX_lio_listio 433 397 - #define __NR_HPUX_aio_error 434 398 - #define __NR_HPUX_aio_return 435 399 - #define __NR_HPUX_aio_cancel 436 400 - #define __NR_HPUX_aio_suspend 437 401 - #define __NR_HPUX_aio_fsync 438 402 - #define __NR_HPUX_mq_open 439 403 - #define __NR_HPUX_mq_close 440 404 - #define __NR_HPUX_mq_unlink 441 405 - #define __NR_HPUX_mq_send 442 406 - #define __NR_HPUX_mq_receive 443 407 - #define __NR_HPUX_mq_notify 444 408 - #define __NR_HPUX_mq_setattr 445 409 - #define __NR_HPUX_mq_getattr 446 410 - #define __NR_HPUX_ksem_open 447 411 - #define __NR_HPUX_ksem_unlink 448 412 - #define __NR_HPUX_ksem_close 449 413 - #define __NR_HPUX_ksem_post 450 414 - #define __NR_HPUX_ksem_wait 451 415 - #define __NR_HPUX_ksem_read 452 416 - #define __NR_HPUX_ksem_trywait 453 417 - #define __NR_HPUX_lwp_rwlock_init 454 418 - #define __NR_HPUX_lwp_rwlock_destroy 455 419 - #define __NR_HPUX_lwp_rwlock_rdlock_sys 456 420 - #define __NR_HPUX_lwp_rwlock_wrlock_sys 457 421 - #define __NR_HPUX_lwp_rwlock_tryrdlock 458 422 - #define __NR_HPUX_lwp_rwlock_trywrlock 459 423 - #define __NR_HPUX_lwp_rwlock_unlock 460 424 - #define __NR_HPUX_ttrace 461 425 - #define __NR_HPUX_ttrace_wait 462 426 - #define __NR_HPUX_lf_wire_mem 463 427 - #define __NR_HPUX_lf_unwire_mem 464 428 - #define __NR_HPUX_lf_send_pin_map 465 429 - #define __NR_HPUX_lf_free_buf 466 430 - #define __NR_HPUX_lf_wait_nq 467 431 - #define __NR_HPUX_lf_wakeup_conn_q 468 432 - #define __NR_HPUX_lf_unused 469 433 - #define __NR_HPUX_lwp_sema_init 470 434 - #define __NR_HPUX_lwp_sema_post 471 435 - #define __NR_HPUX_lwp_sema_wait 472 436 - #define __NR_HPUX_lwp_sema_trywait 473 437 - #define __NR_HPUX_lwp_sema_destroy 474 438 - #define __NR_HPUX_statvfs64 475 439 - #define __NR_HPUX_fstatvfs64 476 440 - #define __NR_HPUX_msh_register 477 441 - #define __NR_HPUX_ptrace64 478 442 - #define __NR_HPUX_sendfile 479 443 - #define __NR_HPUX_sendpath 480 444 - #define __NR_HPUX_sendfile64 481 445 - #define __NR_HPUX_sendpath64 482 446 - #define __NR_HPUX_modload 483 447 - #define __NR_HPUX_moduload 484 448 - #define __NR_HPUX_modpath 485 449 - #define __NR_HPUX_getksym 486 450 - #define __NR_HPUX_modadm 487 451 - #define __NR_HPUX_modstat 488 452 - #define __NR_HPUX_lwp_detached_exit 489 453 - #define __NR_HPUX_crashconf 490 454 - #define __NR_HPUX_siginhibit 491 455 - #define __NR_HPUX_sigenable 492 456 - #define __NR_HPUX_spuctl 493 457 - #define __NR_HPUX_zerokernelsum 494 458 - #define __NR_HPUX_nfs_kstat 495 459 - #define __NR_HPUX_aio_read64 496 460 - #define __NR_HPUX_aio_write64 497 461 - #define __NR_HPUX_aio_error64 498 462 - #define __NR_HPUX_aio_return64 499 463 - #define __NR_HPUX_aio_cancel64 500 464 - #define __NR_HPUX_aio_suspend64 501 465 - #define __NR_HPUX_aio_fsync64 502 466 - #define __NR_HPUX_lio_listio64 503 467 - #define __NR_HPUX_recv2 504 468 - #define __NR_HPUX_recvfrom2 505 469 - #define __NR_HPUX_send2 506 470 - #define __NR_HPUX_sendto2 507 471 - #define __NR_HPUX_acl 508 472 - #define __NR_HPUX___cnx_p2p_ctl 509 473 - #define __NR_HPUX___cnx_gsched_ctl 510 474 - #define __NR_HPUX___cnx_pmon_ctl 511 475 - 476 - #define __NR_HPUX_syscalls 512 477 - 478 - /* 479 - * Linux system call numbers. 480 - * 481 - * Cary Coutant says that we should just use another syscall gateway 482 - * page to avoid clashing with the HPUX space, and I think he's right: 483 - * it will would keep a branch out of our syscall entry path, at the 484 - * very least. If we decide to change it later, we can ``just'' tweak 485 - * the LINUX_GATEWAY_ADDR define at the bottom and make __NR_Linux be 486 - * 1024 or something. Oh, and recompile libc. =) 487 - * 488 - * 64-bit HPUX binaries get the syscall gateway address passed in a register 489 - * from the kernel at startup, which seems a sane strategy. 490 - */ 491 - 492 - #define __NR_Linux 0 493 - #define __NR_restart_syscall (__NR_Linux + 0) 494 - #define __NR_exit (__NR_Linux + 1) 495 - #define __NR_fork (__NR_Linux + 2) 496 - #define __NR_read (__NR_Linux + 3) 497 - #define __NR_write (__NR_Linux + 4) 498 - #define __NR_open (__NR_Linux + 5) 499 - #define __NR_close (__NR_Linux + 6) 500 - #define __NR_waitpid (__NR_Linux + 7) 501 - #define __NR_creat (__NR_Linux + 8) 502 - #define __NR_link (__NR_Linux + 9) 503 - #define __NR_unlink (__NR_Linux + 10) 504 - #define __NR_execve (__NR_Linux + 11) 505 - #define __NR_chdir (__NR_Linux + 12) 506 - #define __NR_time (__NR_Linux + 13) 507 - #define __NR_mknod (__NR_Linux + 14) 508 - #define __NR_chmod (__NR_Linux + 15) 509 - #define __NR_lchown (__NR_Linux + 16) 510 - #define __NR_socket (__NR_Linux + 17) 511 - #define __NR_stat (__NR_Linux + 18) 512 - #define __NR_lseek (__NR_Linux + 19) 513 - #define __NR_getpid (__NR_Linux + 20) 514 - #define __NR_mount (__NR_Linux + 21) 515 - #define __NR_bind (__NR_Linux + 22) 516 - #define __NR_setuid (__NR_Linux + 23) 517 - #define __NR_getuid (__NR_Linux + 24) 518 - #define __NR_stime (__NR_Linux + 25) 519 - #define __NR_ptrace (__NR_Linux + 26) 520 - #define __NR_alarm (__NR_Linux + 27) 521 - #define __NR_fstat (__NR_Linux + 28) 522 - #define __NR_pause (__NR_Linux + 29) 523 - #define __NR_utime (__NR_Linux + 30) 524 - #define __NR_connect (__NR_Linux + 31) 525 - #define __NR_listen (__NR_Linux + 32) 526 - #define __NR_access (__NR_Linux + 33) 527 - #define __NR_nice (__NR_Linux + 34) 528 - #define __NR_accept (__NR_Linux + 35) 529 - #define __NR_sync (__NR_Linux + 36) 530 - #define __NR_kill (__NR_Linux + 37) 531 - #define __NR_rename (__NR_Linux + 38) 532 - #define __NR_mkdir (__NR_Linux + 39) 533 - #define __NR_rmdir (__NR_Linux + 40) 534 - #define __NR_dup (__NR_Linux + 41) 535 - #define __NR_pipe (__NR_Linux + 42) 536 - #define __NR_times (__NR_Linux + 43) 537 - #define __NR_getsockname (__NR_Linux + 44) 538 - #define __NR_brk (__NR_Linux + 45) 539 - #define __NR_setgid (__NR_Linux + 46) 540 - #define __NR_getgid (__NR_Linux + 47) 541 - #define __NR_signal (__NR_Linux + 48) 542 - #define __NR_geteuid (__NR_Linux + 49) 543 - #define __NR_getegid (__NR_Linux + 50) 544 - #define __NR_acct (__NR_Linux + 51) 545 - #define __NR_umount2 (__NR_Linux + 52) 546 - #define __NR_getpeername (__NR_Linux + 53) 547 - #define __NR_ioctl (__NR_Linux + 54) 548 - #define __NR_fcntl (__NR_Linux + 55) 549 - #define __NR_socketpair (__NR_Linux + 56) 550 - #define __NR_setpgid (__NR_Linux + 57) 551 - #define __NR_send (__NR_Linux + 58) 552 - #define __NR_uname (__NR_Linux + 59) 553 - #define __NR_umask (__NR_Linux + 60) 554 - #define __NR_chroot (__NR_Linux + 61) 555 - #define __NR_ustat (__NR_Linux + 62) 556 - #define __NR_dup2 (__NR_Linux + 63) 557 - #define __NR_getppid (__NR_Linux + 64) 558 - #define __NR_getpgrp (__NR_Linux + 65) 559 - #define __NR_setsid (__NR_Linux + 66) 560 - #define __NR_pivot_root (__NR_Linux + 67) 561 - #define __NR_sgetmask (__NR_Linux + 68) 562 - #define __NR_ssetmask (__NR_Linux + 69) 563 - #define __NR_setreuid (__NR_Linux + 70) 564 - #define __NR_setregid (__NR_Linux + 71) 565 - #define __NR_mincore (__NR_Linux + 72) 566 - #define __NR_sigpending (__NR_Linux + 73) 567 - #define __NR_sethostname (__NR_Linux + 74) 568 - #define __NR_setrlimit (__NR_Linux + 75) 569 - #define __NR_getrlimit (__NR_Linux + 76) 570 - #define __NR_getrusage (__NR_Linux + 77) 571 - #define __NR_gettimeofday (__NR_Linux + 78) 572 - #define __NR_settimeofday (__NR_Linux + 79) 573 - #define __NR_getgroups (__NR_Linux + 80) 574 - #define __NR_setgroups (__NR_Linux + 81) 575 - #define __NR_sendto (__NR_Linux + 82) 576 - #define __NR_symlink (__NR_Linux + 83) 577 - #define __NR_lstat (__NR_Linux + 84) 578 - #define __NR_readlink (__NR_Linux + 85) 579 - #define __NR_uselib (__NR_Linux + 86) 580 - #define __NR_swapon (__NR_Linux + 87) 581 - #define __NR_reboot (__NR_Linux + 88) 582 - #define __NR_mmap2 (__NR_Linux + 89) 583 - #define __NR_mmap (__NR_Linux + 90) 584 - #define __NR_munmap (__NR_Linux + 91) 585 - #define __NR_truncate (__NR_Linux + 92) 586 - #define __NR_ftruncate (__NR_Linux + 93) 587 - #define __NR_fchmod (__NR_Linux + 94) 588 - #define __NR_fchown (__NR_Linux + 95) 589 - #define __NR_getpriority (__NR_Linux + 96) 590 - #define __NR_setpriority (__NR_Linux + 97) 591 - #define __NR_recv (__NR_Linux + 98) 592 - #define __NR_statfs (__NR_Linux + 99) 593 - #define __NR_fstatfs (__NR_Linux + 100) 594 - #define __NR_stat64 (__NR_Linux + 101) 595 - /* #define __NR_socketcall (__NR_Linux + 102) */ 596 - #define __NR_syslog (__NR_Linux + 103) 597 - #define __NR_setitimer (__NR_Linux + 104) 598 - #define __NR_getitimer (__NR_Linux + 105) 599 - #define __NR_capget (__NR_Linux + 106) 600 - #define __NR_capset (__NR_Linux + 107) 601 - #define __NR_pread64 (__NR_Linux + 108) 602 - #define __NR_pwrite64 (__NR_Linux + 109) 603 - #define __NR_getcwd (__NR_Linux + 110) 604 - #define __NR_vhangup (__NR_Linux + 111) 605 - #define __NR_fstat64 (__NR_Linux + 112) 606 - #define __NR_vfork (__NR_Linux + 113) 607 - #define __NR_wait4 (__NR_Linux + 114) 608 - #define __NR_swapoff (__NR_Linux + 115) 609 - #define __NR_sysinfo (__NR_Linux + 116) 610 - #define __NR_shutdown (__NR_Linux + 117) 611 - #define __NR_fsync (__NR_Linux + 118) 612 - #define __NR_madvise (__NR_Linux + 119) 613 - #define __NR_clone (__NR_Linux + 120) 614 - #define __NR_setdomainname (__NR_Linux + 121) 615 - #define __NR_sendfile (__NR_Linux + 122) 616 - #define __NR_recvfrom (__NR_Linux + 123) 617 - #define __NR_adjtimex (__NR_Linux + 124) 618 - #define __NR_mprotect (__NR_Linux + 125) 619 - #define __NR_sigprocmask (__NR_Linux + 126) 620 - #define __NR_create_module (__NR_Linux + 127) 621 - #define __NR_init_module (__NR_Linux + 128) 622 - #define __NR_delete_module (__NR_Linux + 129) 623 - #define __NR_get_kernel_syms (__NR_Linux + 130) 624 - #define __NR_quotactl (__NR_Linux + 131) 625 - #define __NR_getpgid (__NR_Linux + 132) 626 - #define __NR_fchdir (__NR_Linux + 133) 627 - #define __NR_bdflush (__NR_Linux + 134) 628 - #define __NR_sysfs (__NR_Linux + 135) 629 - #define __NR_personality (__NR_Linux + 136) 630 - #define __NR_afs_syscall (__NR_Linux + 137) /* Syscall for Andrew File System */ 631 - #define __NR_setfsuid (__NR_Linux + 138) 632 - #define __NR_setfsgid (__NR_Linux + 139) 633 - #define __NR__llseek (__NR_Linux + 140) 634 - #define __NR_getdents (__NR_Linux + 141) 635 - #define __NR__newselect (__NR_Linux + 142) 636 - #define __NR_flock (__NR_Linux + 143) 637 - #define __NR_msync (__NR_Linux + 144) 638 - #define __NR_readv (__NR_Linux + 145) 639 - #define __NR_writev (__NR_Linux + 146) 640 - #define __NR_getsid (__NR_Linux + 147) 641 - #define __NR_fdatasync (__NR_Linux + 148) 642 - #define __NR__sysctl (__NR_Linux + 149) 643 - #define __NR_mlock (__NR_Linux + 150) 644 - #define __NR_munlock (__NR_Linux + 151) 645 - #define __NR_mlockall (__NR_Linux + 152) 646 - #define __NR_munlockall (__NR_Linux + 153) 647 - #define __NR_sched_setparam (__NR_Linux + 154) 648 - #define __NR_sched_getparam (__NR_Linux + 155) 649 - #define __NR_sched_setscheduler (__NR_Linux + 156) 650 - #define __NR_sched_getscheduler (__NR_Linux + 157) 651 - #define __NR_sched_yield (__NR_Linux + 158) 652 - #define __NR_sched_get_priority_max (__NR_Linux + 159) 653 - #define __NR_sched_get_priority_min (__NR_Linux + 160) 654 - #define __NR_sched_rr_get_interval (__NR_Linux + 161) 655 - #define __NR_nanosleep (__NR_Linux + 162) 656 - #define __NR_mremap (__NR_Linux + 163) 657 - #define __NR_setresuid (__NR_Linux + 164) 658 - #define __NR_getresuid (__NR_Linux + 165) 659 - #define __NR_sigaltstack (__NR_Linux + 166) 660 - #define __NR_query_module (__NR_Linux + 167) 661 - #define __NR_poll (__NR_Linux + 168) 662 - #define __NR_nfsservctl (__NR_Linux + 169) 663 - #define __NR_setresgid (__NR_Linux + 170) 664 - #define __NR_getresgid (__NR_Linux + 171) 665 - #define __NR_prctl (__NR_Linux + 172) 666 - #define __NR_rt_sigreturn (__NR_Linux + 173) 667 - #define __NR_rt_sigaction (__NR_Linux + 174) 668 - #define __NR_rt_sigprocmask (__NR_Linux + 175) 669 - #define __NR_rt_sigpending (__NR_Linux + 176) 670 - #define __NR_rt_sigtimedwait (__NR_Linux + 177) 671 - #define __NR_rt_sigqueueinfo (__NR_Linux + 178) 672 - #define __NR_rt_sigsuspend (__NR_Linux + 179) 673 - #define __NR_chown (__NR_Linux + 180) 674 - #define __NR_setsockopt (__NR_Linux + 181) 675 - #define __NR_getsockopt (__NR_Linux + 182) 676 - #define __NR_sendmsg (__NR_Linux + 183) 677 - #define __NR_recvmsg (__NR_Linux + 184) 678 - #define __NR_semop (__NR_Linux + 185) 679 - #define __NR_semget (__NR_Linux + 186) 680 - #define __NR_semctl (__NR_Linux + 187) 681 - #define __NR_msgsnd (__NR_Linux + 188) 682 - #define __NR_msgrcv (__NR_Linux + 189) 683 - #define __NR_msgget (__NR_Linux + 190) 684 - #define __NR_msgctl (__NR_Linux + 191) 685 - #define __NR_shmat (__NR_Linux + 192) 686 - #define __NR_shmdt (__NR_Linux + 193) 687 - #define __NR_shmget (__NR_Linux + 194) 688 - #define __NR_shmctl (__NR_Linux + 195) 689 - 690 - #define __NR_getpmsg (__NR_Linux + 196) /* Somebody *wants* streams? */ 691 - #define __NR_putpmsg (__NR_Linux + 197) 692 - 693 - #define __NR_lstat64 (__NR_Linux + 198) 694 - #define __NR_truncate64 (__NR_Linux + 199) 695 - #define __NR_ftruncate64 (__NR_Linux + 200) 696 - #define __NR_getdents64 (__NR_Linux + 201) 697 - #define __NR_fcntl64 (__NR_Linux + 202) 698 - #define __NR_attrctl (__NR_Linux + 203) 699 - #define __NR_acl_get (__NR_Linux + 204) 700 - #define __NR_acl_set (__NR_Linux + 205) 701 - #define __NR_gettid (__NR_Linux + 206) 702 - #define __NR_readahead (__NR_Linux + 207) 703 - #define __NR_tkill (__NR_Linux + 208) 704 - #define __NR_sendfile64 (__NR_Linux + 209) 705 - #define __NR_futex (__NR_Linux + 210) 706 - #define __NR_sched_setaffinity (__NR_Linux + 211) 707 - #define __NR_sched_getaffinity (__NR_Linux + 212) 708 - #define __NR_set_thread_area (__NR_Linux + 213) 709 - #define __NR_get_thread_area (__NR_Linux + 214) 710 - #define __NR_io_setup (__NR_Linux + 215) 711 - #define __NR_io_destroy (__NR_Linux + 216) 712 - #define __NR_io_getevents (__NR_Linux + 217) 713 - #define __NR_io_submit (__NR_Linux + 218) 714 - #define __NR_io_cancel (__NR_Linux + 219) 715 - #define __NR_alloc_hugepages (__NR_Linux + 220) 716 - #define __NR_free_hugepages (__NR_Linux + 221) 717 - #define __NR_exit_group (__NR_Linux + 222) 718 - #define __NR_lookup_dcookie (__NR_Linux + 223) 719 - #define __NR_epoll_create (__NR_Linux + 224) 720 - #define __NR_epoll_ctl (__NR_Linux + 225) 721 - #define __NR_epoll_wait (__NR_Linux + 226) 722 - #define __NR_remap_file_pages (__NR_Linux + 227) 723 - #define __NR_semtimedop (__NR_Linux + 228) 724 - #define __NR_mq_open (__NR_Linux + 229) 725 - #define __NR_mq_unlink (__NR_Linux + 230) 726 - #define __NR_mq_timedsend (__NR_Linux + 231) 727 - #define __NR_mq_timedreceive (__NR_Linux + 232) 728 - #define __NR_mq_notify (__NR_Linux + 233) 729 - #define __NR_mq_getsetattr (__NR_Linux + 234) 730 - #define __NR_waitid (__NR_Linux + 235) 731 - #define __NR_fadvise64_64 (__NR_Linux + 236) 732 - #define __NR_set_tid_address (__NR_Linux + 237) 733 - #define __NR_setxattr (__NR_Linux + 238) 734 - #define __NR_lsetxattr (__NR_Linux + 239) 735 - #define __NR_fsetxattr (__NR_Linux + 240) 736 - #define __NR_getxattr (__NR_Linux + 241) 737 - #define __NR_lgetxattr (__NR_Linux + 242) 738 - #define __NR_fgetxattr (__NR_Linux + 243) 739 - #define __NR_listxattr (__NR_Linux + 244) 740 - #define __NR_llistxattr (__NR_Linux + 245) 741 - #define __NR_flistxattr (__NR_Linux + 246) 742 - #define __NR_removexattr (__NR_Linux + 247) 743 - #define __NR_lremovexattr (__NR_Linux + 248) 744 - #define __NR_fremovexattr (__NR_Linux + 249) 745 - #define __NR_timer_create (__NR_Linux + 250) 746 - #define __NR_timer_settime (__NR_Linux + 251) 747 - #define __NR_timer_gettime (__NR_Linux + 252) 748 - #define __NR_timer_getoverrun (__NR_Linux + 253) 749 - #define __NR_timer_delete (__NR_Linux + 254) 750 - #define __NR_clock_settime (__NR_Linux + 255) 751 - #define __NR_clock_gettime (__NR_Linux + 256) 752 - #define __NR_clock_getres (__NR_Linux + 257) 753 - #define __NR_clock_nanosleep (__NR_Linux + 258) 754 - #define __NR_tgkill (__NR_Linux + 259) 755 - #define __NR_mbind (__NR_Linux + 260) 756 - #define __NR_get_mempolicy (__NR_Linux + 261) 757 - #define __NR_set_mempolicy (__NR_Linux + 262) 758 - #define __NR_vserver (__NR_Linux + 263) 759 - #define __NR_add_key (__NR_Linux + 264) 760 - #define __NR_request_key (__NR_Linux + 265) 761 - #define __NR_keyctl (__NR_Linux + 266) 762 - #define __NR_ioprio_set (__NR_Linux + 267) 763 - #define __NR_ioprio_get (__NR_Linux + 268) 764 - #define __NR_inotify_init (__NR_Linux + 269) 765 - #define __NR_inotify_add_watch (__NR_Linux + 270) 766 - #define __NR_inotify_rm_watch (__NR_Linux + 271) 767 - #define __NR_migrate_pages (__NR_Linux + 272) 768 - #define __NR_pselect6 (__NR_Linux + 273) 769 - #define __NR_ppoll (__NR_Linux + 274) 770 - #define __NR_openat (__NR_Linux + 275) 771 - #define __NR_mkdirat (__NR_Linux + 276) 772 - #define __NR_mknodat (__NR_Linux + 277) 773 - #define __NR_fchownat (__NR_Linux + 278) 774 - #define __NR_futimesat (__NR_Linux + 279) 775 - #define __NR_fstatat64 (__NR_Linux + 280) 776 - #define __NR_unlinkat (__NR_Linux + 281) 777 - #define __NR_renameat (__NR_Linux + 282) 778 - #define __NR_linkat (__NR_Linux + 283) 779 - #define __NR_symlinkat (__NR_Linux + 284) 780 - #define __NR_readlinkat (__NR_Linux + 285) 781 - #define __NR_fchmodat (__NR_Linux + 286) 782 - #define __NR_faccessat (__NR_Linux + 287) 783 - #define __NR_unshare (__NR_Linux + 288) 784 - #define __NR_set_robust_list (__NR_Linux + 289) 785 - #define __NR_get_robust_list (__NR_Linux + 290) 786 - #define __NR_splice (__NR_Linux + 291) 787 - #define __NR_sync_file_range (__NR_Linux + 292) 788 - #define __NR_tee (__NR_Linux + 293) 789 - #define __NR_vmsplice (__NR_Linux + 294) 790 - #define __NR_move_pages (__NR_Linux + 295) 791 - #define __NR_getcpu (__NR_Linux + 296) 792 - #define __NR_epoll_pwait (__NR_Linux + 297) 793 - #define __NR_statfs64 (__NR_Linux + 298) 794 - #define __NR_fstatfs64 (__NR_Linux + 299) 795 - #define __NR_kexec_load (__NR_Linux + 300) 796 - #define __NR_utimensat (__NR_Linux + 301) 797 - #define __NR_signalfd (__NR_Linux + 302) 798 - #define __NR_timerfd (__NR_Linux + 303) 799 - #define __NR_eventfd (__NR_Linux + 304) 800 - #define __NR_fallocate (__NR_Linux + 305) 801 - #define __NR_timerfd_create (__NR_Linux + 306) 802 - #define __NR_timerfd_settime (__NR_Linux + 307) 803 - #define __NR_timerfd_gettime (__NR_Linux + 308) 804 - #define __NR_signalfd4 (__NR_Linux + 309) 805 - #define __NR_eventfd2 (__NR_Linux + 310) 806 - #define __NR_epoll_create1 (__NR_Linux + 311) 807 - #define __NR_dup3 (__NR_Linux + 312) 808 - #define __NR_pipe2 (__NR_Linux + 313) 809 - #define __NR_inotify_init1 (__NR_Linux + 314) 810 - #define __NR_preadv (__NR_Linux + 315) 811 - #define __NR_pwritev (__NR_Linux + 316) 812 - #define __NR_rt_tgsigqueueinfo (__NR_Linux + 317) 813 - #define __NR_perf_event_open (__NR_Linux + 318) 814 - #define __NR_recvmmsg (__NR_Linux + 319) 815 - #define __NR_accept4 (__NR_Linux + 320) 816 - #define __NR_prlimit64 (__NR_Linux + 321) 817 - #define __NR_fanotify_init (__NR_Linux + 322) 818 - #define __NR_fanotify_mark (__NR_Linux + 323) 819 - #define __NR_clock_adjtime (__NR_Linux + 324) 820 - #define __NR_name_to_handle_at (__NR_Linux + 325) 821 - #define __NR_open_by_handle_at (__NR_Linux + 326) 822 - #define __NR_syncfs (__NR_Linux + 327) 823 - #define __NR_setns (__NR_Linux + 328) 824 - #define __NR_sendmmsg (__NR_Linux + 329) 825 - 826 - #define __NR_Linux_syscalls (__NR_sendmmsg + 1) 827 - 828 - 829 - #define __IGNORE_select /* newselect */ 830 - #define __IGNORE_fadvise64 /* fadvise64_64 */ 831 - #define __IGNORE_utimes /* utime */ 832 - 833 - 834 - #define HPUX_GATEWAY_ADDR 0xC0000004 835 - #define LINUX_GATEWAY_ADDR 0x100 836 - 837 - #ifdef __KERNEL__ 838 6 #ifndef __ASSEMBLY__ 839 7 840 8 #define SYS_ify(syscall_name) __NR_##syscall_name ··· 176 1008 */ 177 1009 #define cond_syscall(x) asm(".weak\t" #x "\n\t.set\t" #x ",sys_ni_syscall") 178 1010 179 - #endif /* __KERNEL__ */ 180 1011 #endif /* _ASM_PARISC_UNISTD_H_ */
-5
arch/parisc/include/asm/user.h
··· 1 - /* This file should not exist, but lots of generic code still includes 2 - it. It's a hangover from old a.out days and the traditional core 3 - dump format. We are ELF-only, and so are our core dumps. If we 4 - need to support HP/UX core format then we'll do it here 5 - eventually. */
-6
arch/parisc/include/asm/vga.h
··· 1 - #ifndef __ASM_PARISC_VGA_H__ 2 - #define __ASM_PARISC_VGA_H__ 3 - 4 - /* nothing */ 5 - 6 - #endif /* __ASM_PARISC_VGA_H__ */
-1
arch/parisc/include/asm/xor.h
··· 1 - #include <asm-generic/xor.h>
+28
arch/parisc/include/uapi/asm/Kbuild
··· 1 1 # UAPI Header export list 2 2 include include/uapi/asm-generic/Kbuild.asm 3 3 4 + header-y += bitsperlong.h 5 + header-y += byteorder.h 6 + header-y += errno.h 7 + header-y += fcntl.h 8 + header-y += ioctl.h 9 + header-y += ioctls.h 10 + header-y += ipcbuf.h 11 + header-y += mman.h 12 + header-y += msgbuf.h 13 + header-y += pdc.h 14 + header-y += posix_types.h 15 + header-y += ptrace.h 16 + header-y += resource.h 17 + header-y += sembuf.h 18 + header-y += setup.h 19 + header-y += shmbuf.h 20 + header-y += sigcontext.h 21 + header-y += siginfo.h 22 + header-y += signal.h 23 + header-y += socket.h 24 + header-y += sockios.h 25 + header-y += stat.h 26 + header-y += statfs.h 27 + header-y += swab.h 28 + header-y += termbits.h 29 + header-y += termios.h 30 + header-y += types.h 31 + header-y += unistd.h
+427
arch/parisc/include/uapi/asm/pdc.h
··· 1 + #ifndef _UAPI_PARISC_PDC_H 2 + #define _UAPI_PARISC_PDC_H 3 + 4 + /* 5 + * PDC return values ... 6 + * All PDC calls return a subset of these errors. 7 + */ 8 + 9 + #define PDC_WARN 3 /* Call completed with a warning */ 10 + #define PDC_REQ_ERR_1 2 /* See above */ 11 + #define PDC_REQ_ERR_0 1 /* Call would generate a requestor error */ 12 + #define PDC_OK 0 /* Call completed successfully */ 13 + #define PDC_BAD_PROC -1 /* Called non-existent procedure*/ 14 + #define PDC_BAD_OPTION -2 /* Called with non-existent option */ 15 + #define PDC_ERROR -3 /* Call could not complete without an error */ 16 + #define PDC_NE_MOD -5 /* Module not found */ 17 + #define PDC_NE_CELL_MOD -7 /* Cell module not found */ 18 + #define PDC_INVALID_ARG -10 /* Called with an invalid argument */ 19 + #define PDC_BUS_POW_WARN -12 /* Call could not complete in allowed power budget */ 20 + #define PDC_NOT_NARROW -17 /* Narrow mode not supported */ 21 + 22 + /* 23 + * PDC entry points... 24 + */ 25 + 26 + #define PDC_POW_FAIL 1 /* perform a power-fail */ 27 + #define PDC_POW_FAIL_PREPARE 0 /* prepare for powerfail */ 28 + 29 + #define PDC_CHASSIS 2 /* PDC-chassis functions */ 30 + #define PDC_CHASSIS_DISP 0 /* update chassis display */ 31 + #define PDC_CHASSIS_WARN 1 /* return chassis warnings */ 32 + #define PDC_CHASSIS_DISPWARN 2 /* update&return chassis status */ 33 + #define PDC_RETURN_CHASSIS_INFO 128 /* HVERSION dependent: return chassis LED/LCD info */ 34 + 35 + #define PDC_PIM 3 /* Get PIM data */ 36 + #define PDC_PIM_HPMC 0 /* Transfer HPMC data */ 37 + #define PDC_PIM_RETURN_SIZE 1 /* Get Max buffer needed for PIM*/ 38 + #define PDC_PIM_LPMC 2 /* Transfer HPMC data */ 39 + #define PDC_PIM_SOFT_BOOT 3 /* Transfer Soft Boot data */ 40 + #define PDC_PIM_TOC 4 /* Transfer TOC data */ 41 + 42 + #define PDC_MODEL 4 /* PDC model information call */ 43 + #define PDC_MODEL_INFO 0 /* returns information */ 44 + #define PDC_MODEL_BOOTID 1 /* set the BOOT_ID */ 45 + #define PDC_MODEL_VERSIONS 2 /* returns cpu-internal versions*/ 46 + #define PDC_MODEL_SYSMODEL 3 /* return system model info */ 47 + #define PDC_MODEL_ENSPEC 4 /* enable specific option */ 48 + #define PDC_MODEL_DISPEC 5 /* disable specific option */ 49 + #define PDC_MODEL_CPU_ID 6 /* returns cpu-id (only newer machines!) */ 50 + #define PDC_MODEL_CAPABILITIES 7 /* returns OS32/OS64-flags */ 51 + /* Values for PDC_MODEL_CAPABILITIES non-equivalent virtual aliasing support */ 52 + #define PDC_MODEL_OS64 (1 << 0) 53 + #define PDC_MODEL_OS32 (1 << 1) 54 + #define PDC_MODEL_IOPDIR_FDC (1 << 2) 55 + #define PDC_MODEL_NVA_MASK (3 << 4) 56 + #define PDC_MODEL_NVA_SUPPORTED (0 << 4) 57 + #define PDC_MODEL_NVA_SLOW (1 << 4) 58 + #define PDC_MODEL_NVA_UNSUPPORTED (3 << 4) 59 + #define PDC_MODEL_GET_BOOT__OP 8 /* returns boot test options */ 60 + #define PDC_MODEL_SET_BOOT__OP 9 /* set boot test options */ 61 + 62 + #define PA89_INSTRUCTION_SET 0x4 /* capatibilies returned */ 63 + #define PA90_INSTRUCTION_SET 0x8 64 + 65 + #define PDC_CACHE 5 /* return/set cache (& TLB) info*/ 66 + #define PDC_CACHE_INFO 0 /* returns information */ 67 + #define PDC_CACHE_SET_COH 1 /* set coherence state */ 68 + #define PDC_CACHE_RET_SPID 2 /* returns space-ID bits */ 69 + 70 + #define PDC_HPA 6 /* return HPA of processor */ 71 + #define PDC_HPA_PROCESSOR 0 72 + #define PDC_HPA_MODULES 1 73 + 74 + #define PDC_COPROC 7 /* Co-Processor (usually FP unit(s)) */ 75 + #define PDC_COPROC_CFG 0 /* Co-Processor Cfg (FP unit(s) enabled?) */ 76 + 77 + #define PDC_IODC 8 /* talk to IODC */ 78 + #define PDC_IODC_READ 0 /* read IODC entry point */ 79 + /* PDC_IODC_RI_ * INDEX parameter of PDC_IODC_READ */ 80 + #define PDC_IODC_RI_DATA_BYTES 0 /* IODC Data Bytes */ 81 + /* 1, 2 obsolete - HVERSION dependent*/ 82 + #define PDC_IODC_RI_INIT 3 /* Initialize module */ 83 + #define PDC_IODC_RI_IO 4 /* Module input/output */ 84 + #define PDC_IODC_RI_SPA 5 /* Module input/output */ 85 + #define PDC_IODC_RI_CONFIG 6 /* Module input/output */ 86 + /* 7 obsolete - HVERSION dependent */ 87 + #define PDC_IODC_RI_TEST 8 /* Module input/output */ 88 + #define PDC_IODC_RI_TLB 9 /* Module input/output */ 89 + #define PDC_IODC_NINIT 2 /* non-destructive init */ 90 + #define PDC_IODC_DINIT 3 /* destructive init */ 91 + #define PDC_IODC_MEMERR 4 /* check for memory errors */ 92 + #define PDC_IODC_INDEX_DATA 0 /* get first 16 bytes from mod IODC */ 93 + #define PDC_IODC_BUS_ERROR -4 /* bus error return value */ 94 + #define PDC_IODC_INVALID_INDEX -5 /* invalid index return value */ 95 + #define PDC_IODC_COUNT -6 /* count is too small */ 96 + 97 + #define PDC_TOD 9 /* time-of-day clock (TOD) */ 98 + #define PDC_TOD_READ 0 /* read TOD */ 99 + #define PDC_TOD_WRITE 1 /* write TOD */ 100 + 101 + 102 + #define PDC_STABLE 10 /* stable storage (sprockets) */ 103 + #define PDC_STABLE_READ 0 104 + #define PDC_STABLE_WRITE 1 105 + #define PDC_STABLE_RETURN_SIZE 2 106 + #define PDC_STABLE_VERIFY_CONTENTS 3 107 + #define PDC_STABLE_INITIALIZE 4 108 + 109 + #define PDC_NVOLATILE 11 /* often not implemented */ 110 + 111 + #define PDC_ADD_VALID 12 /* Memory validation PDC call */ 112 + #define PDC_ADD_VALID_VERIFY 0 /* Make PDC_ADD_VALID verify region */ 113 + 114 + #define PDC_INSTR 15 /* get instr to invoke PDCE_CHECK() */ 115 + 116 + #define PDC_PROC 16 /* (sprockets) */ 117 + 118 + #define PDC_CONFIG 16 /* (sprockets) */ 119 + #define PDC_CONFIG_DECONFIG 0 120 + #define PDC_CONFIG_DRECONFIG 1 121 + #define PDC_CONFIG_DRETURN_CONFIG 2 122 + 123 + #define PDC_BLOCK_TLB 18 /* manage hardware block-TLB */ 124 + #define PDC_BTLB_INFO 0 /* returns parameter */ 125 + #define PDC_BTLB_INSERT 1 /* insert BTLB entry */ 126 + #define PDC_BTLB_PURGE 2 /* purge BTLB entries */ 127 + #define PDC_BTLB_PURGE_ALL 3 /* purge all BTLB entries */ 128 + 129 + #define PDC_TLB 19 /* manage hardware TLB miss handling */ 130 + #define PDC_TLB_INFO 0 /* returns parameter */ 131 + #define PDC_TLB_SETUP 1 /* set up miss handling */ 132 + 133 + #define PDC_MEM 20 /* Manage memory */ 134 + #define PDC_MEM_MEMINFO 0 135 + #define PDC_MEM_ADD_PAGE 1 136 + #define PDC_MEM_CLEAR_PDT 2 137 + #define PDC_MEM_READ_PDT 3 138 + #define PDC_MEM_RESET_CLEAR 4 139 + #define PDC_MEM_GOODMEM 5 140 + #define PDC_MEM_TABLE 128 /* Non contig mem map (sprockets) */ 141 + #define PDC_MEM_RETURN_ADDRESS_TABLE PDC_MEM_TABLE 142 + #define PDC_MEM_GET_MEMORY_SYSTEM_TABLES_SIZE 131 143 + #define PDC_MEM_GET_MEMORY_SYSTEM_TABLES 132 144 + #define PDC_MEM_GET_PHYSICAL_LOCATION_FROM_MEMORY_ADDRESS 133 145 + 146 + #define PDC_MEM_RET_SBE_REPLACED 5 /* PDC_MEM return values */ 147 + #define PDC_MEM_RET_DUPLICATE_ENTRY 4 148 + #define PDC_MEM_RET_BUF_SIZE_SMALL 1 149 + #define PDC_MEM_RET_PDT_FULL -11 150 + #define PDC_MEM_RET_INVALID_PHYSICAL_LOCATION ~0ULL 151 + 152 + #define PDC_PSW 21 /* Get/Set default System Mask */ 153 + #define PDC_PSW_MASK 0 /* Return mask */ 154 + #define PDC_PSW_GET_DEFAULTS 1 /* Return defaults */ 155 + #define PDC_PSW_SET_DEFAULTS 2 /* Set default */ 156 + #define PDC_PSW_ENDIAN_BIT 1 /* set for big endian */ 157 + #define PDC_PSW_WIDE_BIT 2 /* set for wide mode */ 158 + 159 + #define PDC_SYSTEM_MAP 22 /* find system modules */ 160 + #define PDC_FIND_MODULE 0 161 + #define PDC_FIND_ADDRESS 1 162 + #define PDC_TRANSLATE_PATH 2 163 + 164 + #define PDC_SOFT_POWER 23 /* soft power switch */ 165 + #define PDC_SOFT_POWER_INFO 0 /* return info about the soft power switch */ 166 + #define PDC_SOFT_POWER_ENABLE 1 /* enable/disable soft power switch */ 167 + 168 + 169 + /* HVERSION dependent */ 170 + 171 + /* The PDC_MEM_MAP calls */ 172 + #define PDC_MEM_MAP 128 /* on s700: return page info */ 173 + #define PDC_MEM_MAP_HPA 0 /* returns hpa of a module */ 174 + 175 + #define PDC_EEPROM 129 /* EEPROM access */ 176 + #define PDC_EEPROM_READ_WORD 0 177 + #define PDC_EEPROM_WRITE_WORD 1 178 + #define PDC_EEPROM_READ_BYTE 2 179 + #define PDC_EEPROM_WRITE_BYTE 3 180 + #define PDC_EEPROM_EEPROM_PASSWORD -1000 181 + 182 + #define PDC_NVM 130 /* NVM (non-volatile memory) access */ 183 + #define PDC_NVM_READ_WORD 0 184 + #define PDC_NVM_WRITE_WORD 1 185 + #define PDC_NVM_READ_BYTE 2 186 + #define PDC_NVM_WRITE_BYTE 3 187 + 188 + #define PDC_SEED_ERROR 132 /* (sprockets) */ 189 + 190 + #define PDC_IO 135 /* log error info, reset IO system */ 191 + #define PDC_IO_READ_AND_CLEAR_ERRORS 0 192 + #define PDC_IO_RESET 1 193 + #define PDC_IO_RESET_DEVICES 2 194 + /* sets bits 6&7 (little endian) of the HcControl Register */ 195 + #define PDC_IO_USB_SUSPEND 0xC000000000000000 196 + #define PDC_IO_EEPROM_IO_ERR_TABLE_FULL -5 /* return value */ 197 + #define PDC_IO_NO_SUSPEND -6 /* return value */ 198 + 199 + #define PDC_BROADCAST_RESET 136 /* reset all processors */ 200 + #define PDC_DO_RESET 0 /* option: perform a broadcast reset */ 201 + #define PDC_DO_FIRM_TEST_RESET 1 /* Do broadcast reset with bitmap */ 202 + #define PDC_BR_RECONFIGURATION 2 /* reset w/reconfiguration */ 203 + #define PDC_FIRM_TEST_MAGIC 0xab9ec36fUL /* for this reboot only */ 204 + 205 + #define PDC_LAN_STATION_ID 138 /* Hversion dependent mechanism for */ 206 + #define PDC_LAN_STATION_ID_READ 0 /* getting the lan station address */ 207 + 208 + #define PDC_LAN_STATION_ID_SIZE 6 209 + 210 + #define PDC_CHECK_RANGES 139 /* (sprockets) */ 211 + 212 + #define PDC_NV_SECTIONS 141 /* (sprockets) */ 213 + 214 + #define PDC_PERFORMANCE 142 /* performance monitoring */ 215 + 216 + #define PDC_SYSTEM_INFO 143 /* system information */ 217 + #define PDC_SYSINFO_RETURN_INFO_SIZE 0 218 + #define PDC_SYSINFO_RRETURN_SYS_INFO 1 219 + #define PDC_SYSINFO_RRETURN_ERRORS 2 220 + #define PDC_SYSINFO_RRETURN_WARNINGS 3 221 + #define PDC_SYSINFO_RETURN_REVISIONS 4 222 + #define PDC_SYSINFO_RRETURN_DIAGNOSE 5 223 + #define PDC_SYSINFO_RRETURN_HV_DIAGNOSE 1005 224 + 225 + #define PDC_RDR 144 /* (sprockets) */ 226 + #define PDC_RDR_READ_BUFFER 0 227 + #define PDC_RDR_READ_SINGLE 1 228 + #define PDC_RDR_WRITE_SINGLE 2 229 + 230 + #define PDC_INTRIGUE 145 /* (sprockets) */ 231 + #define PDC_INTRIGUE_WRITE_BUFFER 0 232 + #define PDC_INTRIGUE_GET_SCRATCH_BUFSIZE 1 233 + #define PDC_INTRIGUE_START_CPU_COUNTERS 2 234 + #define PDC_INTRIGUE_STOP_CPU_COUNTERS 3 235 + 236 + #define PDC_STI 146 /* STI access */ 237 + /* same as PDC_PCI_XXX values (see below) */ 238 + 239 + /* Legacy PDC definitions for same stuff */ 240 + #define PDC_PCI_INDEX 147 241 + #define PDC_PCI_INTERFACE_INFO 0 242 + #define PDC_PCI_SLOT_INFO 1 243 + #define PDC_PCI_INFLIGHT_BYTES 2 244 + #define PDC_PCI_READ_CONFIG 3 245 + #define PDC_PCI_WRITE_CONFIG 4 246 + #define PDC_PCI_READ_PCI_IO 5 247 + #define PDC_PCI_WRITE_PCI_IO 6 248 + #define PDC_PCI_READ_CONFIG_DELAY 7 249 + #define PDC_PCI_UPDATE_CONFIG_DELAY 8 250 + #define PDC_PCI_PCI_PATH_TO_PCI_HPA 9 251 + #define PDC_PCI_PCI_HPA_TO_PCI_PATH 10 252 + #define PDC_PCI_PCI_PATH_TO_PCI_BUS 11 253 + #define PDC_PCI_PCI_RESERVED 12 254 + #define PDC_PCI_PCI_INT_ROUTE_SIZE 13 255 + #define PDC_PCI_GET_INT_TBL_SIZE PDC_PCI_PCI_INT_ROUTE_SIZE 256 + #define PDC_PCI_PCI_INT_ROUTE 14 257 + #define PDC_PCI_GET_INT_TBL PDC_PCI_PCI_INT_ROUTE 258 + #define PDC_PCI_READ_MON_TYPE 15 259 + #define PDC_PCI_WRITE_MON_TYPE 16 260 + 261 + 262 + /* Get SCSI Interface Card info: SDTR, SCSI ID, mode (SE vs LVD) */ 263 + #define PDC_INITIATOR 163 264 + #define PDC_GET_INITIATOR 0 265 + #define PDC_SET_INITIATOR 1 266 + #define PDC_DELETE_INITIATOR 2 267 + #define PDC_RETURN_TABLE_SIZE 3 268 + #define PDC_RETURN_TABLE 4 269 + 270 + #define PDC_LINK 165 /* (sprockets) */ 271 + #define PDC_LINK_PCI_ENTRY_POINTS 0 /* list (Arg1) = 0 */ 272 + #define PDC_LINK_USB_ENTRY_POINTS 1 /* list (Arg1) = 1 */ 273 + 274 + /* cl_class 275 + * page 3-33 of IO-Firmware ARS 276 + * IODC ENTRY_INIT(Search first) RET[1] 277 + */ 278 + #define CL_NULL 0 /* invalid */ 279 + #define CL_RANDOM 1 /* random access (as disk) */ 280 + #define CL_SEQU 2 /* sequential access (as tape) */ 281 + #define CL_DUPLEX 7 /* full-duplex point-to-point (RS-232, Net) */ 282 + #define CL_KEYBD 8 /* half-duplex console (HIL Keyboard) */ 283 + #define CL_DISPL 9 /* half-duplex console (display) */ 284 + #define CL_FC 10 /* FiberChannel access media */ 285 + 286 + /* IODC ENTRY_INIT() */ 287 + #define ENTRY_INIT_SRCH_FRST 2 288 + #define ENTRY_INIT_SRCH_NEXT 3 289 + #define ENTRY_INIT_MOD_DEV 4 290 + #define ENTRY_INIT_DEV 5 291 + #define ENTRY_INIT_MOD 6 292 + #define ENTRY_INIT_MSG 9 293 + 294 + /* IODC ENTRY_IO() */ 295 + #define ENTRY_IO_BOOTIN 0 296 + #define ENTRY_IO_BOOTOUT 1 297 + #define ENTRY_IO_CIN 2 298 + #define ENTRY_IO_COUT 3 299 + #define ENTRY_IO_CLOSE 4 300 + #define ENTRY_IO_GETMSG 9 301 + #define ENTRY_IO_BBLOCK_IN 16 302 + #define ENTRY_IO_BBLOCK_OUT 17 303 + 304 + /* IODC ENTRY_SPA() */ 305 + 306 + /* IODC ENTRY_CONFIG() */ 307 + 308 + /* IODC ENTRY_TEST() */ 309 + 310 + /* IODC ENTRY_TLB() */ 311 + 312 + /* constants for OS (NVM...) */ 313 + #define OS_ID_NONE 0 /* Undefined OS ID */ 314 + #define OS_ID_HPUX 1 /* HP-UX OS */ 315 + #define OS_ID_MPEXL 2 /* MPE XL OS */ 316 + #define OS_ID_OSF 3 /* OSF OS */ 317 + #define OS_ID_HPRT 4 /* HP-RT OS */ 318 + #define OS_ID_NOVEL 5 /* NOVELL OS */ 319 + #define OS_ID_LINUX 6 /* Linux */ 320 + 321 + 322 + /* constants for PDC_CHASSIS */ 323 + #define OSTAT_OFF 0 324 + #define OSTAT_FLT 1 325 + #define OSTAT_TEST 2 326 + #define OSTAT_INIT 3 327 + #define OSTAT_SHUT 4 328 + #define OSTAT_WARN 5 329 + #define OSTAT_RUN 6 330 + #define OSTAT_ON 7 331 + 332 + /* Page Zero constant offsets used by the HPMC handler */ 333 + #define BOOT_CONSOLE_HPA_OFFSET 0x3c0 334 + #define BOOT_CONSOLE_SPA_OFFSET 0x3c4 335 + #define BOOT_CONSOLE_PATH_OFFSET 0x3a8 336 + 337 + /* size of the pdc_result buffer for firmware.c */ 338 + #define NUM_PDC_RESULT 32 339 + 340 + #if !defined(__ASSEMBLY__) 341 + 342 + #include <linux/types.h> 343 + 344 + 345 + /* flags of the device_path */ 346 + #define PF_AUTOBOOT 0x80 347 + #define PF_AUTOSEARCH 0x40 348 + #define PF_TIMER 0x0F 349 + 350 + struct device_path { /* page 1-69 */ 351 + unsigned char flags; /* flags see above! */ 352 + unsigned char bc[6]; /* bus converter routing info */ 353 + unsigned char mod; 354 + unsigned int layers[6];/* device-specific layer-info */ 355 + } __attribute__((aligned(8))) ; 356 + 357 + struct pz_device { 358 + struct device_path dp; /* see above */ 359 + /* struct iomod *hpa; */ 360 + unsigned int hpa; /* HPA base address */ 361 + /* char *spa; */ 362 + unsigned int spa; /* SPA base address */ 363 + /* int (*iodc_io)(struct iomod*, ...); */ 364 + unsigned int iodc_io; /* device entry point */ 365 + short pad; /* reserved */ 366 + unsigned short cl_class;/* see below */ 367 + } __attribute__((aligned(8))) ; 368 + 369 + struct zeropage { 370 + /* [0x000] initialize vectors (VEC) */ 371 + unsigned int vec_special; /* must be zero */ 372 + /* int (*vec_pow_fail)(void);*/ 373 + unsigned int vec_pow_fail; /* power failure handler */ 374 + /* int (*vec_toc)(void); */ 375 + unsigned int vec_toc; 376 + unsigned int vec_toclen; 377 + /* int (*vec_rendz)(void); */ 378 + unsigned int vec_rendz; 379 + int vec_pow_fail_flen; 380 + int vec_pad[10]; 381 + 382 + /* [0x040] reserved processor dependent */ 383 + int pad0[112]; 384 + 385 + /* [0x200] reserved */ 386 + int pad1[84]; 387 + 388 + /* [0x350] memory configuration (MC) */ 389 + int memc_cont; /* contiguous mem size (bytes) */ 390 + int memc_phsize; /* physical memory size */ 391 + int memc_adsize; /* additional mem size, bytes of SPA space used by PDC */ 392 + unsigned int mem_pdc_hi; /* used for 64-bit */ 393 + 394 + /* [0x360] various parameters for the boot-CPU */ 395 + /* unsigned int *mem_booterr[8]; */ 396 + unsigned int mem_booterr[8]; /* ptr to boot errors */ 397 + unsigned int mem_free; /* first location, where OS can be loaded */ 398 + /* struct iomod *mem_hpa; */ 399 + unsigned int mem_hpa; /* HPA of the boot-CPU */ 400 + /* int (*mem_pdc)(int, ...); */ 401 + unsigned int mem_pdc; /* PDC entry point */ 402 + unsigned int mem_10msec; /* number of clock ticks in 10msec */ 403 + 404 + /* [0x390] initial memory module (IMM) */ 405 + /* struct iomod *imm_hpa; */ 406 + unsigned int imm_hpa; /* HPA of the IMM */ 407 + int imm_soft_boot; /* 0 = was hard boot, 1 = was soft boot */ 408 + unsigned int imm_spa_size; /* SPA size of the IMM in bytes */ 409 + unsigned int imm_max_mem; /* bytes of mem in IMM */ 410 + 411 + /* [0x3A0] boot console, display device and keyboard */ 412 + struct pz_device mem_cons; /* description of console device */ 413 + struct pz_device mem_boot; /* description of boot device */ 414 + struct pz_device mem_kbd; /* description of keyboard device */ 415 + 416 + /* [0x430] reserved */ 417 + int pad430[116]; 418 + 419 + /* [0x600] processor dependent */ 420 + __u32 pad600[1]; 421 + __u32 proc_sti; /* pointer to STI ROM */ 422 + __u32 pad608[126]; 423 + }; 424 + 425 + #endif /* !defined(__ASSEMBLY__) */ 426 + 427 + #endif /* _UAPI_PARISC_PDC_H */
+47
arch/parisc/include/uapi/asm/ptrace.h
··· 1 + /* written by Philipp Rumpf, Copyright (C) 1999 SuSE GmbH Nuernberg 2 + ** Copyright (C) 2000 Grant Grundler, Hewlett-Packard 3 + */ 4 + #ifndef _UAPI_PARISC_PTRACE_H 5 + #define _UAPI_PARISC_PTRACE_H 6 + 7 + 8 + #include <linux/types.h> 9 + 10 + /* This struct defines the way the registers are stored on the 11 + * stack during a system call. 12 + * 13 + * N.B. gdb/strace care about the size and offsets within this 14 + * structure. If you change things, you may break object compatibility 15 + * for those applications. 16 + */ 17 + 18 + struct pt_regs { 19 + unsigned long gr[32]; /* PSW is in gr[0] */ 20 + __u64 fr[32]; 21 + unsigned long sr[ 8]; 22 + unsigned long iasq[2]; 23 + unsigned long iaoq[2]; 24 + unsigned long cr27; 25 + unsigned long pad0; /* available for other uses */ 26 + unsigned long orig_r28; 27 + unsigned long ksp; 28 + unsigned long kpc; 29 + unsigned long sar; /* CR11 */ 30 + unsigned long iir; /* CR19 */ 31 + unsigned long isr; /* CR20 */ 32 + unsigned long ior; /* CR21 */ 33 + unsigned long ipsw; /* CR22 */ 34 + }; 35 + 36 + /* 37 + * The numbers chosen here are somewhat arbitrary but absolutely MUST 38 + * not overlap with any of the number assigned in <linux/ptrace.h>. 39 + * 40 + * These ones are taken from IA-64 on the assumption that theirs are 41 + * the most correct (and we also want to support PTRACE_SINGLEBLOCK 42 + * since we have taken branch traps too) 43 + */ 44 + #define PTRACE_SINGLEBLOCK 12 /* resume execution until next branch */ 45 + 46 + 47 + #endif /* _UAPI_PARISC_PTRACE_H */
+118
arch/parisc/include/uapi/asm/signal.h
··· 1 + #ifndef _UAPI_ASM_PARISC_SIGNAL_H 2 + #define _UAPI_ASM_PARISC_SIGNAL_H 3 + 4 + #define SIGHUP 1 5 + #define SIGINT 2 6 + #define SIGQUIT 3 7 + #define SIGILL 4 8 + #define SIGTRAP 5 9 + #define SIGABRT 6 10 + #define SIGIOT 6 11 + #define SIGEMT 7 12 + #define SIGFPE 8 13 + #define SIGKILL 9 14 + #define SIGBUS 10 15 + #define SIGSEGV 11 16 + #define SIGSYS 12 /* Linux doesn't use this */ 17 + #define SIGPIPE 13 18 + #define SIGALRM 14 19 + #define SIGTERM 15 20 + #define SIGUSR1 16 21 + #define SIGUSR2 17 22 + #define SIGCHLD 18 23 + #define SIGPWR 19 24 + #define SIGVTALRM 20 25 + #define SIGPROF 21 26 + #define SIGIO 22 27 + #define SIGPOLL SIGIO 28 + #define SIGWINCH 23 29 + #define SIGSTOP 24 30 + #define SIGTSTP 25 31 + #define SIGCONT 26 32 + #define SIGTTIN 27 33 + #define SIGTTOU 28 34 + #define SIGURG 29 35 + #define SIGLOST 30 /* Linux doesn't use this either */ 36 + #define SIGUNUSED 31 37 + #define SIGRESERVE SIGUNUSED 38 + 39 + #define SIGXCPU 33 40 + #define SIGXFSZ 34 41 + #define SIGSTKFLT 36 42 + 43 + /* These should not be considered constants from userland. */ 44 + #define SIGRTMIN 37 45 + #define SIGRTMAX _NSIG /* it's 44 under HP/UX */ 46 + 47 + /* 48 + * SA_FLAGS values: 49 + * 50 + * SA_ONSTACK indicates that a registered stack_t will be used. 51 + * SA_RESTART flag to get restarting signals (which were the default long ago) 52 + * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. 53 + * SA_RESETHAND clears the handler when the signal is delivered. 54 + * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies. 55 + * SA_NODEFER prevents the current signal from being masked in the handler. 56 + * 57 + * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single 58 + * Unix names RESETHAND and NODEFER respectively. 59 + */ 60 + #define SA_ONSTACK 0x00000001 61 + #define SA_RESETHAND 0x00000004 62 + #define SA_NOCLDSTOP 0x00000008 63 + #define SA_SIGINFO 0x00000010 64 + #define SA_NODEFER 0x00000020 65 + #define SA_RESTART 0x00000040 66 + #define SA_NOCLDWAIT 0x00000080 67 + #define _SA_SIGGFAULT 0x00000100 /* HPUX */ 68 + 69 + #define SA_NOMASK SA_NODEFER 70 + #define SA_ONESHOT SA_RESETHAND 71 + 72 + #define SA_RESTORER 0x04000000 /* obsolete -- ignored */ 73 + 74 + /* 75 + * sigaltstack controls 76 + */ 77 + #define SS_ONSTACK 1 78 + #define SS_DISABLE 2 79 + 80 + #define MINSIGSTKSZ 2048 81 + #define SIGSTKSZ 8192 82 + 83 + 84 + #define SIG_BLOCK 0 /* for blocking signals */ 85 + #define SIG_UNBLOCK 1 /* for unblocking signals */ 86 + #define SIG_SETMASK 2 /* for setting the signal mask */ 87 + 88 + #define SIG_DFL ((__sighandler_t)0) /* default signal handling */ 89 + #define SIG_IGN ((__sighandler_t)1) /* ignore signal */ 90 + #define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ 91 + 92 + # ifndef __ASSEMBLY__ 93 + 94 + # include <linux/types.h> 95 + 96 + /* Avoid too many header ordering problems. */ 97 + struct siginfo; 98 + 99 + /* Type of a signal handler. */ 100 + #ifdef CONFIG_64BIT 101 + /* function pointers on 64-bit parisc are pointers to little structs and the 102 + * compiler doesn't support code which changes or tests the address of 103 + * the function in the little struct. This is really ugly -PB 104 + */ 105 + typedef char __user *__sighandler_t; 106 + #else 107 + typedef void __signalfn_t(int); 108 + typedef __signalfn_t __user *__sighandler_t; 109 + #endif 110 + 111 + typedef struct sigaltstack { 112 + void __user *ss_sp; 113 + int ss_flags; 114 + size_t ss_size; 115 + } stack_t; 116 + 117 + #endif /* !__ASSEMBLY */ 118 + #endif /* _UAPI_ASM_PARISC_SIGNAL_H */
+43
arch/parisc/include/uapi/asm/termios.h
··· 1 + #ifndef _UAPI_PARISC_TERMIOS_H 2 + #define _UAPI_PARISC_TERMIOS_H 3 + 4 + #include <asm/termbits.h> 5 + #include <asm/ioctls.h> 6 + 7 + struct winsize { 8 + unsigned short ws_row; 9 + unsigned short ws_col; 10 + unsigned short ws_xpixel; 11 + unsigned short ws_ypixel; 12 + }; 13 + 14 + #define NCC 8 15 + struct termio { 16 + unsigned short c_iflag; /* input mode flags */ 17 + unsigned short c_oflag; /* output mode flags */ 18 + unsigned short c_cflag; /* control mode flags */ 19 + unsigned short c_lflag; /* local mode flags */ 20 + unsigned char c_line; /* line discipline */ 21 + unsigned char c_cc[NCC]; /* control characters */ 22 + }; 23 + 24 + /* modem lines */ 25 + #define TIOCM_LE 0x001 26 + #define TIOCM_DTR 0x002 27 + #define TIOCM_RTS 0x004 28 + #define TIOCM_ST 0x008 29 + #define TIOCM_SR 0x010 30 + #define TIOCM_CTS 0x020 31 + #define TIOCM_CAR 0x040 32 + #define TIOCM_RNG 0x080 33 + #define TIOCM_DSR 0x100 34 + #define TIOCM_CD TIOCM_CAR 35 + #define TIOCM_RI TIOCM_RNG 36 + #define TIOCM_OUT1 0x2000 37 + #define TIOCM_OUT2 0x4000 38 + #define TIOCM_LOOP 0x8000 39 + 40 + /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */ 41 + 42 + 43 + #endif /* _UAPI_PARISC_TERMIOS_H */
+837
arch/parisc/include/uapi/asm/unistd.h
··· 1 + #ifndef _UAPI_ASM_PARISC_UNISTD_H_ 2 + #define _UAPI_ASM_PARISC_UNISTD_H_ 3 + 4 + /* 5 + * This file contains the system call numbers. 6 + */ 7 + 8 + /* 9 + * HP-UX system calls get their native numbers for binary compatibility. 10 + */ 11 + 12 + #define __NR_HPUX_exit 1 13 + #define __NR_HPUX_fork 2 14 + #define __NR_HPUX_read 3 15 + #define __NR_HPUX_write 4 16 + #define __NR_HPUX_open 5 17 + #define __NR_HPUX_close 6 18 + #define __NR_HPUX_wait 7 19 + #define __NR_HPUX_creat 8 20 + #define __NR_HPUX_link 9 21 + #define __NR_HPUX_unlink 10 22 + #define __NR_HPUX_execv 11 23 + #define __NR_HPUX_chdir 12 24 + #define __NR_HPUX_time 13 25 + #define __NR_HPUX_mknod 14 26 + #define __NR_HPUX_chmod 15 27 + #define __NR_HPUX_chown 16 28 + #define __NR_HPUX_break 17 29 + #define __NR_HPUX_lchmod 18 30 + #define __NR_HPUX_lseek 19 31 + #define __NR_HPUX_getpid 20 32 + #define __NR_HPUX_mount 21 33 + #define __NR_HPUX_umount 22 34 + #define __NR_HPUX_setuid 23 35 + #define __NR_HPUX_getuid 24 36 + #define __NR_HPUX_stime 25 37 + #define __NR_HPUX_ptrace 26 38 + #define __NR_HPUX_alarm 27 39 + #define __NR_HPUX_oldfstat 28 40 + #define __NR_HPUX_pause 29 41 + #define __NR_HPUX_utime 30 42 + #define __NR_HPUX_stty 31 43 + #define __NR_HPUX_gtty 32 44 + #define __NR_HPUX_access 33 45 + #define __NR_HPUX_nice 34 46 + #define __NR_HPUX_ftime 35 47 + #define __NR_HPUX_sync 36 48 + #define __NR_HPUX_kill 37 49 + #define __NR_HPUX_stat 38 50 + #define __NR_HPUX_setpgrp3 39 51 + #define __NR_HPUX_lstat 40 52 + #define __NR_HPUX_dup 41 53 + #define __NR_HPUX_pipe 42 54 + #define __NR_HPUX_times 43 55 + #define __NR_HPUX_profil 44 56 + #define __NR_HPUX_ki_call 45 57 + #define __NR_HPUX_setgid 46 58 + #define __NR_HPUX_getgid 47 59 + #define __NR_HPUX_sigsys 48 60 + #define __NR_HPUX_reserved1 49 61 + #define __NR_HPUX_reserved2 50 62 + #define __NR_HPUX_acct 51 63 + #define __NR_HPUX_set_userthreadid 52 64 + #define __NR_HPUX_oldlock 53 65 + #define __NR_HPUX_ioctl 54 66 + #define __NR_HPUX_reboot 55 67 + #define __NR_HPUX_symlink 56 68 + #define __NR_HPUX_utssys 57 69 + #define __NR_HPUX_readlink 58 70 + #define __NR_HPUX_execve 59 71 + #define __NR_HPUX_umask 60 72 + #define __NR_HPUX_chroot 61 73 + #define __NR_HPUX_fcntl 62 74 + #define __NR_HPUX_ulimit 63 75 + #define __NR_HPUX_getpagesize 64 76 + #define __NR_HPUX_mremap 65 77 + #define __NR_HPUX_vfork 66 78 + #define __NR_HPUX_vread 67 79 + #define __NR_HPUX_vwrite 68 80 + #define __NR_HPUX_sbrk 69 81 + #define __NR_HPUX_sstk 70 82 + #define __NR_HPUX_mmap 71 83 + #define __NR_HPUX_vadvise 72 84 + #define __NR_HPUX_munmap 73 85 + #define __NR_HPUX_mprotect 74 86 + #define __NR_HPUX_madvise 75 87 + #define __NR_HPUX_vhangup 76 88 + #define __NR_HPUX_swapoff 77 89 + #define __NR_HPUX_mincore 78 90 + #define __NR_HPUX_getgroups 79 91 + #define __NR_HPUX_setgroups 80 92 + #define __NR_HPUX_getpgrp2 81 93 + #define __NR_HPUX_setpgrp2 82 94 + #define __NR_HPUX_setitimer 83 95 + #define __NR_HPUX_wait3 84 96 + #define __NR_HPUX_swapon 85 97 + #define __NR_HPUX_getitimer 86 98 + #define __NR_HPUX_gethostname42 87 99 + #define __NR_HPUX_sethostname42 88 100 + #define __NR_HPUX_getdtablesize 89 101 + #define __NR_HPUX_dup2 90 102 + #define __NR_HPUX_getdopt 91 103 + #define __NR_HPUX_fstat 92 104 + #define __NR_HPUX_select 93 105 + #define __NR_HPUX_setdopt 94 106 + #define __NR_HPUX_fsync 95 107 + #define __NR_HPUX_setpriority 96 108 + #define __NR_HPUX_socket_old 97 109 + #define __NR_HPUX_connect_old 98 110 + #define __NR_HPUX_accept_old 99 111 + #define __NR_HPUX_getpriority 100 112 + #define __NR_HPUX_send_old 101 113 + #define __NR_HPUX_recv_old 102 114 + #define __NR_HPUX_socketaddr_old 103 115 + #define __NR_HPUX_bind_old 104 116 + #define __NR_HPUX_setsockopt_old 105 117 + #define __NR_HPUX_listen_old 106 118 + #define __NR_HPUX_vtimes_old 107 119 + #define __NR_HPUX_sigvector 108 120 + #define __NR_HPUX_sigblock 109 121 + #define __NR_HPUX_siggetmask 110 122 + #define __NR_HPUX_sigpause 111 123 + #define __NR_HPUX_sigstack 112 124 + #define __NR_HPUX_recvmsg_old 113 125 + #define __NR_HPUX_sendmsg_old 114 126 + #define __NR_HPUX_vtrace_old 115 127 + #define __NR_HPUX_gettimeofday 116 128 + #define __NR_HPUX_getrusage 117 129 + #define __NR_HPUX_getsockopt_old 118 130 + #define __NR_HPUX_resuba_old 119 131 + #define __NR_HPUX_readv 120 132 + #define __NR_HPUX_writev 121 133 + #define __NR_HPUX_settimeofday 122 134 + #define __NR_HPUX_fchown 123 135 + #define __NR_HPUX_fchmod 124 136 + #define __NR_HPUX_recvfrom_old 125 137 + #define __NR_HPUX_setresuid 126 138 + #define __NR_HPUX_setresgid 127 139 + #define __NR_HPUX_rename 128 140 + #define __NR_HPUX_truncate 129 141 + #define __NR_HPUX_ftruncate 130 142 + #define __NR_HPUX_flock_old 131 143 + #define __NR_HPUX_sysconf 132 144 + #define __NR_HPUX_sendto_old 133 145 + #define __NR_HPUX_shutdown_old 134 146 + #define __NR_HPUX_socketpair_old 135 147 + #define __NR_HPUX_mkdir 136 148 + #define __NR_HPUX_rmdir 137 149 + #define __NR_HPUX_utimes_old 138 150 + #define __NR_HPUX_sigcleanup_old 139 151 + #define __NR_HPUX_setcore 140 152 + #define __NR_HPUX_getpeername_old 141 153 + #define __NR_HPUX_gethostid 142 154 + #define __NR_HPUX_sethostid 143 155 + #define __NR_HPUX_getrlimit 144 156 + #define __NR_HPUX_setrlimit 145 157 + #define __NR_HPUX_killpg_old 146 158 + #define __NR_HPUX_cachectl 147 159 + #define __NR_HPUX_quotactl 148 160 + #define __NR_HPUX_get_sysinfo 149 161 + #define __NR_HPUX_getsockname_old 150 162 + #define __NR_HPUX_privgrp 151 163 + #define __NR_HPUX_rtprio 152 164 + #define __NR_HPUX_plock 153 165 + #define __NR_HPUX_reserved3 154 166 + #define __NR_HPUX_lockf 155 167 + #define __NR_HPUX_semget 156 168 + #define __NR_HPUX_osemctl 157 169 + #define __NR_HPUX_semop 158 170 + #define __NR_HPUX_msgget 159 171 + #define __NR_HPUX_omsgctl 160 172 + #define __NR_HPUX_msgsnd 161 173 + #define __NR_HPUX_msgrecv 162 174 + #define __NR_HPUX_shmget 163 175 + #define __NR_HPUX_oshmctl 164 176 + #define __NR_HPUX_shmat 165 177 + #define __NR_HPUX_shmdt 166 178 + #define __NR_HPUX_m68020_advise 167 179 + /* [168,189] are for Discless/DUX */ 180 + #define __NR_HPUX_csp 168 181 + #define __NR_HPUX_cluster 169 182 + #define __NR_HPUX_mkrnod 170 183 + #define __NR_HPUX_test 171 184 + #define __NR_HPUX_unsp_open 172 185 + #define __NR_HPUX_reserved4 173 186 + #define __NR_HPUX_getcontext_old 174 187 + #define __NR_HPUX_osetcontext 175 188 + #define __NR_HPUX_bigio 176 189 + #define __NR_HPUX_pipenode 177 190 + #define __NR_HPUX_lsync 178 191 + #define __NR_HPUX_getmachineid 179 192 + #define __NR_HPUX_cnodeid 180 193 + #define __NR_HPUX_cnodes 181 194 + #define __NR_HPUX_swapclients 182 195 + #define __NR_HPUX_rmt_process 183 196 + #define __NR_HPUX_dskless_stats 184 197 + #define __NR_HPUX_sigprocmask 185 198 + #define __NR_HPUX_sigpending 186 199 + #define __NR_HPUX_sigsuspend 187 200 + #define __NR_HPUX_sigaction 188 201 + #define __NR_HPUX_reserved5 189 202 + #define __NR_HPUX_nfssvc 190 203 + #define __NR_HPUX_getfh 191 204 + #define __NR_HPUX_getdomainname 192 205 + #define __NR_HPUX_setdomainname 193 206 + #define __NR_HPUX_async_daemon 194 207 + #define __NR_HPUX_getdirentries 195 208 + #define __NR_HPUX_statfs 196 209 + #define __NR_HPUX_fstatfs 197 210 + #define __NR_HPUX_vfsmount 198 211 + #define __NR_HPUX_reserved6 199 212 + #define __NR_HPUX_waitpid 200 213 + /* 201 - 223 missing */ 214 + #define __NR_HPUX_sigsetreturn 224 215 + #define __NR_HPUX_sigsetstatemask 225 216 + /* 226 missing */ 217 + #define __NR_HPUX_cs 227 218 + #define __NR_HPUX_cds 228 219 + #define __NR_HPUX_set_no_trunc 229 220 + #define __NR_HPUX_pathconf 230 221 + #define __NR_HPUX_fpathconf 231 222 + /* 232, 233 missing */ 223 + #define __NR_HPUX_nfs_fcntl 234 224 + #define __NR_HPUX_ogetacl 235 225 + #define __NR_HPUX_ofgetacl 236 226 + #define __NR_HPUX_osetacl 237 227 + #define __NR_HPUX_ofsetacl 238 228 + #define __NR_HPUX_pstat 239 229 + #define __NR_HPUX_getaudid 240 230 + #define __NR_HPUX_setaudid 241 231 + #define __NR_HPUX_getaudproc 242 232 + #define __NR_HPUX_setaudproc 243 233 + #define __NR_HPUX_getevent 244 234 + #define __NR_HPUX_setevent 245 235 + #define __NR_HPUX_audwrite 246 236 + #define __NR_HPUX_audswitch 247 237 + #define __NR_HPUX_audctl 248 238 + #define __NR_HPUX_ogetaccess 249 239 + #define __NR_HPUX_fsctl 250 240 + /* 251 - 258 missing */ 241 + #define __NR_HPUX_swapfs 259 242 + #define __NR_HPUX_fss 260 243 + /* 261 - 266 missing */ 244 + #define __NR_HPUX_tsync 267 245 + #define __NR_HPUX_getnumfds 268 246 + #define __NR_HPUX_poll 269 247 + #define __NR_HPUX_getmsg 270 248 + #define __NR_HPUX_putmsg 271 249 + #define __NR_HPUX_fchdir 272 250 + #define __NR_HPUX_getmount_cnt 273 251 + #define __NR_HPUX_getmount_entry 274 252 + #define __NR_HPUX_accept 275 253 + #define __NR_HPUX_bind 276 254 + #define __NR_HPUX_connect 277 255 + #define __NR_HPUX_getpeername 278 256 + #define __NR_HPUX_getsockname 279 257 + #define __NR_HPUX_getsockopt 280 258 + #define __NR_HPUX_listen 281 259 + #define __NR_HPUX_recv 282 260 + #define __NR_HPUX_recvfrom 283 261 + #define __NR_HPUX_recvmsg 284 262 + #define __NR_HPUX_send 285 263 + #define __NR_HPUX_sendmsg 286 264 + #define __NR_HPUX_sendto 287 265 + #define __NR_HPUX_setsockopt 288 266 + #define __NR_HPUX_shutdown 289 267 + #define __NR_HPUX_socket 290 268 + #define __NR_HPUX_socketpair 291 269 + #define __NR_HPUX_proc_open 292 270 + #define __NR_HPUX_proc_close 293 271 + #define __NR_HPUX_proc_send 294 272 + #define __NR_HPUX_proc_recv 295 273 + #define __NR_HPUX_proc_sendrecv 296 274 + #define __NR_HPUX_proc_syscall 297 275 + /* 298 - 311 missing */ 276 + #define __NR_HPUX_semctl 312 277 + #define __NR_HPUX_msgctl 313 278 + #define __NR_HPUX_shmctl 314 279 + #define __NR_HPUX_mpctl 315 280 + #define __NR_HPUX_exportfs 316 281 + #define __NR_HPUX_getpmsg 317 282 + #define __NR_HPUX_putpmsg 318 283 + /* 319 missing */ 284 + #define __NR_HPUX_msync 320 285 + #define __NR_HPUX_msleep 321 286 + #define __NR_HPUX_mwakeup 322 287 + #define __NR_HPUX_msem_init 323 288 + #define __NR_HPUX_msem_remove 324 289 + #define __NR_HPUX_adjtime 325 290 + #define __NR_HPUX_kload 326 291 + #define __NR_HPUX_fattach 327 292 + #define __NR_HPUX_fdetach 328 293 + #define __NR_HPUX_serialize 329 294 + #define __NR_HPUX_statvfs 330 295 + #define __NR_HPUX_fstatvfs 331 296 + #define __NR_HPUX_lchown 332 297 + #define __NR_HPUX_getsid 333 298 + #define __NR_HPUX_sysfs 334 299 + /* 335, 336 missing */ 300 + #define __NR_HPUX_sched_setparam 337 301 + #define __NR_HPUX_sched_getparam 338 302 + #define __NR_HPUX_sched_setscheduler 339 303 + #define __NR_HPUX_sched_getscheduler 340 304 + #define __NR_HPUX_sched_yield 341 305 + #define __NR_HPUX_sched_get_priority_max 342 306 + #define __NR_HPUX_sched_get_priority_min 343 307 + #define __NR_HPUX_sched_rr_get_interval 344 308 + #define __NR_HPUX_clock_settime 345 309 + #define __NR_HPUX_clock_gettime 346 310 + #define __NR_HPUX_clock_getres 347 311 + #define __NR_HPUX_timer_create 348 312 + #define __NR_HPUX_timer_delete 349 313 + #define __NR_HPUX_timer_settime 350 314 + #define __NR_HPUX_timer_gettime 351 315 + #define __NR_HPUX_timer_getoverrun 352 316 + #define __NR_HPUX_nanosleep 353 317 + #define __NR_HPUX_toolbox 354 318 + /* 355 missing */ 319 + #define __NR_HPUX_getdents 356 320 + #define __NR_HPUX_getcontext 357 321 + #define __NR_HPUX_sysinfo 358 322 + #define __NR_HPUX_fcntl64 359 323 + #define __NR_HPUX_ftruncate64 360 324 + #define __NR_HPUX_fstat64 361 325 + #define __NR_HPUX_getdirentries64 362 326 + #define __NR_HPUX_getrlimit64 363 327 + #define __NR_HPUX_lockf64 364 328 + #define __NR_HPUX_lseek64 365 329 + #define __NR_HPUX_lstat64 366 330 + #define __NR_HPUX_mmap64 367 331 + #define __NR_HPUX_setrlimit64 368 332 + #define __NR_HPUX_stat64 369 333 + #define __NR_HPUX_truncate64 370 334 + #define __NR_HPUX_ulimit64 371 335 + #define __NR_HPUX_pread 372 336 + #define __NR_HPUX_preadv 373 337 + #define __NR_HPUX_pwrite 374 338 + #define __NR_HPUX_pwritev 375 339 + #define __NR_HPUX_pread64 376 340 + #define __NR_HPUX_preadv64 377 341 + #define __NR_HPUX_pwrite64 378 342 + #define __NR_HPUX_pwritev64 379 343 + #define __NR_HPUX_setcontext 380 344 + #define __NR_HPUX_sigaltstack 381 345 + #define __NR_HPUX_waitid 382 346 + #define __NR_HPUX_setpgrp 383 347 + #define __NR_HPUX_recvmsg2 384 348 + #define __NR_HPUX_sendmsg2 385 349 + #define __NR_HPUX_socket2 386 350 + #define __NR_HPUX_socketpair2 387 351 + #define __NR_HPUX_setregid 388 352 + #define __NR_HPUX_lwp_create 389 353 + #define __NR_HPUX_lwp_terminate 390 354 + #define __NR_HPUX_lwp_wait 391 355 + #define __NR_HPUX_lwp_suspend 392 356 + #define __NR_HPUX_lwp_resume 393 357 + /* 394 missing */ 358 + #define __NR_HPUX_lwp_abort_syscall 395 359 + #define __NR_HPUX_lwp_info 396 360 + #define __NR_HPUX_lwp_kill 397 361 + #define __NR_HPUX_ksleep 398 362 + #define __NR_HPUX_kwakeup 399 363 + /* 400 missing */ 364 + #define __NR_HPUX_pstat_getlwp 401 365 + #define __NR_HPUX_lwp_exit 402 366 + #define __NR_HPUX_lwp_continue 403 367 + #define __NR_HPUX_getacl 404 368 + #define __NR_HPUX_fgetacl 405 369 + #define __NR_HPUX_setacl 406 370 + #define __NR_HPUX_fsetacl 407 371 + #define __NR_HPUX_getaccess 408 372 + #define __NR_HPUX_lwp_mutex_init 409 373 + #define __NR_HPUX_lwp_mutex_lock_sys 410 374 + #define __NR_HPUX_lwp_mutex_unlock 411 375 + #define __NR_HPUX_lwp_cond_init 412 376 + #define __NR_HPUX_lwp_cond_signal 413 377 + #define __NR_HPUX_lwp_cond_broadcast 414 378 + #define __NR_HPUX_lwp_cond_wait_sys 415 379 + #define __NR_HPUX_lwp_getscheduler 416 380 + #define __NR_HPUX_lwp_setscheduler 417 381 + #define __NR_HPUX_lwp_getstate 418 382 + #define __NR_HPUX_lwp_setstate 419 383 + #define __NR_HPUX_lwp_detach 420 384 + #define __NR_HPUX_mlock 421 385 + #define __NR_HPUX_munlock 422 386 + #define __NR_HPUX_mlockall 423 387 + #define __NR_HPUX_munlockall 424 388 + #define __NR_HPUX_shm_open 425 389 + #define __NR_HPUX_shm_unlink 426 390 + #define __NR_HPUX_sigqueue 427 391 + #define __NR_HPUX_sigwaitinfo 428 392 + #define __NR_HPUX_sigtimedwait 429 393 + #define __NR_HPUX_sigwait 430 394 + #define __NR_HPUX_aio_read 431 395 + #define __NR_HPUX_aio_write 432 396 + #define __NR_HPUX_lio_listio 433 397 + #define __NR_HPUX_aio_error 434 398 + #define __NR_HPUX_aio_return 435 399 + #define __NR_HPUX_aio_cancel 436 400 + #define __NR_HPUX_aio_suspend 437 401 + #define __NR_HPUX_aio_fsync 438 402 + #define __NR_HPUX_mq_open 439 403 + #define __NR_HPUX_mq_close 440 404 + #define __NR_HPUX_mq_unlink 441 405 + #define __NR_HPUX_mq_send 442 406 + #define __NR_HPUX_mq_receive 443 407 + #define __NR_HPUX_mq_notify 444 408 + #define __NR_HPUX_mq_setattr 445 409 + #define __NR_HPUX_mq_getattr 446 410 + #define __NR_HPUX_ksem_open 447 411 + #define __NR_HPUX_ksem_unlink 448 412 + #define __NR_HPUX_ksem_close 449 413 + #define __NR_HPUX_ksem_post 450 414 + #define __NR_HPUX_ksem_wait 451 415 + #define __NR_HPUX_ksem_read 452 416 + #define __NR_HPUX_ksem_trywait 453 417 + #define __NR_HPUX_lwp_rwlock_init 454 418 + #define __NR_HPUX_lwp_rwlock_destroy 455 419 + #define __NR_HPUX_lwp_rwlock_rdlock_sys 456 420 + #define __NR_HPUX_lwp_rwlock_wrlock_sys 457 421 + #define __NR_HPUX_lwp_rwlock_tryrdlock 458 422 + #define __NR_HPUX_lwp_rwlock_trywrlock 459 423 + #define __NR_HPUX_lwp_rwlock_unlock 460 424 + #define __NR_HPUX_ttrace 461 425 + #define __NR_HPUX_ttrace_wait 462 426 + #define __NR_HPUX_lf_wire_mem 463 427 + #define __NR_HPUX_lf_unwire_mem 464 428 + #define __NR_HPUX_lf_send_pin_map 465 429 + #define __NR_HPUX_lf_free_buf 466 430 + #define __NR_HPUX_lf_wait_nq 467 431 + #define __NR_HPUX_lf_wakeup_conn_q 468 432 + #define __NR_HPUX_lf_unused 469 433 + #define __NR_HPUX_lwp_sema_init 470 434 + #define __NR_HPUX_lwp_sema_post 471 435 + #define __NR_HPUX_lwp_sema_wait 472 436 + #define __NR_HPUX_lwp_sema_trywait 473 437 + #define __NR_HPUX_lwp_sema_destroy 474 438 + #define __NR_HPUX_statvfs64 475 439 + #define __NR_HPUX_fstatvfs64 476 440 + #define __NR_HPUX_msh_register 477 441 + #define __NR_HPUX_ptrace64 478 442 + #define __NR_HPUX_sendfile 479 443 + #define __NR_HPUX_sendpath 480 444 + #define __NR_HPUX_sendfile64 481 445 + #define __NR_HPUX_sendpath64 482 446 + #define __NR_HPUX_modload 483 447 + #define __NR_HPUX_moduload 484 448 + #define __NR_HPUX_modpath 485 449 + #define __NR_HPUX_getksym 486 450 + #define __NR_HPUX_modadm 487 451 + #define __NR_HPUX_modstat 488 452 + #define __NR_HPUX_lwp_detached_exit 489 453 + #define __NR_HPUX_crashconf 490 454 + #define __NR_HPUX_siginhibit 491 455 + #define __NR_HPUX_sigenable 492 456 + #define __NR_HPUX_spuctl 493 457 + #define __NR_HPUX_zerokernelsum 494 458 + #define __NR_HPUX_nfs_kstat 495 459 + #define __NR_HPUX_aio_read64 496 460 + #define __NR_HPUX_aio_write64 497 461 + #define __NR_HPUX_aio_error64 498 462 + #define __NR_HPUX_aio_return64 499 463 + #define __NR_HPUX_aio_cancel64 500 464 + #define __NR_HPUX_aio_suspend64 501 465 + #define __NR_HPUX_aio_fsync64 502 466 + #define __NR_HPUX_lio_listio64 503 467 + #define __NR_HPUX_recv2 504 468 + #define __NR_HPUX_recvfrom2 505 469 + #define __NR_HPUX_send2 506 470 + #define __NR_HPUX_sendto2 507 471 + #define __NR_HPUX_acl 508 472 + #define __NR_HPUX___cnx_p2p_ctl 509 473 + #define __NR_HPUX___cnx_gsched_ctl 510 474 + #define __NR_HPUX___cnx_pmon_ctl 511 475 + 476 + #define __NR_HPUX_syscalls 512 477 + 478 + /* 479 + * Linux system call numbers. 480 + * 481 + * Cary Coutant says that we should just use another syscall gateway 482 + * page to avoid clashing with the HPUX space, and I think he's right: 483 + * it will would keep a branch out of our syscall entry path, at the 484 + * very least. If we decide to change it later, we can ``just'' tweak 485 + * the LINUX_GATEWAY_ADDR define at the bottom and make __NR_Linux be 486 + * 1024 or something. Oh, and recompile libc. =) 487 + * 488 + * 64-bit HPUX binaries get the syscall gateway address passed in a register 489 + * from the kernel at startup, which seems a sane strategy. 490 + */ 491 + 492 + #define __NR_Linux 0 493 + #define __NR_restart_syscall (__NR_Linux + 0) 494 + #define __NR_exit (__NR_Linux + 1) 495 + #define __NR_fork (__NR_Linux + 2) 496 + #define __NR_read (__NR_Linux + 3) 497 + #define __NR_write (__NR_Linux + 4) 498 + #define __NR_open (__NR_Linux + 5) 499 + #define __NR_close (__NR_Linux + 6) 500 + #define __NR_waitpid (__NR_Linux + 7) 501 + #define __NR_creat (__NR_Linux + 8) 502 + #define __NR_link (__NR_Linux + 9) 503 + #define __NR_unlink (__NR_Linux + 10) 504 + #define __NR_execve (__NR_Linux + 11) 505 + #define __NR_chdir (__NR_Linux + 12) 506 + #define __NR_time (__NR_Linux + 13) 507 + #define __NR_mknod (__NR_Linux + 14) 508 + #define __NR_chmod (__NR_Linux + 15) 509 + #define __NR_lchown (__NR_Linux + 16) 510 + #define __NR_socket (__NR_Linux + 17) 511 + #define __NR_stat (__NR_Linux + 18) 512 + #define __NR_lseek (__NR_Linux + 19) 513 + #define __NR_getpid (__NR_Linux + 20) 514 + #define __NR_mount (__NR_Linux + 21) 515 + #define __NR_bind (__NR_Linux + 22) 516 + #define __NR_setuid (__NR_Linux + 23) 517 + #define __NR_getuid (__NR_Linux + 24) 518 + #define __NR_stime (__NR_Linux + 25) 519 + #define __NR_ptrace (__NR_Linux + 26) 520 + #define __NR_alarm (__NR_Linux + 27) 521 + #define __NR_fstat (__NR_Linux + 28) 522 + #define __NR_pause (__NR_Linux + 29) 523 + #define __NR_utime (__NR_Linux + 30) 524 + #define __NR_connect (__NR_Linux + 31) 525 + #define __NR_listen (__NR_Linux + 32) 526 + #define __NR_access (__NR_Linux + 33) 527 + #define __NR_nice (__NR_Linux + 34) 528 + #define __NR_accept (__NR_Linux + 35) 529 + #define __NR_sync (__NR_Linux + 36) 530 + #define __NR_kill (__NR_Linux + 37) 531 + #define __NR_rename (__NR_Linux + 38) 532 + #define __NR_mkdir (__NR_Linux + 39) 533 + #define __NR_rmdir (__NR_Linux + 40) 534 + #define __NR_dup (__NR_Linux + 41) 535 + #define __NR_pipe (__NR_Linux + 42) 536 + #define __NR_times (__NR_Linux + 43) 537 + #define __NR_getsockname (__NR_Linux + 44) 538 + #define __NR_brk (__NR_Linux + 45) 539 + #define __NR_setgid (__NR_Linux + 46) 540 + #define __NR_getgid (__NR_Linux + 47) 541 + #define __NR_signal (__NR_Linux + 48) 542 + #define __NR_geteuid (__NR_Linux + 49) 543 + #define __NR_getegid (__NR_Linux + 50) 544 + #define __NR_acct (__NR_Linux + 51) 545 + #define __NR_umount2 (__NR_Linux + 52) 546 + #define __NR_getpeername (__NR_Linux + 53) 547 + #define __NR_ioctl (__NR_Linux + 54) 548 + #define __NR_fcntl (__NR_Linux + 55) 549 + #define __NR_socketpair (__NR_Linux + 56) 550 + #define __NR_setpgid (__NR_Linux + 57) 551 + #define __NR_send (__NR_Linux + 58) 552 + #define __NR_uname (__NR_Linux + 59) 553 + #define __NR_umask (__NR_Linux + 60) 554 + #define __NR_chroot (__NR_Linux + 61) 555 + #define __NR_ustat (__NR_Linux + 62) 556 + #define __NR_dup2 (__NR_Linux + 63) 557 + #define __NR_getppid (__NR_Linux + 64) 558 + #define __NR_getpgrp (__NR_Linux + 65) 559 + #define __NR_setsid (__NR_Linux + 66) 560 + #define __NR_pivot_root (__NR_Linux + 67) 561 + #define __NR_sgetmask (__NR_Linux + 68) 562 + #define __NR_ssetmask (__NR_Linux + 69) 563 + #define __NR_setreuid (__NR_Linux + 70) 564 + #define __NR_setregid (__NR_Linux + 71) 565 + #define __NR_mincore (__NR_Linux + 72) 566 + #define __NR_sigpending (__NR_Linux + 73) 567 + #define __NR_sethostname (__NR_Linux + 74) 568 + #define __NR_setrlimit (__NR_Linux + 75) 569 + #define __NR_getrlimit (__NR_Linux + 76) 570 + #define __NR_getrusage (__NR_Linux + 77) 571 + #define __NR_gettimeofday (__NR_Linux + 78) 572 + #define __NR_settimeofday (__NR_Linux + 79) 573 + #define __NR_getgroups (__NR_Linux + 80) 574 + #define __NR_setgroups (__NR_Linux + 81) 575 + #define __NR_sendto (__NR_Linux + 82) 576 + #define __NR_symlink (__NR_Linux + 83) 577 + #define __NR_lstat (__NR_Linux + 84) 578 + #define __NR_readlink (__NR_Linux + 85) 579 + #define __NR_uselib (__NR_Linux + 86) 580 + #define __NR_swapon (__NR_Linux + 87) 581 + #define __NR_reboot (__NR_Linux + 88) 582 + #define __NR_mmap2 (__NR_Linux + 89) 583 + #define __NR_mmap (__NR_Linux + 90) 584 + #define __NR_munmap (__NR_Linux + 91) 585 + #define __NR_truncate (__NR_Linux + 92) 586 + #define __NR_ftruncate (__NR_Linux + 93) 587 + #define __NR_fchmod (__NR_Linux + 94) 588 + #define __NR_fchown (__NR_Linux + 95) 589 + #define __NR_getpriority (__NR_Linux + 96) 590 + #define __NR_setpriority (__NR_Linux + 97) 591 + #define __NR_recv (__NR_Linux + 98) 592 + #define __NR_statfs (__NR_Linux + 99) 593 + #define __NR_fstatfs (__NR_Linux + 100) 594 + #define __NR_stat64 (__NR_Linux + 101) 595 + /* #define __NR_socketcall (__NR_Linux + 102) */ 596 + #define __NR_syslog (__NR_Linux + 103) 597 + #define __NR_setitimer (__NR_Linux + 104) 598 + #define __NR_getitimer (__NR_Linux + 105) 599 + #define __NR_capget (__NR_Linux + 106) 600 + #define __NR_capset (__NR_Linux + 107) 601 + #define __NR_pread64 (__NR_Linux + 108) 602 + #define __NR_pwrite64 (__NR_Linux + 109) 603 + #define __NR_getcwd (__NR_Linux + 110) 604 + #define __NR_vhangup (__NR_Linux + 111) 605 + #define __NR_fstat64 (__NR_Linux + 112) 606 + #define __NR_vfork (__NR_Linux + 113) 607 + #define __NR_wait4 (__NR_Linux + 114) 608 + #define __NR_swapoff (__NR_Linux + 115) 609 + #define __NR_sysinfo (__NR_Linux + 116) 610 + #define __NR_shutdown (__NR_Linux + 117) 611 + #define __NR_fsync (__NR_Linux + 118) 612 + #define __NR_madvise (__NR_Linux + 119) 613 + #define __NR_clone (__NR_Linux + 120) 614 + #define __NR_setdomainname (__NR_Linux + 121) 615 + #define __NR_sendfile (__NR_Linux + 122) 616 + #define __NR_recvfrom (__NR_Linux + 123) 617 + #define __NR_adjtimex (__NR_Linux + 124) 618 + #define __NR_mprotect (__NR_Linux + 125) 619 + #define __NR_sigprocmask (__NR_Linux + 126) 620 + #define __NR_create_module (__NR_Linux + 127) 621 + #define __NR_init_module (__NR_Linux + 128) 622 + #define __NR_delete_module (__NR_Linux + 129) 623 + #define __NR_get_kernel_syms (__NR_Linux + 130) 624 + #define __NR_quotactl (__NR_Linux + 131) 625 + #define __NR_getpgid (__NR_Linux + 132) 626 + #define __NR_fchdir (__NR_Linux + 133) 627 + #define __NR_bdflush (__NR_Linux + 134) 628 + #define __NR_sysfs (__NR_Linux + 135) 629 + #define __NR_personality (__NR_Linux + 136) 630 + #define __NR_afs_syscall (__NR_Linux + 137) /* Syscall for Andrew File System */ 631 + #define __NR_setfsuid (__NR_Linux + 138) 632 + #define __NR_setfsgid (__NR_Linux + 139) 633 + #define __NR__llseek (__NR_Linux + 140) 634 + #define __NR_getdents (__NR_Linux + 141) 635 + #define __NR__newselect (__NR_Linux + 142) 636 + #define __NR_flock (__NR_Linux + 143) 637 + #define __NR_msync (__NR_Linux + 144) 638 + #define __NR_readv (__NR_Linux + 145) 639 + #define __NR_writev (__NR_Linux + 146) 640 + #define __NR_getsid (__NR_Linux + 147) 641 + #define __NR_fdatasync (__NR_Linux + 148) 642 + #define __NR__sysctl (__NR_Linux + 149) 643 + #define __NR_mlock (__NR_Linux + 150) 644 + #define __NR_munlock (__NR_Linux + 151) 645 + #define __NR_mlockall (__NR_Linux + 152) 646 + #define __NR_munlockall (__NR_Linux + 153) 647 + #define __NR_sched_setparam (__NR_Linux + 154) 648 + #define __NR_sched_getparam (__NR_Linux + 155) 649 + #define __NR_sched_setscheduler (__NR_Linux + 156) 650 + #define __NR_sched_getscheduler (__NR_Linux + 157) 651 + #define __NR_sched_yield (__NR_Linux + 158) 652 + #define __NR_sched_get_priority_max (__NR_Linux + 159) 653 + #define __NR_sched_get_priority_min (__NR_Linux + 160) 654 + #define __NR_sched_rr_get_interval (__NR_Linux + 161) 655 + #define __NR_nanosleep (__NR_Linux + 162) 656 + #define __NR_mremap (__NR_Linux + 163) 657 + #define __NR_setresuid (__NR_Linux + 164) 658 + #define __NR_getresuid (__NR_Linux + 165) 659 + #define __NR_sigaltstack (__NR_Linux + 166) 660 + #define __NR_query_module (__NR_Linux + 167) 661 + #define __NR_poll (__NR_Linux + 168) 662 + #define __NR_nfsservctl (__NR_Linux + 169) 663 + #define __NR_setresgid (__NR_Linux + 170) 664 + #define __NR_getresgid (__NR_Linux + 171) 665 + #define __NR_prctl (__NR_Linux + 172) 666 + #define __NR_rt_sigreturn (__NR_Linux + 173) 667 + #define __NR_rt_sigaction (__NR_Linux + 174) 668 + #define __NR_rt_sigprocmask (__NR_Linux + 175) 669 + #define __NR_rt_sigpending (__NR_Linux + 176) 670 + #define __NR_rt_sigtimedwait (__NR_Linux + 177) 671 + #define __NR_rt_sigqueueinfo (__NR_Linux + 178) 672 + #define __NR_rt_sigsuspend (__NR_Linux + 179) 673 + #define __NR_chown (__NR_Linux + 180) 674 + #define __NR_setsockopt (__NR_Linux + 181) 675 + #define __NR_getsockopt (__NR_Linux + 182) 676 + #define __NR_sendmsg (__NR_Linux + 183) 677 + #define __NR_recvmsg (__NR_Linux + 184) 678 + #define __NR_semop (__NR_Linux + 185) 679 + #define __NR_semget (__NR_Linux + 186) 680 + #define __NR_semctl (__NR_Linux + 187) 681 + #define __NR_msgsnd (__NR_Linux + 188) 682 + #define __NR_msgrcv (__NR_Linux + 189) 683 + #define __NR_msgget (__NR_Linux + 190) 684 + #define __NR_msgctl (__NR_Linux + 191) 685 + #define __NR_shmat (__NR_Linux + 192) 686 + #define __NR_shmdt (__NR_Linux + 193) 687 + #define __NR_shmget (__NR_Linux + 194) 688 + #define __NR_shmctl (__NR_Linux + 195) 689 + 690 + #define __NR_getpmsg (__NR_Linux + 196) /* Somebody *wants* streams? */ 691 + #define __NR_putpmsg (__NR_Linux + 197) 692 + 693 + #define __NR_lstat64 (__NR_Linux + 198) 694 + #define __NR_truncate64 (__NR_Linux + 199) 695 + #define __NR_ftruncate64 (__NR_Linux + 200) 696 + #define __NR_getdents64 (__NR_Linux + 201) 697 + #define __NR_fcntl64 (__NR_Linux + 202) 698 + #define __NR_attrctl (__NR_Linux + 203) 699 + #define __NR_acl_get (__NR_Linux + 204) 700 + #define __NR_acl_set (__NR_Linux + 205) 701 + #define __NR_gettid (__NR_Linux + 206) 702 + #define __NR_readahead (__NR_Linux + 207) 703 + #define __NR_tkill (__NR_Linux + 208) 704 + #define __NR_sendfile64 (__NR_Linux + 209) 705 + #define __NR_futex (__NR_Linux + 210) 706 + #define __NR_sched_setaffinity (__NR_Linux + 211) 707 + #define __NR_sched_getaffinity (__NR_Linux + 212) 708 + #define __NR_set_thread_area (__NR_Linux + 213) 709 + #define __NR_get_thread_area (__NR_Linux + 214) 710 + #define __NR_io_setup (__NR_Linux + 215) 711 + #define __NR_io_destroy (__NR_Linux + 216) 712 + #define __NR_io_getevents (__NR_Linux + 217) 713 + #define __NR_io_submit (__NR_Linux + 218) 714 + #define __NR_io_cancel (__NR_Linux + 219) 715 + #define __NR_alloc_hugepages (__NR_Linux + 220) 716 + #define __NR_free_hugepages (__NR_Linux + 221) 717 + #define __NR_exit_group (__NR_Linux + 222) 718 + #define __NR_lookup_dcookie (__NR_Linux + 223) 719 + #define __NR_epoll_create (__NR_Linux + 224) 720 + #define __NR_epoll_ctl (__NR_Linux + 225) 721 + #define __NR_epoll_wait (__NR_Linux + 226) 722 + #define __NR_remap_file_pages (__NR_Linux + 227) 723 + #define __NR_semtimedop (__NR_Linux + 228) 724 + #define __NR_mq_open (__NR_Linux + 229) 725 + #define __NR_mq_unlink (__NR_Linux + 230) 726 + #define __NR_mq_timedsend (__NR_Linux + 231) 727 + #define __NR_mq_timedreceive (__NR_Linux + 232) 728 + #define __NR_mq_notify (__NR_Linux + 233) 729 + #define __NR_mq_getsetattr (__NR_Linux + 234) 730 + #define __NR_waitid (__NR_Linux + 235) 731 + #define __NR_fadvise64_64 (__NR_Linux + 236) 732 + #define __NR_set_tid_address (__NR_Linux + 237) 733 + #define __NR_setxattr (__NR_Linux + 238) 734 + #define __NR_lsetxattr (__NR_Linux + 239) 735 + #define __NR_fsetxattr (__NR_Linux + 240) 736 + #define __NR_getxattr (__NR_Linux + 241) 737 + #define __NR_lgetxattr (__NR_Linux + 242) 738 + #define __NR_fgetxattr (__NR_Linux + 243) 739 + #define __NR_listxattr (__NR_Linux + 244) 740 + #define __NR_llistxattr (__NR_Linux + 245) 741 + #define __NR_flistxattr (__NR_Linux + 246) 742 + #define __NR_removexattr (__NR_Linux + 247) 743 + #define __NR_lremovexattr (__NR_Linux + 248) 744 + #define __NR_fremovexattr (__NR_Linux + 249) 745 + #define __NR_timer_create (__NR_Linux + 250) 746 + #define __NR_timer_settime (__NR_Linux + 251) 747 + #define __NR_timer_gettime (__NR_Linux + 252) 748 + #define __NR_timer_getoverrun (__NR_Linux + 253) 749 + #define __NR_timer_delete (__NR_Linux + 254) 750 + #define __NR_clock_settime (__NR_Linux + 255) 751 + #define __NR_clock_gettime (__NR_Linux + 256) 752 + #define __NR_clock_getres (__NR_Linux + 257) 753 + #define __NR_clock_nanosleep (__NR_Linux + 258) 754 + #define __NR_tgkill (__NR_Linux + 259) 755 + #define __NR_mbind (__NR_Linux + 260) 756 + #define __NR_get_mempolicy (__NR_Linux + 261) 757 + #define __NR_set_mempolicy (__NR_Linux + 262) 758 + #define __NR_vserver (__NR_Linux + 263) 759 + #define __NR_add_key (__NR_Linux + 264) 760 + #define __NR_request_key (__NR_Linux + 265) 761 + #define __NR_keyctl (__NR_Linux + 266) 762 + #define __NR_ioprio_set (__NR_Linux + 267) 763 + #define __NR_ioprio_get (__NR_Linux + 268) 764 + #define __NR_inotify_init (__NR_Linux + 269) 765 + #define __NR_inotify_add_watch (__NR_Linux + 270) 766 + #define __NR_inotify_rm_watch (__NR_Linux + 271) 767 + #define __NR_migrate_pages (__NR_Linux + 272) 768 + #define __NR_pselect6 (__NR_Linux + 273) 769 + #define __NR_ppoll (__NR_Linux + 274) 770 + #define __NR_openat (__NR_Linux + 275) 771 + #define __NR_mkdirat (__NR_Linux + 276) 772 + #define __NR_mknodat (__NR_Linux + 277) 773 + #define __NR_fchownat (__NR_Linux + 278) 774 + #define __NR_futimesat (__NR_Linux + 279) 775 + #define __NR_fstatat64 (__NR_Linux + 280) 776 + #define __NR_unlinkat (__NR_Linux + 281) 777 + #define __NR_renameat (__NR_Linux + 282) 778 + #define __NR_linkat (__NR_Linux + 283) 779 + #define __NR_symlinkat (__NR_Linux + 284) 780 + #define __NR_readlinkat (__NR_Linux + 285) 781 + #define __NR_fchmodat (__NR_Linux + 286) 782 + #define __NR_faccessat (__NR_Linux + 287) 783 + #define __NR_unshare (__NR_Linux + 288) 784 + #define __NR_set_robust_list (__NR_Linux + 289) 785 + #define __NR_get_robust_list (__NR_Linux + 290) 786 + #define __NR_splice (__NR_Linux + 291) 787 + #define __NR_sync_file_range (__NR_Linux + 292) 788 + #define __NR_tee (__NR_Linux + 293) 789 + #define __NR_vmsplice (__NR_Linux + 294) 790 + #define __NR_move_pages (__NR_Linux + 295) 791 + #define __NR_getcpu (__NR_Linux + 296) 792 + #define __NR_epoll_pwait (__NR_Linux + 297) 793 + #define __NR_statfs64 (__NR_Linux + 298) 794 + #define __NR_fstatfs64 (__NR_Linux + 299) 795 + #define __NR_kexec_load (__NR_Linux + 300) 796 + #define __NR_utimensat (__NR_Linux + 301) 797 + #define __NR_signalfd (__NR_Linux + 302) 798 + #define __NR_timerfd (__NR_Linux + 303) 799 + #define __NR_eventfd (__NR_Linux + 304) 800 + #define __NR_fallocate (__NR_Linux + 305) 801 + #define __NR_timerfd_create (__NR_Linux + 306) 802 + #define __NR_timerfd_settime (__NR_Linux + 307) 803 + #define __NR_timerfd_gettime (__NR_Linux + 308) 804 + #define __NR_signalfd4 (__NR_Linux + 309) 805 + #define __NR_eventfd2 (__NR_Linux + 310) 806 + #define __NR_epoll_create1 (__NR_Linux + 311) 807 + #define __NR_dup3 (__NR_Linux + 312) 808 + #define __NR_pipe2 (__NR_Linux + 313) 809 + #define __NR_inotify_init1 (__NR_Linux + 314) 810 + #define __NR_preadv (__NR_Linux + 315) 811 + #define __NR_pwritev (__NR_Linux + 316) 812 + #define __NR_rt_tgsigqueueinfo (__NR_Linux + 317) 813 + #define __NR_perf_event_open (__NR_Linux + 318) 814 + #define __NR_recvmmsg (__NR_Linux + 319) 815 + #define __NR_accept4 (__NR_Linux + 320) 816 + #define __NR_prlimit64 (__NR_Linux + 321) 817 + #define __NR_fanotify_init (__NR_Linux + 322) 818 + #define __NR_fanotify_mark (__NR_Linux + 323) 819 + #define __NR_clock_adjtime (__NR_Linux + 324) 820 + #define __NR_name_to_handle_at (__NR_Linux + 325) 821 + #define __NR_open_by_handle_at (__NR_Linux + 326) 822 + #define __NR_syncfs (__NR_Linux + 327) 823 + #define __NR_setns (__NR_Linux + 328) 824 + #define __NR_sendmmsg (__NR_Linux + 329) 825 + 826 + #define __NR_Linux_syscalls (__NR_sendmmsg + 1) 827 + 828 + 829 + #define __IGNORE_select /* newselect */ 830 + #define __IGNORE_fadvise64 /* fadvise64_64 */ 831 + #define __IGNORE_utimes /* utime */ 832 + 833 + 834 + #define HPUX_GATEWAY_ADDR 0xC0000004 835 + #define LINUX_GATEWAY_ADDR 0x100 836 + 837 + #endif /* _UAPI_ASM_PARISC_UNISTD_H_ */