Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Typedefs | Functions | Variables
hfsplus_fs.h File Reference
#include <linux/fs.h>
#include <linux/mutex.h>
#include <linux/buffer_head.h>
#include <linux/blkdev.h>
#include "hfsplus_raw.h"

Go to the source code of this file.

Data Structures

struct  hfs_btree
 
struct  hfs_bnode
 
struct  hfsplus_sb_info
 
struct  hfsplus_inode_info
 
struct  hfs_find_data
 
struct  hfsplus_readdir_data
 

Macros

#define DBG_BNODE_REFS   0x00000001
 
#define DBG_BNODE_MOD   0x00000002
 
#define DBG_CAT_MOD   0x00000004
 
#define DBG_INODE   0x00000008
 
#define DBG_SUPER   0x00000010
 
#define DBG_EXTENT   0x00000020
 
#define DBG_BITMAP   0x00000040
 
#define DBG_MASK   (0)
 
#define dprint(flg, fmt, args...)
 
#define HFSPLUS_DEF_CR_TYPE   0x3F3F3F3F /* '????' */
 
#define HFSPLUS_TYPE_DATA   0x00
 
#define HFSPLUS_TYPE_RSRC   0xFF
 
#define NODE_HASH_SIZE   256
 
#define HFS_BNODE_LOCK   0
 
#define HFS_BNODE_ERROR   1
 
#define HFS_BNODE_NEW   2
 
#define HFS_BNODE_DIRTY   3
 
#define HFS_BNODE_DELETED   4
 
#define HFSPLUS_SB_WRITEBACKUP   0
 
#define HFSPLUS_SB_NODECOMPOSE   1
 
#define HFSPLUS_SB_FORCE   2
 
#define HFSPLUS_SB_HFSX   3
 
#define HFSPLUS_SB_CASEFOLD   4
 
#define HFSPLUS_SB_NOBARRIER   5
 
#define HFSPLUS_EXT_DIRTY   0x0001
 
#define HFSPLUS_EXT_NEW   0x0002
 
#define HFSPLUS_I_RSRC   0 /* represents a resource fork */
 
#define HFSPLUS_I_CAT_DIRTY   1 /* has changes in the catalog tree */
 
#define HFSPLUS_I_EXT_DIRTY   2 /* has changes in the extent tree */
 
#define HFSPLUS_I_ALLOC_DIRTY   3 /* has changes in the allocation file */
 
#define HFSPLUS_IS_RSRC(inode)   test_bit(HFSPLUS_I_RSRC, &HFSPLUS_I(inode)->flags)
 
#define hfs_btree_open   hfsplus_btree_open
 
#define hfs_btree_close   hfsplus_btree_close
 
#define hfs_btree_write   hfsplus_btree_write
 
#define hfs_bmap_alloc   hfsplus_bmap_alloc
 
#define hfs_bmap_free   hfsplus_bmap_free
 
#define hfs_bnode_read   hfsplus_bnode_read
 
#define hfs_bnode_read_u16   hfsplus_bnode_read_u16
 
#define hfs_bnode_read_u8   hfsplus_bnode_read_u8
 
#define hfs_bnode_read_key   hfsplus_bnode_read_key
 
#define hfs_bnode_write   hfsplus_bnode_write
 
#define hfs_bnode_write_u16   hfsplus_bnode_write_u16
 
#define hfs_bnode_clear   hfsplus_bnode_clear
 
#define hfs_bnode_copy   hfsplus_bnode_copy
 
#define hfs_bnode_move   hfsplus_bnode_move
 
#define hfs_bnode_dump   hfsplus_bnode_dump
 
#define hfs_bnode_unlink   hfsplus_bnode_unlink
 
#define hfs_bnode_findhash   hfsplus_bnode_findhash
 
#define hfs_bnode_find   hfsplus_bnode_find
 
#define hfs_bnode_unhash   hfsplus_bnode_unhash
 
#define hfs_bnode_free   hfsplus_bnode_free
 
#define hfs_bnode_create   hfsplus_bnode_create
 
