aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ecryptfs/ecryptfs_kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ecryptfs/ecryptfs_kernel.h')
-rw-r--r--fs/ecryptfs/ecryptfs_kernel.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/fs/ecryptfs/ecryptfs_kernel.h b/fs/ecryptfs/ecryptfs_kernel.h
index 65f7ddfd4d4a..3e52b42fba06 100644
--- a/fs/ecryptfs/ecryptfs_kernel.h
+++ b/fs/ecryptfs/ecryptfs_kernel.h
@@ -570,13 +570,11 @@ int ecryptfs_writepage_and_release_lower_page(struct page *lower_page,
570 struct writeback_control *wbc); 570 struct writeback_control *wbc);
571int ecryptfs_encrypt_page(struct page *page); 571int ecryptfs_encrypt_page(struct page *page);
572int ecryptfs_decrypt_page(struct page *page); 572int ecryptfs_decrypt_page(struct page *page);
573int ecryptfs_write_metadata(struct dentry *ecryptfs_dentry, 573int ecryptfs_write_metadata(struct dentry *ecryptfs_dentry);
574 struct file *lower_file); 574int ecryptfs_read_metadata(struct dentry *ecryptfs_dentry);
575int ecryptfs_read_metadata(struct dentry *ecryptfs_dentry,
576 struct file *lower_file);
577int ecryptfs_new_file_context(struct dentry *ecryptfs_dentry); 575int ecryptfs_new_file_context(struct dentry *ecryptfs_dentry);
578int ecryptfs_read_and_validate_header_region(char *data, struct dentry *dentry, 576int ecryptfs_read_and_validate_header_region(char *data,
579 struct vfsmount *mnt); 577 struct inode *ecryptfs_inode);
580int ecryptfs_read_and_validate_xattr_region(char *page_virt, 578int ecryptfs_read_and_validate_xattr_region(char *page_virt,
581 struct dentry *ecryptfs_dentry); 579 struct dentry *ecryptfs_dentry);
582u16 ecryptfs_code_for_cipher_string(struct ecryptfs_crypt_stat *crypt_stat); 580u16 ecryptfs_code_for_cipher_string(struct ecryptfs_crypt_stat *crypt_stat);
@@ -599,10 +597,13 @@ int ecryptfs_open_lower_file(struct file **lower_file,
599int ecryptfs_close_lower_file(struct file *lower_file); 597int ecryptfs_close_lower_file(struct file *lower_file);
600ssize_t ecryptfs_getxattr(struct dentry *dentry, const char *name, void *value, 598ssize_t ecryptfs_getxattr(struct dentry *dentry, const char *name, void *value,
601 size_t size); 599 size_t size);
600ssize_t
601ecryptfs_getxattr_lower(struct dentry *lower_dentry, const char *name,
602 void *value, size_t size);
602int 603int
603ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value, 604ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value,
604 size_t size, int flags); 605 size_t size, int flags);
605int ecryptfs_read_xattr_region(char *page_virt, struct dentry *ecryptfs_dentry); 606int ecryptfs_read_xattr_region(char *page_virt, struct inode *ecryptfs_inode);
606int ecryptfs_process_helo(unsigned int transport, uid_t uid, pid_t pid); 607int ecryptfs_process_helo(unsigned int transport, uid_t uid, pid_t pid);
607int ecryptfs_process_quit(uid_t uid, pid_t pid); 608int ecryptfs_process_quit(uid_t uid, pid_t pid);
608int ecryptfs_process_response(struct ecryptfs_message *msg, uid_t uid, 609int ecryptfs_process_response(struct ecryptfs_message *msg, uid_t uid,