diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2017-03-10 12:40:01 -0900 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2017-03-10 12:40:01 -0900 |
commit | 3bf874183a518cc1bf785d9944de05cf51a177d3 (patch) | |
tree | 65fb33f65a65996669fb96e5c746f6dd4d22d31c /libbcache/acl.c | |
parent | c3844b0b7ff75527a87f52229f15341c24c0d356 (diff) |
update bcache sources
Diffstat (limited to 'libbcache/acl.c')
-rw-r--r-- | libbcache/acl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbcache/acl.c b/libbcache/acl.c index 468d98da..4363c57e 100644 --- a/libbcache/acl.c +++ b/libbcache/acl.c @@ -133,7 +133,7 @@ fail: struct posix_acl *bch_get_acl(struct inode *inode, int type) { - struct cache_set *c = inode->i_sb->s_fs_info; + struct bch_fs *c = inode->i_sb->s_fs_info; int name_index; char *value = NULL; struct posix_acl *acl; @@ -173,7 +173,7 @@ struct posix_acl *bch_get_acl(struct inode *inode, int type) int bch_set_acl(struct inode *inode, struct posix_acl *acl, int type) { - struct cache_set *c = inode->i_sb->s_fs_info; + struct bch_fs *c = inode->i_sb->s_fs_info; int name_index; void *value = NULL; size_t size = 0; |