ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:21.92 GB of 70.42 GB (31.13%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ usr/ src/ linux-headers-3.0.0-14/ arch/ frv/ include/ asm/ - drwxr-xr-x

Directory:
Viewing file:     irqflags.h (3.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* FR-V interrupt handling
 *
 * Copyright (C) 2010 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public Licence
 * as published by the Free Software Foundation; either version
 * 2 of the Licence, or (at your option) any later version.
 */

#ifndef _ASM_IRQFLAGS_H
#define _ASM_IRQFLAGS_H

/*
 * interrupt flag manipulation
 * - use virtual interrupt management since touching the PSR is slow
 *   - ICC2.Z: T if interrupts virtually disabled
 *   - ICC2.C: F if interrupts really disabled
 * - if Z==1 upon interrupt:
 *   - C is set to 0
 *   - interrupts are really disabled
 *   - entry.S returns immediately
 * - uses TIHI (TRAP if Z==0 && C==0) #2 to really reenable interrupts
 *   - if taken, the trap:
 *     - sets ICC2.C
 *     - enables interrupts
 */
static inline void arch_local_irq_disable(void)
{
    /* set Z flag, but don't change the C flag */
    asm volatile("    andcc    gr0,gr0,gr0,icc2    \n"
             :
             :
             : "memory", "icc2"
             );
}

static inline void arch_local_irq_enable(void)
{
    /* clear Z flag and then test the C flag */
    asm volatile("  oricc    gr0,#1,gr0,icc2        \n"
             "    tihi    icc2,gr0,#2        \n"
             :
             :
             : "memory", "icc2"
             );
}

static inline unsigned long arch_local_save_flags(void)
{
    unsigned long flags;

    asm volatile("movsg ccr,%0"
             : "=r"(flags)
             :
             : "memory");

    /* shift ICC2.Z to bit 0 */
    flags >>= 26;

    /* make flags 1 if interrupts disabled, 0 otherwise */
    return flags & 1UL;

}

static inline unsigned long arch_local_irq_save(void)
{
    unsigned long flags = arch_local_save_flags();
    arch_local_irq_disable();
    return flags;
}

static inline void arch_local_irq_restore(unsigned long flags)
{
    /* load the Z flag by turning 1 if disabled into 0 if disabled
     * and thus setting the Z flag but not the C flag */
    asm volatile("  xoricc    %0,#1,gr0,icc2        \n"
             /* then trap if Z=0 and C=0 */
             "    tihi    icc2,gr0,#2        \n"
             :
             : "r"(flags)
             : "memory", "icc2"
             );

}

static inline bool arch_irqs_disabled_flags(unsigned long flags)
{
    return flags;
}

static inline bool arch_irqs_disabled(void)
{
    return arch_irqs_disabled_flags(arch_local_save_flags());
}

/*
 * real interrupt flag manipulation
 */
#define __arch_local_irq_disable()            \
do {                            \
    unsigned long psr;                \
    asm volatile("    movsg    psr,%0        \n"    \
             "    andi    %0,%2,%0    \n"    \
             "    ori    %0,%1,%0    \n"    \
             "    movgs    %0,psr        \n"    \
             : "=r"(psr)            \
             : "i" (PSR_PIL_14), "i" (~PSR_PIL)    \
             : "memory");            \
} while (0)

#define __arch_local_irq_enable()            \
do {                            \
    unsigned long psr;                \
    asm volatile("    movsg    psr,%0        \n"    \
             "    andi    %0,%1,%0    \n"    \
             "    movgs    %0,psr        \n"    \
             : "=r"(psr)            \
             : "i" (~PSR_PIL)            \
             : "memory");            \
} while (0)

#define __arch_local_save_flags(flags)        \
do {                        \
    typecheck(unsigned long, flags);    \
    asm("movsg psr,%0"            \
        : "=r"(flags)            \
        :                    \
        : "memory");            \
} while (0)

#define    __arch_local_irq_save(flags)            \
do {                            \
    unsigned long npsr;                \
    typecheck(unsigned long, flags);        \
    asm volatile("    movsg    psr,%0        \n"    \
             "    andi    %0,%3,%1    \n"    \
             "    ori    %1,%2,%1    \n"    \
             "    movgs    %1,psr        \n"    \
             : "=r"(flags), "=r"(npsr)        \
             : "i" (PSR_PIL_14), "i" (~PSR_PIL)    \
             : "memory");            \
} while (0)

#define    __arch_local_irq_restore(flags)            \
do {                            \
    typecheck(unsigned long, flags);        \
    asm volatile("    movgs    %0,psr        \n"    \
             :                    \
             : "r" (flags)            \
             : "memory");            \
} while (0)

#define __arch_irqs_disabled()            \
    ((__get_PSR() & PSR_PIL) >= PSR_PIL_14)

#endif /* _ASM_IRQFLAGS_H */
Command:
Quick Commands:
Upload:
[Read-Only] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [Read-Only]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.5597 seconds