#define hfs_bnode_get   hfsplus_bnode_get
 
#define hfs_bnode_put   hfsplus_bnode_put
 
#define hfs_brec_lenoff   hfsplus_brec_lenoff
 
#define hfs_brec_keylen   hfsplus_brec_keylen
 
#define hfs_brec_insert   hfsplus_brec_insert
 
#define hfs_brec_remove   hfsplus_brec_remove
 
#define hfs_find_init   hfsplus_find_init
 
#define hfs_find_exit   hfsplus_find_exit
 
#define __hfs_brec_find   __hplusfs_brec_find
 
#define hfs_brec_find   hfsplus_brec_find
 
#define hfs_brec_read   hfsplus_brec_read
 
#define hfs_brec_goto   hfsplus_brec_goto
 
#define hfs_part_find   hfsplus_part_find
 
#define HFSPLUS_IOC_EXT2_GETFLAGS   FS_IOC_GETFLAGS
 
#define HFSPLUS_IOC_EXT2_SETFLAGS   FS_IOC_SETFLAGS
 
#define HFSPLUS_IOC_BLESS   _IO('h', 0x80)
 
#define __hfsp_mt2ut(t)   (be32_to_cpu(t) - 2082844800U)
 
#define __hfsp_ut2mt(t)   (cpu_to_be32(t + 2082844800U))
 
#define hfsp_mt2ut(t)   (struct timespec){ .tv_sec = __hfsp_mt2ut(t) }
 
#define hfsp_ut2mt(t)   __hfsp_ut2mt((t).tv_sec)
 
#define hfsp_now2mt()   __hfsp_ut2mt(get_seconds())
 

Typedefs

typedef int(* btree_keycmp )(const hfsplus_btree_key *, const hfsplus_btree_key *)
 

Functions

int hfsplus_block_allocate (struct super_block *, u32, u32, u32 *)
 
int hfsplus_block_free (struct super_block *, u32, u32)
 
struct hfs_btreehfs_btree_open (struct super_block *, u32)
 
void hfs_btree_close (struct hfs_btree *)
 
void hfs_btree_write (struct hfs_btree *)
 
struct hfs_bnodehfs_bmap_alloc (struct hfs_btree *)
 
void hfs_bmap_free (struct hfs_bnode *)
 
void hfs_bnode_read (struct hfs_bnode *, void *, int, int)
 
u16 hfs_bnode_read_u16 (struct hfs_bnode *, int)
 
u8 hfs_bnode_read_u8 (struct hfs_bnode *, int)
 
void hfs_bnode_read_key (struct hfs_bnode *, void *, int)
 
void hfs_bnode_write (struct hfs_bnode *, void *, int, int)
 
void hfs_bnode_write_u16 (struct hfs_bnode *, int, u16)
 
void hfs_bnode_clear (struct hfs_bnode *, int, int)
 
void hfs_bnode_copy (struct hfs_bnode *, int, struct hfs_bnode *, int, int)
 
void hfs_bnode_move (struct hfs_bnode *, int, int, int)
 
void hfs_bnode_dump (struct hfs_bnode *)
 
void hfs_bnode_unlink (struct hfs_bnode *)
 
struct hfs_bnodehfs_bnode_findhash (struct hfs_btree *, u32)
 
struct hfs_bnodehfs_bnode_find (struct hfs_btree *, u32)
 
void hfs_bnode_unhash (struct hfs_bnode *)
 
void hfs_bnode_free (struct hfs_bnode *)
 
struct hfs_bnodehfs_bnode_create (struct hfs_btree *, u32)
 
void hfs_bnode_get (struct hfs_bnode *)
 
void hfs_bnode_put (struct hfs_bnode *)
 
u16 hfs_brec_lenoff (struct hfs_bnode *, u16, u16 *)
 
u16 hfs_brec_keylen (struct hfs_bnode *, u16)
 
int hfs_brec_insert (struct hfs_find_data *, void *, int)
 
int hfs_brec_remove (struct hfs_find_data *)
 
int hfs_find_init (struct hfs_btree *, struct hfs_find_data *)
 
