!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/include/linux/   drwxr-xr-x
Free 318.36 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     jffs2_fs_i.h (1.85 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* $Id: jffs2_fs_i.h,v 1.8 2001/04/18 13:05:28 dwmw2 Exp $ */

#ifndef _JFFS2_FS_I
#define _JFFS2_FS_I

/* Include the pipe_inode_info at the beginning so that we can still
   use the storage space in the inode when we have a pipe inode.
   This sucks.
*/

#undef THISSUCKS /* Only for 2.2 */
#ifdef THISSUCKS
#include <linux/pipe_fs_i.h>
#endif

struct jffs2_inode_info {
#ifdef THISSUCKS
        struct pipe_inode_info pipecrap;
#endif
    /* We need an internal semaphore similar to inode->i_sem.
       Unfortunately, we can't used the existing one, because
       either the GC would deadlock, or we'd have to release it
       before letting GC proceed. Or we'd have to put ugliness
       into the GC code so it didn't attempt to obtain the i_sem
       for the inode(s) which are already locked */
    struct semaphore sem;

    /* The highest (datanode) version number used for this ino */
    __u32 highest_version;

    /* List of data fragments which make up the file */
    struct jffs2_node_frag *fraglist;

    /* There may be one datanode which isn't referenced by any of the
       above fragments, if it contains a metadata update but no actual
       data - or if this is a directory inode */
    /* This also holds the _only_ dnode for symlinks/device nodes, 
       etc. */
    struct jffs2_full_dnode *metadata;

    /* Directory entries */
    struct jffs2_full_dirent *dents;

    /* Some stuff we just have to keep in-core at all times, for each inode. */
    struct jffs2_inode_cache *inocache;

    /* Keep a pointer to the last physical node in the list. We don't 
       use the doubly-linked lists because we don't want to increase
       the memory usage that much. This is simpler */
    //    struct jffs2_raw_node_ref *lastnode;
    __u16 flags;
    __u8 usercompr;
};

#ifdef JFFS2_OUT_OF_KERNEL
#define JFFS2_INODE_INFO(i) ((struct jffs2_inode_info *) &(i)->u)
#else
#define JFFS2_INODE_INFO(i) (&i->u.jffs2_i)
#endif

#endif /* _JFFS2_FS_I */


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0045 ]--