Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
5d4fb734
Commit
5d4fb734
authored
Dec 21, 2007
by
Chris Mason
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Btrfs: Fix an off by one in the extent_map prepare write code
Signed-off-by:
Chris Mason
<
chris.mason@oracle.com
>
parent
1832a6d5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
fs/btrfs/extent_map.c
fs/btrfs/extent_map.c
+2
-2
fs/btrfs/inode.c
fs/btrfs/inode.c
+1
-1
No files found.
fs/btrfs/extent_map.c
View file @
5d4fb734
...
...
@@ -2279,7 +2279,7 @@ int extent_prepare_write(struct extent_map_tree *tree,
u64
extent_offset
=
block_start
-
em
->
start
;
size_t
iosize
;
sector
=
(
em
->
block_start
+
extent_offset
)
>>
9
;
iosize
=
(
cur_end
-
block_start
+
blocksize
-
1
)
&
iosize
=
(
cur_end
-
block_start
+
blocksize
)
&
~
((
u64
)
blocksize
-
1
);
/*
* we've already got the extent locked, but we
...
...
fs/btrfs/inode.c
View file @
5d4fb734
...
...
@@ -1956,7 +1956,7 @@ static int btrfs_prepare_write(struct file *file, struct page *page,
mutex_lock
(
&
root
->
fs_info
->
fs_mutex
);
err
=
btrfs_check_free_space
(
root
,
PAGE_CACHE_SIZE
,
0
);
mutex_lock
(
&
root
->
fs_info
->
fs_mutex
);
mutex_
un
lock
(
&
root
->
fs_info
->
fs_mutex
);
if
(
err
)
return
-
ENOSPC
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment