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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
2b28174e
Commit
2b28174e
authored
Nov 17, 2021
by
Kirill Smelkov
1
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 't2' into t
* t2: . wendelin.core v2.0.alpha1
parents
c104653a
8db3b51a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
CHANGELOG.rst
CHANGELOG.rst
+2
-2
bigfile/tests/test_virtmem.c
bigfile/tests/test_virtmem.c
+0
-1
t/t_utils.h
t/t_utils.h
+0
-1
No files found.
CHANGELOG.rst
View file @
2b28174e
...
@@ -13,8 +13,8 @@ synthetic WCFS filesystem. This removes overhead of handling pagefaults in
...
@@ -13,8 +13,8 @@ synthetic WCFS filesystem. This removes overhead of handling pagefaults in
userspace and makes bigfile's cache (now it is the kernel's pagecache) to be
userspace and makes bigfile's cache (now it is the kernel's pagecache) to be
shared in between several processes.
shared in between several processes.
In addition a custom coherency protocol is provided, which allows clients
In addition a custom coherency protocol is provided, which allows clients
,
that want to receive isolation guarantee ("I" from ACID) to still use the shared
that want to receive isolation guarantee ("I" from ACID)
,
to still use the shared
cache and at the same time get bigfile view isolated from other's changes.
cache and at the same time get bigfile view isolated from other's changes.
By default wendelin.core python client continues to provide full ACID semantics as
By default wendelin.core python client continues to provide full ACID semantics as
...
...
bigfile/tests/test_virtmem.c
View file @
2b28174e
...
@@ -201,7 +201,6 @@ const char *__tsan_default_options()
...
@@ -201,7 +201,6 @@ const char *__tsan_default_options()
/* whether appropriate page of vma is mapped */
/* whether appropriate page of vma is mapped */
// XXX BUG on out-of-bounds
int
M
(
VMA
*
vma
,
pgoff_t
idx
)
{
return
bitmap_test_bit
(
vma
->
page_ismappedv
,
idx
);
}
int
M
(
VMA
*
vma
,
pgoff_t
idx
)
{
return
bitmap_test_bit
(
vma
->
page_ismappedv
,
idx
);
}
...
...
t/t_utils.h
View file @
2b28174e
...
@@ -30,7 +30,6 @@ extern "C" {
...
@@ -30,7 +30,6 @@ extern "C" {
/* access to vma memory as byte[] and blk_t[] */
/* access to vma memory as byte[] and blk_t[] */
// XXX BUG on out-of-bound access
#define b(vma, idx) ( ((volatile uint8_t *)vma->addr_start) [ idx ] )
#define b(vma, idx) ( ((volatile uint8_t *)vma->addr_start) [ idx ] )
#define B(vma, idx) ( ((volatile blk_t *)vma->addr_start) [ idx ] )
#define B(vma, idx) ( ((volatile blk_t *)vma->addr_start) [ idx ] )
...
...
Kirill Smelkov
@kirr
·
Nov 17, 2021
Maintainer
.
.
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