-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable IPC API for FSDAX #878
Open
ldorau
wants to merge
8
commits into
oneapi-src:main
Choose a base branch
from
ldorau:Enable_IPC_API_for_FSDAX
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ldorau
force-pushed
the
Enable_IPC_API_for_FSDAX
branch
2 times, most recently
from
November 7, 2024 09:06
bde62e7
to
27ab84a
Compare
ldorau
force-pushed
the
Enable_IPC_API_for_FSDAX
branch
2 times, most recently
from
November 7, 2024 09:59
2f94e82
to
fa4f9b6
Compare
kswiecicki
approved these changes
Nov 7, 2024
ldorau
force-pushed
the
Enable_IPC_API_for_FSDAX
branch
3 times, most recently
from
November 7, 2024 14:56
28d6fbc
to
f09b12d
Compare
lplewa
reviewed
Nov 7, 2024
lplewa
reviewed
Nov 8, 2024
ldorau
force-pushed
the
Enable_IPC_API_for_FSDAX
branch
from
November 8, 2024 13:00
f09b12d
to
8e7937f
Compare
Make utils_mmap_file() detect DAX using MAP_SYNC flag. Add bool *map_sync argument to utils_mmap_file(). map_sync is set to true only if memory was mapped with MAP_SYNC, what means it is a DAX file/device. Signed-off-by: Lukasz Dorau <[email protected]>
ldorau
force-pushed
the
Enable_IPC_API_for_FSDAX
branch
from
November 9, 2024 10:38
8e7937f
to
ef22d33
Compare
The UMF_MEM_MAP_SYNC flag is DEPRECATED, (UMF_MEM_MAP_SHARED should be used instead). UMF_MEM_MAP_SYNC will be removed in the next release. Verify if /dev/dax was mapped with MAP_SYNC. Signed-off-by: Lukasz Dorau <[email protected]>
Signed-off-by: Lukasz Dorau <[email protected]>
Signed-off-by: Lukasz Dorau <[email protected]>
FSDAX requires 2 MB page size. Signed-off-by: Lukasz Dorau <[email protected]>
Signed-off-by: Lukasz Dorau <[email protected]>
Signed-off-by: Lukasz Dorau <[email protected]>
Fix warnings about format specifies type: warning: format specifies type 'void *' but the argument \ has type 'char *' [-Wformat-pedantic] Signed-off-by: Lukasz Dorau <[email protected]>
ldorau
force-pushed
the
Enable_IPC_API_for_FSDAX
branch
from
November 12, 2024 09:27
ef22d33
to
b8e06ea
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Enable IPC API for FSDAX.
FSDAX requires 2 MB page size.
Requires: #887
Checklist