Lines Matching refs:buf
2854 static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf) in shmem_statfs() argument
2858 buf->f_type = TMPFS_MAGIC; in shmem_statfs()
2859 buf->f_bsize = PAGE_SIZE; in shmem_statfs()
2860 buf->f_namelen = NAME_MAX; in shmem_statfs()
2862 buf->f_blocks = sbinfo->max_blocks; in shmem_statfs()
2863 buf->f_bavail = in shmem_statfs()
2864 buf->f_bfree = sbinfo->max_blocks - in shmem_statfs()
2868 buf->f_files = sbinfo->max_inodes; in shmem_statfs()
2869 buf->f_ffree = sbinfo->free_inodes; in shmem_statfs()
3935 struct kobj_attribute *attr, char *buf) in shmem_enabled_show() argument
3950 count += sprintf(buf + count, fmt, in shmem_enabled_show()
3953 buf[count - 1] = '\n'; in shmem_enabled_show()
3958 struct kobj_attribute *attr, const char *buf, size_t count) in shmem_enabled_store() argument
3965 memcpy(tmp, buf, count); in shmem_enabled_store()