void hfs_find_exit (struct hfs_find_data *)
 
int __hfs_brec_find (struct hfs_bnode *, struct hfs_find_data *)
 
int hfs_brec_find (struct hfs_find_data *)
 
int hfs_brec_read (struct hfs_find_data *, void *, int)
 
int hfs_brec_goto (struct hfs_find_data *, int)
 
int hfsplus_cat_case_cmp_key (const hfsplus_btree_key *, const hfsplus_btree_key *)
 
int hfsplus_cat_bin_cmp_key (const hfsplus_btree_key *, const hfsplus_btree_key *)
 
void hfsplus_cat_build_key (struct super_block *sb, hfsplus_btree_key *, u32, struct qstr *)
 
int hfsplus_find_cat (struct super_block *, u32, struct hfs_find_data *)
 
int hfsplus_create_cat (u32, struct inode *, struct qstr *, struct inode *)
 
int hfsplus_delete_cat (u32, struct inode *, struct qstr *)
 
int hfsplus_rename_cat (u32, struct inode *, struct qstr *, struct inode *, struct qstr *)
 
void hfsplus_cat_set_perms (struct inode *inode, struct hfsplus_perm *perms)
 
int hfsplus_ext_cmp_key (const hfsplus_btree_key *, const hfsplus_btree_key *)
 
int hfsplus_ext_write_extent (struct inode *)
 
int hfsplus_get_block (struct inode *, sector_t, struct buffer_head *, int)
 
int hfsplus_free_fork (struct super_block *, u32, struct hfsplus_fork_raw *, int)
 
int hfsplus_file_extend (struct inode *)
 
void hfsplus_file_truncate (struct inode *)
 
void hfsplus_inode_read_fork (struct inode *, struct hfsplus_fork_raw *)
 
void hfsplus_inode_write_fork (struct inode *, struct hfsplus_fork_raw *)
 
int hfsplus_cat_read_inode (struct inode *, struct hfs_find_data *)
 
int hfsplus_cat_write_inode (struct inode *)
 
struct inodehfsplus_new_inode (struct super_block *, umode_t)
 
void hfsplus_delete_inode (struct inode *)
 
int hfsplus_file_fsync (struct file *file, loff_t start, loff_t end, int datasync)
 
long hfsplus_ioctl (struct file *filp, unsigned int cmd, unsigned long arg)
 
int hfsplus_setxattr (struct dentry *dentry, const char *name, const void *value, size_t size, int flags)
 
ssize_t hfsplus_getxattr (struct dentry *dentry, const char *name, void *value, size_t size)
 
ssize_t hfsplus_listxattr (struct dentry *dentry, char *buffer, size_t size)
 
int hfsplus_parse_options (char *, struct hfsplus_sb_info *)
 
int hfsplus_parse_options_remount (char *input, int *force)
 
void hfsplus_fill_defaults (struct hfsplus_sb_info *)
 
int hfsplus_show_options (struct seq_file *, struct dentry *)
 
struct inodehfsplus_iget (struct super_block *, unsigned long)
 
void hfsplus_mark_mdb_dirty (struct super_block *sb)
 
int hfsplus_strcasecmp (const struct hfsplus_unistr *, const struct hfsplus_unistr *)
 
int hfsplus_strcmp (const struct hfsplus_unistr *, const struct hfsplus_unistr *)
 
int hfsplus_uni2asc (struct super_block *, const struct hfsplus_unistr *, char *, int *)
 
int hfsplus_asc2uni (struct super_block *, struct hfsplus_unistr *, const char *, int)
 
int hfsplus_hash_dentry (const struct dentry *dentry, const struct inode *inode, struct qstr *str)
 
int hfsplus_compare_dentry (const struct dentry *parent, const struct inode *pinode, const struct dentry *dentry, const struct inode *inode, unsigned int len, const char *str, const struct qstr *name)
 
int hfsplus_read_wrapper (struct super_block *)
 
int hfs_part_find (struct super_block *, sector_t *, sector_t *)
 
int hfsplus_submit_bio (struct super_block *sb, sector_t sector, void *buf, void **data, int rw)
 

