Lines Matching defs:size
791 * implementation of size changes.
795 * or wire state on size changes needs its own setattr method.
1021 * @available: the size of the buffer
1053 * @available: the size of the buffer
1091 * @available: the size of the buffer
1131 * The barrier ensures that ar->size will really remain zero until
1135 ar->size = n;
1139 char *simple_transaction_get(struct file *file, const char __user *buf, size_t size)
1144 if (size > SIMPLE_TRANSACTION_LIMIT - 1)
1164 if (copy_from_user(ar->data, buf, size))
1171 ssize_t simple_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
1177 return simple_read_from_buffer(buf, size, pos, ar->data, ar->size);
1236 size_t size;
1250 size = strlen(attr->get_buf);
1258 size = scnprintf(attr->get_buf, sizeof(attr->get_buf),
1262 ret = simple_read_from_buffer(buf, len, ppos, attr->get_buf, size);
1275 size_t size;
1287 size = min(sizeof(attr->set_buf) - 1, len);
1288 if (copy_from_user(attr->set_buf, buf, size))
1291 attr->set_buf[size] = '\0';
1454 * @blocksize_bits: log of file system block size
1458 * block size of 2**@blocksize_bits) is addressable by the sector_t
1605 static ssize_t empty_dir_listxattr(struct dentry *dentry, char *list, size_t size)