!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.4.18 (Ubuntu). PHP/7.0.33-0ubuntu0.16.04.16 

uname -a: Linux digifus 3.13.0-57-generic #95-Ubuntu SMP Fri Jun 19 09:28:15 UTC 2015 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-headers-4.4.0-210/arch/s390/include/asm/   drwxr-xr-x
Free 9.59 GB of 29.4 GB (32.62%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mmu.h (1.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef __MMU_H
#define __MMU_H

#include <linux/cpumask.h>
#include <linux/errno.h>

typedef struct {
    spinlock_t lock;
    cpumask_t cpu_attach_mask;
    atomic_t attach_count;
    unsigned int flush_mm;
    spinlock_t list_lock;
    struct list_head pgtable_list;
    struct list_head gmap_list;
    unsigned long asce;
    unsigned long asce_limit;
    unsigned long vdso_base;
    /* The mmu context allocates 4K page tables. */
    unsigned int alloc_pgste:1;
    /* The mmu context uses extended page tables. */
    unsigned int has_pgste:1;
    /* The mmu context uses storage keys. */
    unsigned int use_skey:1;
} mm_context_t;

#define INIT_MM_CONTEXT(name)                              \
    .context.lock = __SPIN_LOCK_UNLOCKED(name.context.lock),          \
    .context.list_lock    = __SPIN_LOCK_UNLOCKED(name.context.list_lock), \
    .context.pgtable_list = LIST_HEAD_INIT(name.context.pgtable_list),    \
    .context.gmap_list = LIST_HEAD_INIT(name.context.gmap_list),

static inline int tprot(unsigned long addr)
{
    int rc = -EFAULT;

    asm volatile(
        "    tprot    0(%1),0\n"
        "0:    ipm    %0\n"
        "    srl    %0,28\n"
        "1:\n"
        EX_TABLE(0b,1b)
        : "+d" (rc) : "a" (addr) : "cc");
    return rc;
}

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.006 ]--