Skip to content

Commit 800a964

Browse files
committed
CacheFiles: Export things for CacheFiles
Export a number of functions for CacheFiles's use. Signed-off-by: David Howells <[email protected]> Acked-by: Steve Dickson <[email protected]> Acked-by: Trond Myklebust <[email protected]> Acked-by: Rik van Riel <[email protected]> Acked-by: Al Viro <[email protected]> Tested-by: Daire Byrne <[email protected]>
1 parent 385e1ca commit 800a964

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

fs/super.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ int fsync_super(struct super_block *sb)
287287
__fsync_super(sb);
288288
return sync_blockdev(sb->s_bdev);
289289
}
290+
EXPORT_SYMBOL_GPL(fsync_super);
290291

291292
/**
292293
* generic_shutdown_super - common helper for ->kill_sb()

security/security.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,7 @@ int security_inode_create(struct inode *dir, struct dentry *dentry, int mode)
445445
return 0;
446446
return security_ops->inode_create(dir, dentry, mode);
447447
}
448+
EXPORT_SYMBOL_GPL(security_inode_create);
448449

449450
int security_inode_link(struct dentry *old_dentry, struct inode *dir,
450451
struct dentry *new_dentry)
@@ -475,6 +476,7 @@ int security_inode_mkdir(struct inode *dir, struct dentry *dentry, int mode)
475476
return 0;
476477
return security_ops->inode_mkdir(dir, dentry, mode);
477478
}
479+
EXPORT_SYMBOL_GPL(security_inode_mkdir);
478480

479481
int security_inode_rmdir(struct inode *dir, struct dentry *dentry)
480482
{

0 commit comments

Comments
 (0)