On Sun, Aug 06, 2017 at 06:44:13PM +0200, Mikko Rapeli wrote: > Fixes userspace compilation error: > > error: unknown type name ‘size_t’ > size_t length; > > Signed-off-by: Mikko Rapeli > Cc: reiserfs-devel@vger.kernel.org > --- > include/uapi/linux/reiserfs_xattr.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/uapi/linux/reiserfs_xattr.h b/include/uapi/linux/reiserfs_xattr.h > index 38fdd648be21..af52b38ef783 100644 > --- a/include/uapi/linux/reiserfs_xattr.h > +++ b/include/uapi/linux/reiserfs_xattr.h > @@ -18,7 +18,7 @@ struct reiserfs_xattr_header { > struct reiserfs_security_handle { > const char *name; > void *value; > - size_t length; > + __kernel_size_t length; > }; > > #endif /* _LINUX_REISERFS_XATTR_H */ I submitted an alternative fix for this bug some time ago, see http://lkml.kernel.org/r/20170228005328.GA27363@altlinux.org -- ldv