Variables

struct inode_operations hfsplus_dir_inode_operations
 
struct file_operations hfsplus_dir_operations
 
struct address_space_operations hfsplus_aops
 
struct address_space_operations hfsplus_btree_aops
 
struct dentry_operations hfsplus_dentry_operations
 
u16 hfsplus_case_fold_table []
 
u16 hfsplus_decompose_table []
 
u16 hfsplus_compose_table []
 

Macro Definition Documentation

#define __hfs_brec_find   __hplusfs_brec_find

Definition at line 305 of file hfsplus_fs.h.

#define __hfsp_mt2ut (   t)    (be32_to_cpu(t) - 2082844800U)

Definition at line 464 of file hfsplus_fs.h.

#define __hfsp_ut2mt (   t)    (cpu_to_be32(t + 2082844800U))

Definition at line 465 of file hfsplus_fs.h.

#define DBG_BITMAP   0x00000040

Definition at line 25 of file hfsplus_fs.h.

#define DBG_BNODE_MOD   0x00000002

Definition at line 20 of file hfsplus_fs.h.

#define DBG_BNODE_REFS   0x00000001

Definition at line 19 of file hfsplus_fs.h.

#define DBG_CAT_MOD   0x00000004

Definition at line 21 of file hfsplus_fs.h.

#define DBG_EXTENT   0x00000020

Definition at line 24 of file hfsplus_fs.h.

#define DBG_INODE   0x00000008

Definition at line 22 of file hfsplus_fs.h.

#define DBG_MASK   (0)

Definition at line 32 of file hfsplus_fs.h.

#define DBG_SUPER   0x00000010

Definition at line 23 of file hfsplus_fs.h.

