Skip to content

Commit 32022eb

Browse files
adam900710kdave
authored andcommitted
btrfs-progs: constify the buffer pointer for write functions
The following functions accept a buffer for write, which can be marked as const: - btrfs_pwrite() - write_data_to_disk() Signed-off-by: Qu Wenruo <[email protected]> Signed-off-by: David Sterba <[email protected]>
1 parent 8cb578b commit 32022eb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

common/device-utils.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ ssize_t btrfs_direct_pread(int fd, void *buf, size_t count, off_t offset);
5454
ssize_t btrfs_direct_pwrite(int fd, const void *buf, size_t count, off_t offset);
5555

5656
#ifdef BTRFS_ZONED
57-
static inline ssize_t btrfs_pwrite(int fd, void *buf, size_t count,
57+
static inline ssize_t btrfs_pwrite(int fd, const void *buf, size_t count,
5858
off_t offset, bool direct)
5959
{
6060
if (!direct)
6161
return pwrite(fd, buf, count, offset);
6262

6363
return btrfs_direct_pwrite(fd, buf, count, offset);
6464
}
65-
static inline ssize_t btrfs_pread(int fd, void *buf, size_t count, off_t offset,
66-
bool direct)
65+
static inline ssize_t btrfs_pread(int fd, void *buf, size_t count,
66+
off_t offset, bool direct)
6767
{
6868
if (!direct)
6969
return pread(fd, buf, count, offset);

kernel-shared/extent_io.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ int read_data_from_disk(struct btrfs_fs_info *info, void *buf, u64 logical,
477477
* Such data will be written to all mirrors and RAID56 P/Q will also be
478478
* properly handled.
479479
*/
480-
int write_data_to_disk(struct btrfs_fs_info *info, void *buf, u64 offset,
480+
int write_data_to_disk(struct btrfs_fs_info *info, const void *buf, u64 offset,
481481
u64 bytes)
482482
{
483483
struct btrfs_multi_bio *multi = NULL;

kernel-shared/extent_io.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ int set_extent_buffer_dirty(struct extent_buffer *eb);
128128
int btrfs_clear_buffer_dirty(struct extent_buffer *eb);
129129
int read_data_from_disk(struct btrfs_fs_info *info, void *buf, u64 logical,
130130
u64 *len, int mirror);
131-
int write_data_to_disk(struct btrfs_fs_info *info, void *buf, u64 offset,
131+
int write_data_to_disk(struct btrfs_fs_info *info, const void *buf, u64 offset,
132132
u64 bytes);
133133
void extent_buffer_bitmap_clear(struct extent_buffer *eb, unsigned long start,
134134
unsigned long pos, unsigned long len);

0 commit comments

Comments
 (0)