X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyaffsfs.h;h=fc9bb9eb158897eec4538e835d8a650844b2fe10;hp=7cb845371f18b257ddeaaff3d29844a3eaca2c70;hb=bfb36fe45ceea5a7e8347b24a575ab627e60df94;hpb=3e61039bf6fc5a2f8af6a5cdd29e30b3fa10b4f5 diff --git a/direct/yaffsfs.h b/direct/yaffsfs.h index 7cb8453..fc9bb9e 100644 --- a/direct/yaffsfs.h +++ b/direct/yaffsfs.h @@ -1,7 +1,7 @@ /* * YAFFS: Yet another Flash File System . A NAND-flash specific file system. * - * Copyright (C) 2002-2007 Aleph One Ltd. + * Copyright (C) 2002-2010 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Charles Manning @@ -110,10 +110,22 @@ #define ENOSPC 28 #endif +#ifndef ERANGE +#define ERANGE 34 +#endif + +#ifndef ENODATA +#define ENODATA 61 +#endif + #ifndef ENOTEMPTY #define ENOTEMPTY 39 #endif +#ifndef ENAMETOOLONG +#define ENAMETOOLONG 36 +#endif + #ifndef ENOMEM #define ENOMEM 12 #endif @@ -161,6 +173,14 @@ #define S_IEXEC 0000100 #endif +#ifndef XATTR_CREATE +#define XATTR_CREATE 1 +#endif + +#ifndef XATTR_REPLACE +#define XATTR_REPLACE 2 +#endif + #ifndef R_OK #define R_OK 4 #define W_OK 2 @@ -242,6 +262,23 @@ int yaffs_stat(const YCHAR *path, struct yaffs_stat *buf) ; int yaffs_lstat(const YCHAR *path, struct yaffs_stat *buf) ; int yaffs_fstat(int fd, struct yaffs_stat *buf) ; +int yaffs_setxattr(const char *path, const char *name, const void *data, int size, int flags); +int yaffs_lsetxattr(const char *path, const char *name, const void *data, int size, int flags); +int yaffs_fsetxattr(int fd, const char *name, const void *data, int size, int flags); + +int yaffs_getxattr(const char *path, const char *name, void *data, int size); +int yaffs_lgetxattr(const char *path, const char *name, void *data, int size); +int yaffs_fgetxattr(int fd, const char *name, void *data, int size); + +int yaffs_removexattr(const char *path, const char *name); +int yaffs_lremovexattr(const char *path, const char *name); +int yaffs_fremovexattr(int fd, const char *name); + +int yaffs_listxattr(const char *path, char *list, int size); +int yaffs_llistxattr(const char *path, char *list, int size); +int yaffs_flistxattr(int fd, char *list, int size); + + #ifdef CONFIG_YAFFS_WINCE int yaffs_set_wince_times(int fd, const unsigned *wctime, const unsigned *watime, const unsigned *wmtime); @@ -261,7 +298,11 @@ void yaffs_rewinddir(yaffs_DIR *dirp) ; int yaffs_closedir(yaffs_DIR *dirp) ; int yaffs_mount(const YCHAR *path) ; +int yaffs_mount2(const YCHAR *path, int readOnly); int yaffs_unmount(const YCHAR *path) ; +int yaffs_unmount2(const YCHAR *path, int force); +int yaffs_remount(const YCHAR *path, int force, int readOnly); + int yaffs_sync(const YCHAR *path) ; @@ -277,7 +318,7 @@ loff_t yaffs_totalspace(const YCHAR *path); int yaffs_inodecount(const YCHAR *path); -void yaffs_initialise(yaffsfs_DeviceConfiguration *configList); + int yaffs_StartUp(void);