Lines Matching defs:str

165 	const struct gfs2_statfs_change *str = buf;
167 sc->sc_total = be64_to_cpu(str->sc_total);
168 sc->sc_free = be64_to_cpu(str->sc_free);
169 sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
174 struct gfs2_statfs_change *str = buf;
176 str->sc_total = cpu_to_be64(sc->sc_total);
177 str->sc_free = cpu_to_be64(sc->sc_free);
178 str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
400 struct gfs2_dinode *str = buf;
402 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
403 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
404 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
405 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
406 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
407 str->di_mode = cpu_to_be32(inode->i_mode);
408 str->di_uid = cpu_to_be32(i_uid_read(inode));
409 str->di_gid = cpu_to_be32(i_gid_read(inode));
410 str->di_nlink = cpu_to_be32(inode->i_nlink);
411 str->di_size = cpu_to_be64(i_size_read(inode));
412 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(inode));
413 str->di_atime = cpu_to_be64(inode->i_atime.tv_sec);
414 str->di_mtime = cpu_to_be64(inode->i_mtime.tv_sec);
415 str->di_ctime = cpu_to_be64(inode_get_ctime(inode).tv_sec);
417 str->di_goal_meta = cpu_to_be64(ip->i_goal);
418 str->di_goal_data = cpu_to_be64(ip->i_goal);
419 str->di_generation = cpu_to_be64(ip->i_generation);
421 str->di_flags = cpu_to_be32(ip->i_diskflags);
422 str->di_height = cpu_to_be16(ip->i_height);
423 str->di_payload_format = cpu_to_be32(S_ISDIR(inode->i_mode) &&
426 str->di_depth = cpu_to_be16(ip->i_depth);
427 str->di_entries = cpu_to_be32(ip->i_entries);
429 str->di_eattr = cpu_to_be64(ip->i_eattr);
430 str->di_atime_nsec = cpu_to_be32(inode->i_atime.tv_nsec);
431 str->di_mtime_nsec = cpu_to_be32(inode->i_mtime.tv_nsec);
432 str->di_ctime_nsec = cpu_to_be32(inode_get_ctime(inode).tv_nsec);