Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
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
Joshua
wendelin.core
Commits
f1dd4cbc
Commit
f1dd4cbc
authored
Oct 23, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
0a4ae554
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
wcfs/internal/wcfs_virtmem.cpp
wcfs/internal/wcfs_virtmem.cpp
+4
-2
No files found.
wcfs/internal/wcfs_virtmem.cpp
View file @
f1dd4cbc
...
@@ -278,12 +278,14 @@ error _Mapping::_remmapblk(int64_t blk, Tid at) {
...
@@ -278,12 +278,14 @@ error _Mapping::_remmapblk(int64_t blk, Tid at) {
// after file.size will raise SIGBUS. (assumes head/f size ↑=)
// after file.size will raise SIGBUS. (assumes head/f size ↑=)
if
((
blk
+
1
)
*
f
->
blksize
>
st
.
st_size
)
{
if
((
blk
+
1
)
*
f
->
blksize
>
st
.
st_size
)
{
err
=
mmap_zero_into_ro
(
blkmem
,
1
*
f
->
blksize
);
err
=
mmap_zero_into_ro
(
blkmem
,
1
*
f
->
blksize
);
// XXX err handle
if
(
err
!=
nil
)
return
err
;
}
}
// block is inside file - mmap file data
// block is inside file - mmap file data
else
{
else
{
err
=
mm
::
map_into
(
blkmem
,
1
*
f
->
blksize
,
PROT_READ
,
MAP_SHARED
,
fsfile
,
blk
*
f
->
blksize
);
err
=
mm
::
map_into
(
blkmem
,
1
*
f
->
blksize
,
PROT_READ
,
MAP_SHARED
,
fsfile
,
blk
*
f
->
blksize
);
// XXX err handle
if
(
err
!=
nil
)
return
err
;
}
}
return
nil
;
return
nil
;
...
...
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