syscall_table: Update to v6.12 kernel syscall#76
Closed
TimePrinciple wants to merge 2 commits intorust-vmm:mainfrom
Closed
syscall_table: Update to v6.12 kernel syscall#76TimePrinciple wants to merge 2 commits intorust-vmm:mainfrom
TimePrinciple wants to merge 2 commits intorust-vmm:mainfrom
Conversation
43e7887 to
04166da
Compare
alindima
reviewed
Dec 18, 2024
src/syscall_table/aarch64.rs
Outdated
| ("clock_nanosleep", 115), | ||
| ("clock_settime", 112), | ||
| ("clone", 220), | ||
| ("accept4", 288), |
Collaborator
There was a problem hiding this comment.
these are wrong. they look like they're the same syscall numbers as on x86
Author
There was a problem hiding this comment.
Sorry I forgot to update this PR, IMHO our scripts used to generate syscall_table no longer works with v6.12 kernel. I'm in the middle of working out a new workflow 🧐
| vec![ | ||
| ("accept", 43), | ||
| ("accept4", 288), | ||
| ("accept", 43), |
Collaborator
There was a problem hiding this comment.
looks like the sort you used when building this is different than the one used in the rust vmm container. you could use that container image to run the script
04166da to
b2dcc30
Compare
Some of our downstream communities are moving to 6.12 kernel, regenerated `syscall_table` from 6.12 kernel source to catch up. Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
Update `CHANGELOG.md` and document the update of `syscall_tables` from v6.12 kernel source. Signed-off-by: Ruoqing He <heruoqing@iscas.ac.cn>
b2dcc30 to
1641902
Compare
Author
|
Migrated to #78 |
This file contains hidden or 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
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.
Summary of the PR
Before submitting your PR, please make sure you addressed the following
requirements:
git commit -s), and the commit message has max 60 characters for thesummary and max 75 characters for each description line.
test.
Release" section of CHANGELOG.md (if no such section exists, please create one).
unsafecode is properly documented.