11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * PARISC Architecture-dependent parts of process handling 31da177e4SLinus Torvalds * based on the work for i386 41da177e4SLinus Torvalds * 51da177e4SLinus Torvalds * Copyright (C) 1999-2003 Matthew Wilcox <willy at parisc-linux.org> 61da177e4SLinus Torvalds * Copyright (C) 2000 Martin K Petersen <mkp at mkp.net> 71da177e4SLinus Torvalds * Copyright (C) 2000 John Marvin <jsm at parisc-linux.org> 81da177e4SLinus Torvalds * Copyright (C) 2000 David Huggins-Daines <dhd with pobox.org> 91da177e4SLinus Torvalds * Copyright (C) 2000-2003 Paul Bame <bame at parisc-linux.org> 101da177e4SLinus Torvalds * Copyright (C) 2000 Philipp Rumpf <prumpf with tux.org> 111da177e4SLinus Torvalds * Copyright (C) 2000 David Kennedy <dkennedy with linuxcare.com> 12b2450cc1SCarlos O'Donell * Copyright (C) 2000 Richard Hirst <rhirst with parisc-linux.org> 131da177e4SLinus Torvalds * Copyright (C) 2000 Grant Grundler <grundler with parisc-linux.org> 141da177e4SLinus Torvalds * Copyright (C) 2001 Alan Modra <amodra at parisc-linux.org> 151da177e4SLinus Torvalds * Copyright (C) 2001-2002 Ryan Bradetich <rbrad at parisc-linux.org> 16a8f44e38SHelge Deller * Copyright (C) 2001-2007 Helge Deller <deller at parisc-linux.org> 171da177e4SLinus Torvalds * Copyright (C) 2002 Randolph Chung <tausq with parisc-linux.org> 181da177e4SLinus Torvalds * 191da177e4SLinus Torvalds * 201da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or modify 211da177e4SLinus Torvalds * it under the terms of the GNU General Public License as published by 221da177e4SLinus Torvalds * the Free Software Foundation; either version 2 of the License, or 231da177e4SLinus Torvalds * (at your option) any later version. 241da177e4SLinus Torvalds * 251da177e4SLinus Torvalds * This program is distributed in the hope that it will be useful, 261da177e4SLinus Torvalds * but WITHOUT ANY WARRANTY; without even the implied warranty of 271da177e4SLinus Torvalds * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 281da177e4SLinus Torvalds * GNU General Public License for more details. 291da177e4SLinus Torvalds * 301da177e4SLinus Torvalds * You should have received a copy of the GNU General Public License 311da177e4SLinus Torvalds * along with this program; if not, write to the Free Software 321da177e4SLinus Torvalds * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 331da177e4SLinus Torvalds */ 341da177e4SLinus Torvalds 351da177e4SLinus Torvalds #include <stdarg.h> 361da177e4SLinus Torvalds 371da177e4SLinus Torvalds #include <linux/elf.h> 381da177e4SLinus Torvalds #include <linux/errno.h> 391da177e4SLinus Torvalds #include <linux/kernel.h> 401da177e4SLinus Torvalds #include <linux/mm.h> 414e950f6fSAlexey Dobriyan #include <linux/fs.h> 421da177e4SLinus Torvalds #include <linux/module.h> 431da177e4SLinus Torvalds #include <linux/personality.h> 441da177e4SLinus Torvalds #include <linux/ptrace.h> 451da177e4SLinus Torvalds #include <linux/sched.h> 465a0e3ad6STejun Heo #include <linux/slab.h> 471da177e4SLinus Torvalds #include <linux/stddef.h> 481da177e4SLinus Torvalds #include <linux/unistd.h> 491da177e4SLinus Torvalds #include <linux/kallsyms.h> 50b609308eSKyle McMartin #include <linux/uaccess.h> 51fbe75218SFrederic Weisbecker #include <linux/rcupdate.h> 521da177e4SLinus Torvalds 531da177e4SLinus Torvalds #include <asm/io.h> 540013a854SSam Ravnborg #include <asm/asm-offsets.h> 551da177e4SLinus Torvalds #include <asm/pdc.h> 561da177e4SLinus Torvalds #include <asm/pdc_chassis.h> 571da177e4SLinus Torvalds #include <asm/pgalloc.h> 581da177e4SLinus Torvalds #include <asm/unwind.h> 59b609308eSKyle McMartin #include <asm/sections.h> 601da177e4SLinus Torvalds 611da177e4SLinus Torvalds /* 621da177e4SLinus Torvalds * The idle thread. There's no useful work to be 631da177e4SLinus Torvalds * done, so just try to conserve power and have a 641da177e4SLinus Torvalds * low exit latency (ie sit in a loop waiting for 651da177e4SLinus Torvalds * somebody to say that they'd like to reschedule) 661da177e4SLinus Torvalds */ 671da177e4SLinus Torvalds void cpu_idle(void) 681da177e4SLinus Torvalds { 6964c7c8f8SNick Piggin set_thread_flag(TIF_POLLING_NRFLAG); 7064c7c8f8SNick Piggin 711da177e4SLinus Torvalds /* endless idle loop with no priority at all */ 721da177e4SLinus Torvalds while (1) { 73fbe75218SFrederic Weisbecker rcu_idle_enter(); 741da177e4SLinus Torvalds while (!need_resched()) 751da177e4SLinus Torvalds barrier(); 76fbe75218SFrederic Weisbecker rcu_idle_exit(); 77bd2f5536SThomas Gleixner schedule_preempt_disabled(); 781da177e4SLinus Torvalds check_pgt_cache(); 791da177e4SLinus Torvalds } 801da177e4SLinus Torvalds } 811da177e4SLinus Torvalds 821da177e4SLinus Torvalds 8310992092SKyle McMartin #define COMMAND_GLOBAL F_EXTEND(0xfffe0030) 841da177e4SLinus Torvalds #define CMD_RESET 5 /* reset any module */ 851da177e4SLinus Torvalds 861da177e4SLinus Torvalds /* 871da177e4SLinus Torvalds ** The Wright Brothers and Gecko systems have a H/W problem 881da177e4SLinus Torvalds ** (Lasi...'nuf said) may cause a broadcast reset to lockup 891da177e4SLinus Torvalds ** the system. An HVERSION dependent PDC call was developed 901da177e4SLinus Torvalds ** to perform a "safe", platform specific broadcast reset instead 911da177e4SLinus Torvalds ** of kludging up all the code. 921da177e4SLinus Torvalds ** 931da177e4SLinus Torvalds ** Older machines which do not implement PDC_BROADCAST_RESET will 941da177e4SLinus Torvalds ** return (with an error) and the regular broadcast reset can be 951da177e4SLinus Torvalds ** issued. Obviously, if the PDC does implement PDC_BROADCAST_RESET 961da177e4SLinus Torvalds ** the PDC call will not return (the system will be reset). 971da177e4SLinus Torvalds */ 981da177e4SLinus Torvalds void machine_restart(char *cmd) 991da177e4SLinus Torvalds { 1001da177e4SLinus Torvalds #ifdef FASTBOOT_SELFTEST_SUPPORT 1011da177e4SLinus Torvalds /* 1021da177e4SLinus Torvalds ** If user has modified the Firmware Selftest Bitmap, 1031da177e4SLinus Torvalds ** run the tests specified in the bitmap after the 1041da177e4SLinus Torvalds ** system is rebooted w/PDC_DO_RESET. 1051da177e4SLinus Torvalds ** 1061da177e4SLinus Torvalds ** ftc_bitmap = 0x1AUL "Skip destructive memory tests" 1071da177e4SLinus Torvalds ** 1081da177e4SLinus Torvalds ** Using "directed resets" at each processor with the MEM_TOC 1091da177e4SLinus Torvalds ** vector cleared will also avoid running destructive 1101da177e4SLinus Torvalds ** memory self tests. (Not implemented yet) 1111da177e4SLinus Torvalds */ 1121da177e4SLinus Torvalds if (ftc_bitmap) { 1131da177e4SLinus Torvalds pdc_do_firm_test_reset(ftc_bitmap); 1141da177e4SLinus Torvalds } 1151da177e4SLinus Torvalds #endif 1161da177e4SLinus Torvalds /* set up a new led state on systems shipped with a LED State panel */ 1171da177e4SLinus Torvalds pdc_chassis_send_status(PDC_CHASSIS_DIRECT_SHUTDOWN); 1181da177e4SLinus Torvalds 1191da177e4SLinus Torvalds /* "Normal" system reset */ 1201da177e4SLinus Torvalds pdc_do_reset(); 1211da177e4SLinus Torvalds 1221da177e4SLinus Torvalds /* Nope...box should reset with just CMD_RESET now */ 1231da177e4SLinus Torvalds gsc_writel(CMD_RESET, COMMAND_GLOBAL); 1241da177e4SLinus Torvalds 1251da177e4SLinus Torvalds /* Wait for RESET to lay us to rest. */ 1261da177e4SLinus Torvalds while (1) ; 1271da177e4SLinus Torvalds 1281da177e4SLinus Torvalds } 1291da177e4SLinus Torvalds 1301da177e4SLinus Torvalds void machine_halt(void) 1311da177e4SLinus Torvalds { 1321da177e4SLinus Torvalds /* 1331da177e4SLinus Torvalds ** The LED/ChassisCodes are updated by the led_halt() 1341da177e4SLinus Torvalds ** function, called by the reboot notifier chain. 1351da177e4SLinus Torvalds */ 1361da177e4SLinus Torvalds } 1371da177e4SLinus Torvalds 13885509c00SKyle McMartin void (*chassis_power_off)(void); 1391da177e4SLinus Torvalds 1401da177e4SLinus Torvalds /* 1411da177e4SLinus Torvalds * This routine is called from sys_reboot to actually turn off the 1421da177e4SLinus Torvalds * machine 1431da177e4SLinus Torvalds */ 1441da177e4SLinus Torvalds void machine_power_off(void) 1451da177e4SLinus Torvalds { 1461da177e4SLinus Torvalds /* If there is a registered power off handler, call it. */ 14785509c00SKyle McMartin if (chassis_power_off) 14885509c00SKyle McMartin chassis_power_off(); 1491da177e4SLinus Torvalds 1501da177e4SLinus Torvalds /* Put the soft power button back under hardware control. 1511da177e4SLinus Torvalds * If the user had already pressed the power button, the 1521da177e4SLinus Torvalds * following call will immediately power off. */ 1531da177e4SLinus Torvalds pdc_soft_power_button(0); 1541da177e4SLinus Torvalds 1551da177e4SLinus Torvalds pdc_chassis_send_status(PDC_CHASSIS_DIRECT_SHUTDOWN); 1561da177e4SLinus Torvalds 1571da177e4SLinus Torvalds /* It seems we have no way to power the system off via 1581da177e4SLinus Torvalds * software. The user has to press the button himself. */ 1591da177e4SLinus Torvalds 1601da177e4SLinus Torvalds printk(KERN_EMERG "System shut down completed.\n" 161ad361c98SJoe Perches "Please power this system off now."); 1621da177e4SLinus Torvalds } 1631da177e4SLinus Torvalds 16485509c00SKyle McMartin void (*pm_power_off)(void) = machine_power_off; 16585509c00SKyle McMartin EXPORT_SYMBOL(pm_power_off); 1661da177e4SLinus Torvalds 1671da177e4SLinus Torvalds /* 1681da177e4SLinus Torvalds * Free current thread data structures etc.. 1691da177e4SLinus Torvalds */ 1701da177e4SLinus Torvalds void exit_thread(void) 1711da177e4SLinus Torvalds { 1721da177e4SLinus Torvalds } 1731da177e4SLinus Torvalds 1741da177e4SLinus Torvalds void flush_thread(void) 1751da177e4SLinus Torvalds { 1761da177e4SLinus Torvalds /* Only needs to handle fpu stuff or perf monitors. 1771da177e4SLinus Torvalds ** REVISIT: several arches implement a "lazy fpu state". 1781da177e4SLinus Torvalds */ 1791da177e4SLinus Torvalds } 1801da177e4SLinus Torvalds 1811da177e4SLinus Torvalds void release_thread(struct task_struct *dead_task) 1821da177e4SLinus Torvalds { 1831da177e4SLinus Torvalds } 1841da177e4SLinus Torvalds 1851da177e4SLinus Torvalds /* 1861da177e4SLinus Torvalds * Fill in the FPU structure for a core dump. 1871da177e4SLinus Torvalds */ 1881da177e4SLinus Torvalds 1891da177e4SLinus Torvalds int dump_fpu (struct pt_regs * regs, elf_fpregset_t *r) 1901da177e4SLinus Torvalds { 1911da177e4SLinus Torvalds if (regs == NULL) 1921da177e4SLinus Torvalds return 0; 1931da177e4SLinus Torvalds 1941da177e4SLinus Torvalds memcpy(r, regs->fr, sizeof *r); 1951da177e4SLinus Torvalds return 1; 1961da177e4SLinus Torvalds } 1971da177e4SLinus Torvalds 1981da177e4SLinus Torvalds int dump_task_fpu (struct task_struct *tsk, elf_fpregset_t *r) 1991da177e4SLinus Torvalds { 2001da177e4SLinus Torvalds memcpy(r, tsk->thread.regs.fr, sizeof(*r)); 2011da177e4SLinus Torvalds return 1; 2021da177e4SLinus Torvalds } 2031da177e4SLinus Torvalds 2041da177e4SLinus Torvalds /* Note that "fork()" is implemented in terms of clone, with 2051da177e4SLinus Torvalds parameters (SIGCHLD, regs->gr[30], regs). */ 2061da177e4SLinus Torvalds int 2071da177e4SLinus Torvalds sys_clone(unsigned long clone_flags, unsigned long usp, 2081da177e4SLinus Torvalds struct pt_regs *regs) 2091da177e4SLinus Torvalds { 210b2450cc1SCarlos O'Donell /* Arugments from userspace are: 211b2450cc1SCarlos O'Donell r26 = Clone flags. 212b2450cc1SCarlos O'Donell r25 = Child stack. 213b2450cc1SCarlos O'Donell r24 = parent_tidptr. 214b2450cc1SCarlos O'Donell r23 = Is the TLS storage descriptor 215b2450cc1SCarlos O'Donell r22 = child_tidptr 216b2450cc1SCarlos O'Donell 217b2450cc1SCarlos O'Donell However, these last 3 args are only examined 218b2450cc1SCarlos O'Donell if the proper flags are set. */ 219803094f4SHelge Deller int __user *parent_tidptr = (int __user *)regs->gr[24]; 220803094f4SHelge Deller int __user *child_tidptr = (int __user *)regs->gr[22]; 2211da177e4SLinus Torvalds 2221da177e4SLinus Torvalds /* usp must be word aligned. This also prevents users from 2231da177e4SLinus Torvalds * passing in the value 1 (which is the signal for a special 2241da177e4SLinus Torvalds * return for a kernel thread) */ 2251da177e4SLinus Torvalds usp = ALIGN(usp, 4); 2261da177e4SLinus Torvalds 2271da177e4SLinus Torvalds /* A zero value for usp means use the current stack */ 2281da177e4SLinus Torvalds if (usp == 0) 2291da177e4SLinus Torvalds usp = regs->gr[30]; 2301da177e4SLinus Torvalds 231b2450cc1SCarlos O'Donell return do_fork(clone_flags, usp, regs, 0, parent_tidptr, child_tidptr); 2321da177e4SLinus Torvalds } 2331da177e4SLinus Torvalds 2341da177e4SLinus Torvalds int 2351da177e4SLinus Torvalds sys_vfork(struct pt_regs *regs) 2361da177e4SLinus Torvalds { 2371da177e4SLinus Torvalds return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->gr[30], regs, 0, NULL, NULL); 2381da177e4SLinus Torvalds } 2391da177e4SLinus Torvalds 2401da177e4SLinus Torvalds int 2416f2c55b8SAlexey Dobriyan copy_thread(unsigned long clone_flags, unsigned long usp, 242*a44e060fSAl Viro unsigned long arg, 2431da177e4SLinus Torvalds struct task_struct *p, struct pt_regs *pregs) 2441da177e4SLinus Torvalds { 2451da177e4SLinus Torvalds struct pt_regs * cregs = &(p->thread.regs); 24640f1f0deSAl Viro void *stack = task_stack_page(p); 2471da177e4SLinus Torvalds 2481da177e4SLinus Torvalds /* We have to use void * instead of a function pointer, because 2491da177e4SLinus Torvalds * function pointers aren't a pointer to the function on 64-bit. 2501da177e4SLinus Torvalds * Make them const so the compiler knows they live in .text */ 2511da177e4SLinus Torvalds extern void * const ret_from_kernel_thread; 2521da177e4SLinus Torvalds extern void * const child_return; 2531da177e4SLinus Torvalds #ifdef CONFIG_HPUX 2541da177e4SLinus Torvalds extern void * const hpux_child_return; 2551da177e4SLinus Torvalds #endif 2561da177e4SLinus Torvalds 257*a44e060fSAl Viro if (unlikely((p->flags & PF_KTHREAD) && usp != 0)) { 258*a44e060fSAl Viro memset(cregs, 0, sizeof(struct pt_regs)); 2591da177e4SLinus Torvalds /* kernel thread */ 26040f1f0deSAl Viro cregs->ksp = (unsigned long)stack + THREAD_SZ_ALGN; 2611da177e4SLinus Torvalds /* Must exit via ret_from_kernel_thread in order 2621da177e4SLinus Torvalds * to call schedule_tail() 2631da177e4SLinus Torvalds */ 2641da177e4SLinus Torvalds cregs->kpc = (unsigned long) &ret_from_kernel_thread; 2651da177e4SLinus Torvalds /* 2661da177e4SLinus Torvalds * Copy function and argument to be called from 2671da177e4SLinus Torvalds * ret_from_kernel_thread. 2681da177e4SLinus Torvalds */ 269a8f44e38SHelge Deller #ifdef CONFIG_64BIT 270*a44e060fSAl Viro cregs->gr[27] = ((unsigned long *)usp)[3]; 271*a44e060fSAl Viro cregs->gr[26] = ((unsigned long *)usp)[2]; 272*a44e060fSAl Viro #else 273*a44e060fSAl Viro cregs->gr[26] = usp; 2741da177e4SLinus Torvalds #endif 275*a44e060fSAl Viro cregs->gr[25] = arg; 2761da177e4SLinus Torvalds } else { 2771da177e4SLinus Torvalds /* user thread */ 2781da177e4SLinus Torvalds /* 2791da177e4SLinus Torvalds * Note that the fork wrappers are responsible 2801da177e4SLinus Torvalds * for setting gr[21]. 2811da177e4SLinus Torvalds */ 2821da177e4SLinus Torvalds 283*a44e060fSAl Viro *cregs = *pregs; 284*a44e060fSAl Viro 285*a44e060fSAl Viro /* Set the return value for the child. Note that this is not 286*a44e060fSAl Viro actually restored by the syscall exit path, but we put it 287*a44e060fSAl Viro here for consistency in case of signals. */ 288*a44e060fSAl Viro cregs->gr[28] = 0; /* child */ 289*a44e060fSAl Viro 2901da177e4SLinus Torvalds /* Use same stack depth as parent */ 29140f1f0deSAl Viro cregs->ksp = (unsigned long)stack 2921da177e4SLinus Torvalds + (pregs->gr[21] & (THREAD_SIZE - 1)); 2931da177e4SLinus Torvalds cregs->gr[30] = usp; 2945b24c421SJiri Kosina if (personality(p->personality) == PER_HPUX) { 2951da177e4SLinus Torvalds #ifdef CONFIG_HPUX 2961da177e4SLinus Torvalds cregs->kpc = (unsigned long) &hpux_child_return; 2971da177e4SLinus Torvalds #else 2981da177e4SLinus Torvalds BUG(); 2991da177e4SLinus Torvalds #endif 3001da177e4SLinus Torvalds } else { 3011da177e4SLinus Torvalds cregs->kpc = (unsigned long) &child_return; 3021da177e4SLinus Torvalds } 303b2450cc1SCarlos O'Donell /* Setup thread TLS area from the 4th parameter in clone */ 304b2450cc1SCarlos O'Donell if (clone_flags & CLONE_SETTLS) 305b2450cc1SCarlos O'Donell cregs->cr27 = pregs->gr[23]; 306b2450cc1SCarlos O'Donell 3071da177e4SLinus Torvalds } 3081da177e4SLinus Torvalds 3091da177e4SLinus Torvalds return 0; 3101da177e4SLinus Torvalds } 3111da177e4SLinus Torvalds 3121da177e4SLinus Torvalds unsigned long thread_saved_pc(struct task_struct *t) 3131da177e4SLinus Torvalds { 3141da177e4SLinus Torvalds return t->thread.regs.kpc; 3151da177e4SLinus Torvalds } 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvalds /* 3181da177e4SLinus Torvalds * sys_execve() executes a new program. 3191da177e4SLinus Torvalds */ 3201da177e4SLinus Torvalds 3211da177e4SLinus Torvalds asmlinkage int sys_execve(struct pt_regs *regs) 3221da177e4SLinus Torvalds { 3231da177e4SLinus Torvalds int error; 32491a27b2aSJeff Layton struct filename *filename; 3251da177e4SLinus Torvalds 3261da177e4SLinus Torvalds filename = getname((const char __user *) regs->gr[26]); 3271da177e4SLinus Torvalds error = PTR_ERR(filename); 3281da177e4SLinus Torvalds if (IS_ERR(filename)) 3291da177e4SLinus Torvalds goto out; 33091a27b2aSJeff Layton error = do_execve(filename->name, 331d7627467SDavid Howells (const char __user *const __user *) regs->gr[25], 332d7627467SDavid Howells (const char __user *const __user *) regs->gr[24], 333d7627467SDavid Howells regs); 3341da177e4SLinus Torvalds putname(filename); 3351da177e4SLinus Torvalds out: 3361da177e4SLinus Torvalds 3371da177e4SLinus Torvalds return error; 3381da177e4SLinus Torvalds } 3391da177e4SLinus Torvalds 340d7627467SDavid Howells extern int __execve(const char *filename, 341d7627467SDavid Howells const char *const argv[], 342d7627467SDavid Howells const char *const envp[], struct task_struct *task); 343d7627467SDavid Howells int kernel_execve(const char *filename, 344d7627467SDavid Howells const char *const argv[], 345d7627467SDavid Howells const char *const envp[]) 3463db03b4aSArnd Bergmann { 3473db03b4aSArnd Bergmann return __execve(filename, argv, envp, current); 3483db03b4aSArnd Bergmann } 3493db03b4aSArnd Bergmann 3501da177e4SLinus Torvalds unsigned long 3511da177e4SLinus Torvalds get_wchan(struct task_struct *p) 3521da177e4SLinus Torvalds { 3531da177e4SLinus Torvalds struct unwind_frame_info info; 3541da177e4SLinus Torvalds unsigned long ip; 3551da177e4SLinus Torvalds int count = 0; 356cc650a7aSKyle McMartin 357cc650a7aSKyle McMartin if (!p || p == current || p->state == TASK_RUNNING) 358cc650a7aSKyle McMartin return 0; 359cc650a7aSKyle McMartin 3601da177e4SLinus Torvalds /* 3611da177e4SLinus Torvalds * These bracket the sleeping functions.. 3621da177e4SLinus Torvalds */ 3631da177e4SLinus Torvalds 3641da177e4SLinus Torvalds unwind_frame_init_from_blocked_task(&info, p); 3651da177e4SLinus Torvalds do { 3661da177e4SLinus Torvalds if (unwind_once(&info) < 0) 3671da177e4SLinus Torvalds return 0; 3681da177e4SLinus Torvalds ip = info.ip; 3691da177e4SLinus Torvalds if (!in_sched_functions(ip)) 3701da177e4SLinus Torvalds return ip; 3711da177e4SLinus Torvalds } while (count++ < 16); 3721da177e4SLinus Torvalds return 0; 3731da177e4SLinus Torvalds } 374b609308eSKyle McMartin 375b609308eSKyle McMartin #ifdef CONFIG_64BIT 376b609308eSKyle McMartin void *dereference_function_descriptor(void *ptr) 377b609308eSKyle McMartin { 378b609308eSKyle McMartin Elf64_Fdesc *desc = ptr; 379b609308eSKyle McMartin void *p; 380b609308eSKyle McMartin 381b609308eSKyle McMartin if (!probe_kernel_address(&desc->addr, p)) 382b609308eSKyle McMartin ptr = p; 383b609308eSKyle McMartin return ptr; 384b609308eSKyle McMartin } 385b609308eSKyle McMartin #endif 386