ecryptfs_kernel.h (c58310bf4933986513020fa90b4190c7492995ae) ecryptfs_kernel.h (18d1dbf1d401e8f9d74cf1cf799fdb19cff150c6)
1/**
2 * eCryptfs: Linux filesystem encryption layer
3 * Kernel declarations.
4 *
5 * Copyright (C) 1997-2003 Erez Zadok
6 * Copyright (C) 2001-2003 Stony Brook University
7 * Copyright (C) 2004-2007 International Business Machines Corp.
8 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>

--- 486 unchanged lines hidden (view full) ---

495static inline void
496ecryptfs_set_dentry_lower_mnt(struct dentry *dentry, struct vfsmount *lower_mnt)
497{
498 ((struct ecryptfs_dentry_info *)dentry->d_fsdata)->lower_path.mnt =
499 lower_mnt;
500}
501
502#define ecryptfs_printk(type, fmt, arg...) \
1/**
2 * eCryptfs: Linux filesystem encryption layer
3 * Kernel declarations.
4 *
5 * Copyright (C) 1997-2003 Erez Zadok
6 * Copyright (C) 2001-2003 Stony Brook University
7 * Copyright (C) 2004-2007 International Business Machines Corp.
8 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>

--- 486 unchanged lines hidden (view full) ---

495static inline void
496ecryptfs_set_dentry_lower_mnt(struct dentry *dentry, struct vfsmount *lower_mnt)
497{
498 ((struct ecryptfs_dentry_info *)dentry->d_fsdata)->lower_path.mnt =
499 lower_mnt;
500}
501
502#define ecryptfs_printk(type, fmt, arg...) \
503 __ecryptfs_printk(type "%s: " fmt, __FUNCTION__, ## arg);
503 __ecryptfs_printk(type "%s: " fmt, __func__, ## arg);
504void __ecryptfs_printk(const char *fmt, ...);
505
506extern const struct file_operations ecryptfs_main_fops;
507extern const struct file_operations ecryptfs_dir_fops;
508extern const struct inode_operations ecryptfs_main_iops;
509extern const struct inode_operations ecryptfs_dir_iops;
510extern const struct inode_operations ecryptfs_symlink_iops;
511extern const struct super_operations ecryptfs_sops;

--- 135 unchanged lines hidden ---
504void __ecryptfs_printk(const char *fmt, ...);
505
506extern const struct file_operations ecryptfs_main_fops;
507extern const struct file_operations ecryptfs_dir_fops;
508extern const struct inode_operations ecryptfs_main_iops;
509extern const struct inode_operations ecryptfs_dir_iops;
510extern const struct inode_operations ecryptfs_symlink_iops;
511extern const struct super_operations ecryptfs_sops;

--- 135 unchanged lines hidden ---