• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/btrfs/

Lines Matching defs:btrfs_dev_item

185 struct btrfs_dev_item {
364 struct btrfs_dev_item dev_item;
1267 BTRFS_SETGET_FUNCS(device_type, struct btrfs_dev_item, type, 64);
1268 BTRFS_SETGET_FUNCS(device_total_bytes, struct btrfs_dev_item, total_bytes, 64);
1269 BTRFS_SETGET_FUNCS(device_bytes_used, struct btrfs_dev_item, bytes_used, 64);
1270 BTRFS_SETGET_FUNCS(device_io_align, struct btrfs_dev_item, io_align, 32);
1271 BTRFS_SETGET_FUNCS(device_io_width, struct btrfs_dev_item, io_width, 32);
1272 BTRFS_SETGET_FUNCS(device_start_offset, struct btrfs_dev_item,
1274 BTRFS_SETGET_FUNCS(device_sector_size, struct btrfs_dev_item, sector_size, 32);
1275 BTRFS_SETGET_FUNCS(device_id, struct btrfs_dev_item, devid, 64);
1276 BTRFS_SETGET_FUNCS(device_group, struct btrfs_dev_item, dev_group, 32);
1277 BTRFS_SETGET_FUNCS(device_seek_speed, struct btrfs_dev_item, seek_speed, 8);
1278 BTRFS_SETGET_FUNCS(device_bandwidth, struct btrfs_dev_item, bandwidth, 8);
1279 BTRFS_SETGET_FUNCS(device_generation, struct btrfs_dev_item, generation, 64);
1281 BTRFS_SETGET_STACK_FUNCS(stack_device_type, struct btrfs_dev_item, type, 64);
1282 BTRFS_SETGET_STACK_FUNCS(stack_device_total_bytes, struct btrfs_dev_item,
1284 BTRFS_SETGET_STACK_FUNCS(stack_device_bytes_used, struct btrfs_dev_item,
1286 BTRFS_SETGET_STACK_FUNCS(stack_device_io_align, struct btrfs_dev_item,
1288 BTRFS_SETGET_STACK_FUNCS(stack_device_io_width, struct btrfs_dev_item,
1290 BTRFS_SETGET_STACK_FUNCS(stack_device_sector_size, struct btrfs_dev_item,
1292 BTRFS_SETGET_STACK_FUNCS(stack_device_id, struct btrfs_dev_item, devid, 64);
1293 BTRFS_SETGET_STACK_FUNCS(stack_device_group, struct btrfs_dev_item,
1295 BTRFS_SETGET_STACK_FUNCS(stack_device_seek_speed, struct btrfs_dev_item,
1297 BTRFS_SETGET_STACK_FUNCS(stack_device_bandwidth, struct btrfs_dev_item,
1299 BTRFS_SETGET_STACK_FUNCS(stack_device_generation, struct btrfs_dev_item,
1302 static inline char *btrfs_device_uuid(struct btrfs_dev_item *d)
1304 return (char *)d + offsetof(struct btrfs_dev_item, uuid);
1307 static inline char *btrfs_device_fsid(struct btrfs_dev_item *d)
1309 return (char *)d + offsetof(struct btrfs_dev_item, fsid);