Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
79ef517b
Commit
79ef517b
authored
Apr 02, 2004
by
Nathan Straz
Committed by
Nathan Scott
Apr 02, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Use unsigned long long for end_offset so we don't overflow it.
SGI Modid: xfs-linux:xfs-kern:168809a
parent
57128c12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
fs/xfs/linux/xfs_aops.c
fs/xfs/linux/xfs_aops.c
+4
-4
No files found.
fs/xfs/linux/xfs_aops.c
View file @
79ef517b
...
...
@@ -717,7 +717,8 @@ xfs_page_state_convert(
struct
buffer_head
*
bh_arr
[
MAX_BUF_PER_PAGE
],
*
bh
,
*
head
;
xfs_iomap_t
*
iomp
,
iomap
;
unsigned
long
p_offset
=
0
,
end_index
;
loff_t
offset
,
end_offset
;
loff_t
offset
;
unsigned
long
long
end_offset
;
int
len
,
err
,
i
,
cnt
=
0
,
uptodate
=
1
;
int
flags
=
startio
?
0
:
BMAPI_TRYLOCK
;
int
page_dirty
=
1
;
...
...
@@ -734,9 +735,8 @@ xfs_page_state_convert(
}
offset
=
(
loff_t
)
page
->
index
<<
PAGE_CACHE_SHIFT
;
end_offset
=
offset
+
PAGE_CACHE_SIZE
;
if
(
end_offset
>
i_size_read
(
inode
))
end_offset
=
i_size_read
(
inode
);
end_offset
=
min_t
(
unsigned
long
long
,
offset
+
PAGE_CACHE_SIZE
,
i_size_read
(
inode
));
bh
=
head
=
page_buffers
(
page
);
iomp
=
NULL
;
...
...
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