#define dprint (   flg,
  fmt,
  args... 
)
Value:
if (flg & DBG_MASK) \
printk(fmt , ## args)

Definition at line 34 of file hfsplus_fs.h.

#define hfs_bmap_alloc   hfsplus_bmap_alloc

Definition at line 279 of file hfsplus_fs.h.

#define hfs_bmap_free   hfsplus_bmap_free

Definition at line 280 of file hfsplus_fs.h.

#define hfs_bnode_clear   hfsplus_bnode_clear

Definition at line 287 of file hfsplus_fs.h.

#define hfs_bnode_copy   hfsplus_bnode_copy

Definition at line 288 of file hfsplus_fs.h.

#define hfs_bnode_create   hfsplus_bnode_create

Definition at line 296 of file hfsplus_fs.h.

#define HFS_BNODE_DELETED   4

Definition at line 104 of file hfsplus_fs.h.

#define HFS_BNODE_DIRTY   3

Definition at line 103 of file hfsplus_fs.h.

#define hfs_bnode_dump   hfsplus_bnode_dump

Definition at line 290 of file hfsplus_fs.h.

#define HFS_BNODE_ERROR   1

Definition at line 101 of file hfsplus_fs.h.

#define hfs_bnode_find   hfsplus_bnode_find

Definition at line 293 of file hfsplus_fs.h.

#define hfs_bnode_findhash   hfsplus_bnode_findhash

Definition at line 292 of file hfsplus_fs.h.

#define hfs_bnode_free   hfsplus_bnode_free

Definition at line 295 of file hfsplus_fs.h.

#define hfs_bnode_get   hfsplus_bnode_get

Definition at line 297 of file hfsplus_fs.h.

#define HFS_BNODE_LOCK   0

Definition at line 100 of file hfsplus_fs.h.

#define hfs_bnode_move   hfsplus_bnode_move

Definition at line 289 of file hfsplus_fs.h.

#define HFS_BNODE_NEW   2

Definition at line 102 of file hfsplus_fs.h.

#define hfs_bnode_put   hfsplus_bnode_put

Definition at line 298 of file hfsplus_fs.h.

#define hfs_bnode_read   hfsplus_bnode_read

Definition at line 281 of file hfsplus_fs.h.

#define hfs_bnode_read_key   hfsplus_bnode_read_key

Definition at line 284 of file hfsplus_fs.h.

#define hfs_bnode_read_u16   hfsplus_bnode_read_u16

Definition at line 282 of file hfsplus_fs.h.

#define hfs_bnode_read_u8   hfsplus_bnode_read_u8

Definition at line 283 of file hfsplus_fs.h.

#define hfs_bnode_unhash   hfsplus_bnode_unhash

Definition at line 294 of file hfsplus_fs.h.

#define hfs_bnode_unlink   hfsplus_bnode_unlink

Definition at line 291 of file hfsplus_fs.h.

#define hfs_bnode_write   hfsplus_bnode_write

Definition at line 285 of file hfsplus_fs.h.

#define hfs_bnode_write_u16   hfsplus_bnode_write_u16

Definition at line 286 of file hfsplus_fs.h.

#define hfs_brec_find   hfsplus_brec_find

Definition at line 306 of file hfsplus_fs.h.

#define hfs_brec_goto   hfsplus_brec_goto

Definition at line 308 of file hfsplus_fs.h.

#define hfs_brec_insert   hfsplus_brec_insert

Definition at line 301 of file hfsplus_fs.h.

#define hfs_brec_keylen   hfsplus_brec_keylen

Definition at line 300 of file hfsplus_fs.h.

#define hfs_brec_lenoff   hfsplus_brec_lenoff

Definition at line 299 of file hfsplus_fs.h.

#define hfs_brec_read   hfsplus_brec_read

Definition at line 307 of file hfsplus_fs.h.

#define hfs_brec_remove   hfsplus_brec_remove

Definition at line 302 of file hfsplus_fs.h.

#define hfs_btree_close   hfsplus_btree_close

Definition at line 277 of file hfsplus_fs.h.

#define hfs_btree_open   hfsplus_btree_open

Definition at line 276 of file hfsplus_fs.h.

#define hfs_btree_write   hfsplus_btree_write

Definition at line 278 of file hfsplus_fs.h.

#define hfs_find_exit   hfsplus_find_exit

Definition at line 304 of file hfsplus_fs.h.

#define hfs_find_init   hfsplus_find_init

Definition at line 303 of file hfsplus_fs.h.

#define hfs_part_find   hfsplus_part_find

Definition at line 309 of file hfsplus_fs.h.

#define hfsp_mt2ut (   t)    (struct timespec){ .tv_sec = __hfsp_mt2ut(t) }

Definition at line 468 of file hfsplus_fs.h.

#define hfsp_now2mt ( )    __hfsp_ut2mt(get_seconds())

Definition at line 470 of file hfsplus_fs.h.

#define hfsp_ut2mt (   t)    __hfsp_ut2mt((t).tv_sec)

Definition at line 469 of file hfsplus_fs.h.

#define HFSPLUS_DEF_CR_TYPE   0x3F3F3F3F /* '????' */

Definition at line 39 of file hfsplus_fs.h.

#define HFSPLUS_EXT_DIRTY   0x0001

Definition at line 219 of file hfsplus_fs.h.

#define HFSPLUS_EXT_NEW   0x0002

Definition at line 220 of file hfsplus_fs.h.

#define HFSPLUS_I_ALLOC_DIRTY   3 /* has changes in the allocation file */

Definition at line 225 of file hfsplus_fs.h.

#define HFSPLUS_I_CAT_DIRTY   1 /* has changes in the catalog tree */

Definition at line 223 of file hfsplus_fs.h.

#define HFSPLUS_I_EXT_DIRTY   2 /* has changes in the extent tree */

Definition at line 224 of file hfsplus_fs.h.

#define HFSPLUS_I_RSRC   0 /* represents a resource fork */

Definition at line 222 of file hfsplus_fs.h.

#define HFSPLUS_IOC_BLESS   _IO('h', 0x80)

Definition at line 325 of file hfsplus_fs.h.

#define HFSPLUS_IOC_EXT2_GETFLAGS   FS_IOC_GETFLAGS

Definition at line 318 of file hfsplus_fs.h.

#define HFSPLUS_IOC_EXT2_SETFLAGS   FS_IOC_SETFLAGS

Definition at line 319 of file hfsplus_fs.h.

#define HFSPLUS_IS_RSRC (   inode)    test_bit(HFSPLUS_I_RSRC, &HFSPLUS_I(inode)->flags)

Definition at line 227 of file hfsplus_fs.h.

#define HFSPLUS_SB_CASEFOLD   4

Definition at line 167 of file hfsplus_fs.h.

#define HFSPLUS_SB_FORCE   2

Definition at line 165 of file hfsplus_fs.h.

#define HFSPLUS_SB_HFSX   3

Definition at line 166 of file hfsplus_fs.h.

#define HFSPLUS_SB_NOBARRIER   5

Definition at line 168 of file hfsplus_fs.h.

#define HFSPLUS_SB_NODECOMPOSE   1

Definition at line 164 of file hfsplus_fs.h.

#define HFSPLUS_SB_WRITEBACKUP   0

Definition at line 163 of file hfsplus_fs.h.

#define HFSPLUS_TYPE_DATA   0x00

Definition at line 41 of file hfsplus_fs.h.

#define HFSPLUS_TYPE_RSRC   0xFF

Definition at line 42 of file hfsplus_fs.h.

#define NODE_HASH_SIZE   256

Definition at line 47 of file hfsplus_fs.h.

Typedef Documentation

typedef int(* btree_keycmp)(const hfsplus_btree_key *, const hfsplus_btree_key *)

Definition at line 44 of file hfsplus_fs.h.

Function Documentation

int __hfs_brec_find ( struct hfs_bnode ,
struct hfs_find_data  
)

Definition at line 40 of file bfind.c.

struct hfs_bnode* hfs_bmap_alloc ( struct hfs_btree )
read

Definition at line 222 of file btree.c.

void hfs_bmap_free ( struct hfs_bnode )

Definition at line 311 of file btree.c.

void hfs_bnode_clear ( struct hfs_bnode ,
int  ,
int   
)

Definition at line 85 of file bnode.c.

void hfs_bnode_copy ( struct hfs_bnode ,
int  ,
struct hfs_bnode ,
int  ,
int   
)

Definition at line 97 of file bnode.c.

struct hfs_bnode* hfs_bnode_create ( struct hfs_btree ,
u32   
)
read

Definition at line 408 of file bnode.c.

void hfs_bnode_dump ( struct hfs_bnode )

Definition at line 135 of file bnode.c.

struct hfs_bnode* hfs_bnode_find ( struct hfs_btree ,
u32   
)
read

Definition at line 315 of file bnode.c.

struct hfs_bnode* hfs_bnode_findhash ( struct hfs_btree ,
u32   
)
read

Definition at line 218 of file bnode.c.

void hfs_bnode_free ( struct hfs_bnode )

Definition at line 398 of file bnode.c.

void hfs_bnode_get ( struct hfs_bnode )

Definition at line 442 of file bnode.c.

void hfs_bnode_move ( struct hfs_bnode ,
int  ,
int  ,
int   
)

Definition at line 118 of file bnode.c.

void hfs_bnode_put ( struct hfs_bnode )

Definition at line 452 of file bnode.c.

void hfs_bnode_read ( struct hfs_bnode ,
void ,
int  ,
int   
)

Definition at line 17 of file bnode.c.

void hfs_bnode_read_key ( struct hfs_bnode ,
void ,
int   
)

Definition at line 45 of file bnode.c.

u16 hfs_bnode_read_u16 ( struct hfs_bnode ,
int   
)

Definition at line 29 of file bnode.c.

u8 hfs_bnode_read_u8 ( struct hfs_bnode ,
int   
)

Definition at line 37 of file bnode.c.

void hfs_bnode_unhash ( struct hfs_bnode )

Definition at line 300 of file bnode.c.

void hfs_bnode_unlink ( struct hfs_bnode )

Definition at line 171 of file bnode.c.

void hfs_bnode_write ( struct hfs_bnode ,
void ,
int  ,
int   
)

Definition at line 60 of file bnode.c.

void hfs_bnode_write_u16 ( struct hfs_bnode ,
int  ,
u16   
)

Definition at line 72 of file bnode.c.

int hfs_brec_find ( struct hfs_find_data )

Definition at line 92 of file bfind.c.

int hfs_brec_goto ( struct hfs_find_data ,
int   
)

Definition at line 159 of file bfind.c.

int hfs_brec_insert ( struct hfs_find_data ,
void ,
int   
)

Definition at line 66 of file brec.c.

u16 hfs_brec_keylen ( struct hfs_bnode ,
u16   
)

Definition at line 30 of file brec.c.

u16 hfs_brec_lenoff ( struct hfs_bnode ,
u16  ,
u16  
)

Definition at line 18 of file brec.c.

int hfs_brec_read ( struct hfs_find_data ,
void ,
int   
)

Definition at line 146 of file bfind.c.

int hfs_brec_remove ( struct hfs_find_data )

Definition at line 176 of file brec.c.

void hfs_btree_close ( struct hfs_btree )

Definition at line 137 of file btree.c.

struct hfs_btree* hfs_btree_open ( struct super_block ,
u32   
)
read

Definition at line 20 of file btree.c.

void hfs_btree_write ( struct hfs_btree )

Definition at line 159 of file btree.c.

void hfs_find_exit ( struct hfs_find_data )

Definition at line 30 of file bfind.c.

int hfs_find_init ( struct hfs_btree ,
struct hfs_find_data  
)

Definition at line 14 of file bfind.c.

int hfs_part_find ( struct super_block ,
sector_t ,
sector_t  
)

Definition at line 58 of file part_tbl.c.

int hfsplus_asc2uni ( struct super_block ,
struct hfsplus_unistr ,
const char ,
int   
)

Definition at line 298 of file unicode.c.

int hfsplus_block_allocate ( struct super_block ,
u32  ,
u32  ,
u32  
)

Definition at line 18 of file bitmap.c.

int hfsplus_block_free ( struct super_block ,
u32  ,
u32   
)

Definition at line 163 of file bitmap.c.

int hfsplus_cat_bin_cmp_key ( const hfsplus_btree_key *  ,
const hfsplus_btree_key *   
)

Definition at line 28 of file catalog.c.

void hfsplus_cat_build_key ( struct super_block sb,
hfsplus_btree_key *  ,
u32  ,
struct qstr  
)

Definition at line 41 of file catalog.c.

int hfsplus_cat_case_cmp_key ( const hfsplus_btree_key *  ,
const hfsplus_btree_key *   
)

Definition at line 15 of file catalog.c.

int hfsplus_cat_read_inode ( struct inode ,
struct hfs_find_data  
)

Definition at line 500 of file inode.c.

void hfsplus_cat_set_perms ( struct inode inode,
struct hfsplus_perm perms 
)

Definition at line 70 of file catalog.c.

int hfsplus_cat_write_inode ( struct inode )

Definition at line 563 of file inode.c.

int hfsplus_compare_dentry ( const struct dentry parent,
const struct inode pinode,
const struct dentry dentry,
const struct inode inode,
unsigned int  len,
const char str,
const struct qstr name 
)

Definition at line 388 of file unicode.c.

int hfsplus_create_cat ( u32  ,
struct inode ,
struct qstr ,
struct inode  
)

Definition at line 204 of file catalog.c.

int hfsplus_delete_cat ( u32  ,
struct inode ,
struct qstr  
)

Definition at line 263 of file catalog.c.

void hfsplus_delete_inode ( struct inode )

Definition at line 439 of file inode.c.

int hfsplus_ext_cmp_key ( const hfsplus_btree_key *  ,
const hfsplus_btree_key *   
)

Definition at line 19 of file extents.c.

int hfsplus_ext_write_extent ( struct inode )

Definition at line 138 of file extents.c.

int hfsplus_file_extend ( struct inode )

Definition at line 408 of file extents.c.

int hfsplus_file_fsync ( struct file file,
loff_t  start,
loff_t  end,
int  datasync 
)

Definition at line 314 of file inode.c.

void hfsplus_file_truncate ( struct inode )

Definition at line 504 of file extents.c.

void hfsplus_fill_defaults ( struct hfsplus_sb_info )

Definition at line 48 of file options.c.

int hfsplus_find_cat ( struct super_block ,
u32  ,
struct hfs_find_data  
)

Definition at line 175 of file catalog.c.

int hfsplus_free_fork ( struct super_block ,
u32  ,
struct hfsplus_fork_raw ,
int   
)

Definition at line 366 of file extents.c.

int hfsplus_get_block ( struct inode ,
sector_t  ,
struct buffer_head *  ,
int   
)

Definition at line 215 of file extents.c.

ssize_t hfsplus_getxattr ( struct dentry dentry,
const char name,
void value,
size_t  size 
)

Definition at line 199 of file ioctl.c.

int hfsplus_hash_dentry ( const struct dentry dentry,
const struct inode inode,
struct qstr str 
)

Definition at line 336 of file unicode.c.

struct inode* hfsplus_iget ( struct super_block ,
unsigned  long 
)
read

Definition at line 55 of file super.c.

void hfsplus_inode_read_fork ( struct inode ,
struct hfsplus_fork_raw  
)

Definition at line 461 of file inode.c.

void hfsplus_inode_write_fork ( struct inode ,
struct hfsplus_fork_raw  
)

Definition at line 491 of file inode.c.

long hfsplus_ioctl ( struct file filp,
unsigned int  cmd,
unsigned long  arg 
)

Definition at line 139 of file ioctl.c.

ssize_t hfsplus_listxattr ( struct dentry dentry,
char buffer,
size_t  size 
)

Definition at line 245 of file ioctl.c.

void hfsplus_mark_mdb_dirty ( struct super_block sb)

Definition at line 240 of file super.c.

struct inode* hfsplus_new_inode ( struct super_block ,
umode_t   
)
read

Definition at line 382 of file inode.c.

int hfsplus_parse_options ( char ,
struct hfsplus_sb_info  
)

Definition at line 99 of file options.c.

int hfsplus_parse_options_remount ( char input,
int force 
)

Definition at line 71 of file options.c.

int hfsplus_read_wrapper ( struct super_block )

Definition at line 172 of file wrapper.c.

int hfsplus_rename_cat ( u32  ,
struct inode ,
struct qstr ,
struct inode ,
struct qstr  
)

Definition at line 346 of file catalog.c.

int hfsplus_setxattr ( struct dentry dentry,
const char name,
const void value,
size_t  size,
int  flags 
)

Definition at line 155 of file ioctl.c.

int hfsplus_show_options ( struct seq_file ,
struct dentry  
)

Definition at line 217 of file options.c.

int hfsplus_strcasecmp ( const struct hfsplus_unistr ,
const struct hfsplus_unistr  
)

Definition at line 31 of file unicode.c.

int hfsplus_strcmp ( const struct hfsplus_unistr ,
const struct hfsplus_unistr  
)

Definition at line 64 of file unicode.c.

int hfsplus_submit_bio ( struct super_block sb,
sector_t  sector,
void buf,
void **  data,
int  rw 
)

Definition at line 53 of file wrapper.c.

int hfsplus_uni2asc ( struct super_block ,
const struct hfsplus_unistr ,
char ,
int  
)

Definition at line 121 of file unicode.c.

Variable Documentation

Definition at line 155 of file inode.c.

struct address_space_operations hfsplus_btree_aops

Definition at line 146 of file inode.c.

u16 hfsplus_case_fold_table[]

Definition at line 14 of file tables.c.

u16 hfsplus_compose_table[]

Definition at line 1071 of file tables.c.

u16 hfsplus_decompose_table[]

Definition at line 410 of file tables.c.

struct dentry_operations hfsplus_dentry_operations

Definition at line 165 of file inode.c.

struct inode_operations hfsplus_dir_inode_operations

Definition at line 501 of file dir.c.

struct file_operations hfsplus_dir_operations

Definition at line 513 of file dir.c.