Lines Matching defs:btrfs_space_info
385 struct btrfs_space_info { struct
386 spinlock_t lock;
388 u64 total_bytes; /* total bytes in the space,
390 u64 bytes_used; /* total bytes used,
392 u64 bytes_pinned; /* total bytes pinned, will be freed when the
394 u64 bytes_reserved; /* total bytes the allocator has reserved for
396 u64 bytes_may_use; /* number of bytes that may be used for
398 u64 bytes_readonly; /* total bytes that are read only */
400 u64 max_extent_size; /* This will hold the maximum extent size of
404 unsigned int full:1; /* indicates that we cannot allocate any more
406 unsigned int chunk_alloc:1; /* set if we are allocating a chunk */
408 unsigned int flush:1; /* set if we are trying to make space */
410 unsigned int force_alloc; /* set if we need to force a chunk
413 u64 disk_used; /* total bytes used on disk */
414 u64 disk_total; /* total bytes on disk, takes mirrors into
417 u64 flags;
429 struct percpu_counter total_bytes_pinned;
431 struct list_head list;
433 struct list_head ro_bgs;
434 struct list_head priority_tickets;
435 struct list_head tickets;
462 struct btrfs_space_info *space_info; argument