mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
c00c310eac
In particular, remove the bit in the LICENCE file about contacting Red Hat for alternative arrangements. Their errant IS department broke that arrangement a long time ago -- the policy of collecting copyright assignments from contributors came to an end when the plug was pulled on the servers hosting the project, without notice or reason. We do still dual-license it for use with eCos, with the GPL+exception licence approved by the FSF as being GPL-compatible. It's just that nobody has the right to license it differently. Signed-off-by: David Woodhouse <dwmw2@infradead.org>
60 lines
1.7 KiB
C
60 lines
1.7 KiB
C
/*
|
|
* JFFS2 -- Journalling Flash File System, Version 2.
|
|
*
|
|
* Copyright © 2001-2007 Red Hat, Inc.
|
|
*
|
|
* Created by David Woodhouse <dwmw2@infradead.org>
|
|
*
|
|
* For licensing information, see the file 'LICENCE' in this directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef _JFFS2_FS_I
|
|
#define _JFFS2_FS_I
|
|
|
|
#include <linux/version.h>
|
|
#include <linux/rbtree.h>
|
|
#include <linux/posix_acl.h>
|
|
#include <asm/semaphore.h>
|
|
|
|
struct jffs2_inode_info {
|
|
/* We need an internal mutex similar to inode->i_mutex.
|
|
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_mutex
|
|
for the inode(s) which are already locked */
|
|
struct semaphore sem;
|
|
|
|
/* The highest (datanode) version number used for this ino */
|
|
uint32_t highest_version;
|
|
|
|
/* List of data fragments which make up the file */
|
|
struct rb_root fragtree;
|
|
|
|
/* 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;
|
|
|
|
/* The target path if this is the inode of a symlink */
|
|
unsigned char *target;
|
|
|
|
/* Some stuff we just have to keep in-core at all times, for each inode. */
|
|
struct jffs2_inode_cache *inocache;
|
|
|
|
uint16_t flags;
|
|
uint8_t usercompr;
|
|
struct inode vfs_inode;
|
|
#ifdef CONFIG_JFFS2_FS_POSIX_ACL
|
|
struct posix_acl *i_acl_access;
|
|
struct posix_acl *i_acl_default;
|
|
#endif
|
|
};
|
|
|
|
#endif /* _JFFS2_FS_I */
|