mirror of
https://github.com/kdave/btrfs-progs
synced 2025-05-10 20:07:55 +00:00
btrfs-progs: check: fix typo in device_extent_record::chunk_objectid
This header is exported to /usr/include/btrfs but there are no known users, so the change should be safe. Generated by https://github.com/jsoref/spelling Issue: #154 Author: Josh Soref <jsoref@users.noreply.github.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
2cd4a76ea9
commit
33d375bc20
@ -113,7 +113,7 @@ struct device_extent_record {
|
|||||||
u8 type;
|
u8 type;
|
||||||
u64 offset;
|
u64 offset;
|
||||||
|
|
||||||
u64 chunk_objecteid;
|
u64 chunk_objectid;
|
||||||
u64 chunk_offset;
|
u64 chunk_offset;
|
||||||
u64 length;
|
u64 length;
|
||||||
};
|
};
|
||||||
|
@ -5043,7 +5043,7 @@ btrfs_new_device_extent_record(struct extent_buffer *leaf,
|
|||||||
rec->offset = key->offset;
|
rec->offset = key->offset;
|
||||||
|
|
||||||
ptr = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
|
ptr = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
|
||||||
rec->chunk_objecteid =
|
rec->chunk_objectid =
|
||||||
btrfs_dev_extent_chunk_objectid(leaf, ptr);
|
btrfs_dev_extent_chunk_objectid(leaf, ptr);
|
||||||
rec->chunk_offset =
|
rec->chunk_offset =
|
||||||
btrfs_dev_extent_chunk_offset(leaf, ptr);
|
btrfs_dev_extent_chunk_offset(leaf, ptr);
|
||||||
|
Loading…
Reference in New Issue
Block a user