Lines Matching defs:list_size
78 ssize_t list_size, size, value_size = 0;
86 list_size = vfs_listxattr(old, NULL, 0);
87 if (list_size <= 0) {
88 if (list_size == -EOPNOTSUPP)
90 return list_size;
93 buf = kvzalloc(list_size, GFP_KERNEL);
97 list_size = vfs_listxattr(old, buf, list_size);
98 if (list_size <= 0) {
99 error = list_size;
103 for (name = buf; list_size; name += slen) {
104 slen = strnlen(name, list_size) + 1;
107 if (WARN_ON(slen > list_size)) {
111 list_size -= slen;