On Tue, Jan 28, 2014 at 10:40:16AM -0800, Sage Weil wrote: > Hi Linus, > > Please pull the following Ceph updates from > > git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git for-linus > > This is a big batch. From Ilya we have: > > - rbd support for more than ~250 mapped devices (now uses same scheme > that SCSI does for device major/minor numbering) > - crush updates for new mapping behaviors (will be needed for coming > erasure coding support, among other things) > - preliminary support for tiered storage pools > > There is also a big series fixing a pile cephfs bugs with clustered MDSs > from Yan Zheng, ACL support for cephfs from Guangliang Zhao, ceph fscache > improvements from Li Wang, improved behavior when we get ENOSPC from Josh > Durgin, some readv/writev improvements from Majianpeng, and the usual mix > of small cleanups. This breaks the build for me. fs/ceph/acl.c: In function ‘ceph_init_acl’: fs/ceph/acl.c:216:3: warning: passing argument 1 of ‘posix_acl_create’ from incompatible pointer type [enabled by default] ret = posix_acl_create(&acl, GFP_NOFS, &inode->i_mode); ^ In file included from include/linux/posix_acl_xattr.h:12:0, from fs/ceph/acl.c:25: include/linux/posix_acl.h:96:12: note: expected ‘struct inode *’ but argument is of type ‘struct posix_acl **’ extern int posix_acl_create(struct inode *, umode_t *, struct posix_acl **, ^ fs/ceph/acl.c:216:3: warning: passing argument 2 of ‘posix_acl_create’ makes pointer from integer without a cast [enabled by default] ret = posix_acl_create(&acl, GFP_NOFS, &inode->i_mode); ^ In file included from include/linux/posix_acl_xattr.h:12:0, from fs/ceph/acl.c:25: include/linux/posix_acl.h:96:12: note: expected ‘umode_t *’ but argument is of type ‘unsigned int’ extern int posix_acl_create(struct inode *, umode_t *, struct posix_acl **, ^ fs/ceph/acl.c:216:3: warning: passing argument 3 of ‘posix_acl_create’ from incompatible pointer type [enabled by default] ret = posix_acl_create(&acl, GFP_NOFS, &inode->i_mode); ^ In file included from include/linux/posix_acl_xattr.h:12:0, from fs/ceph/acl.c:25: include/linux/posix_acl.h:96:12: note: expected ‘struct posix_acl **’ but argument is of type ‘umode_t *’ extern int posix_acl_create(struct inode *, umode_t *, struct posix_acl **, ^ fs/ceph/acl.c:216:3: error: too few arguments to function ‘posix_acl_create’ ret = posix_acl_create(&acl, GFP_NOFS, &inode->i_mode); ^ In file included from include/linux/posix_acl_xattr.h:12:0, from fs/ceph/acl.c:25: include/linux/posix_acl.h:96:12: note: declared here extern int posix_acl_create(struct inode *, umode_t *, struct posix_acl **, ^ fs/ceph/acl.c: In function ‘ceph_acl_chmod’: fs/ceph/acl.c:252:2: warning: passing argument 1 of ‘posix_acl_chmod’ from incompatible pointer type [enabled by default] ret = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode); ^ In file included from include/linux/posix_acl_xattr.h:12:0, from fs/ceph/acl.c:25: include/linux/posix_acl.h:95:12: note: expected ‘struct inode *’ but argument is of type ‘struct posix_acl **’ extern int posix_acl_chmod(struct inode *, umode_t); ^ fs/ceph/acl.c:252:2: error: too many arguments to function ‘posix_acl_chmod’ ret = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode); ^ In file included from include/linux/posix_acl_xattr.h:12:0, from fs/ceph/acl.c:25: include/linux/posix_acl.h:95:12: note: declared here extern int posix_acl_chmod(struct inode *, umode_t); -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html