-
Notifications
You must be signed in to change notification settings - Fork 83
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
rasdaemon: generic fixes and ras-mc-ctl: add support for CXL error events #149
Closed
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
…t enabled This patch fixes following build warnings unused variable if AMP RAS errors is not enabled(--enable-amp-ns-decode). ================================================== ras-aer-handler.c: In function ‘ras_aer_event_handler’: ras-aer-handler.c:72:21: warning: unused variable ‘fn’ [-Wunused-variable] int seg, bus, dev, fn; ^~ ras-aer-handler.c:72:16: warning: unused variable ‘dev’ [-Wunused-variable] int seg, bus, dev, fn; ^~~ ras-aer-handler.c:72:11: warning: unused variable ‘bus’ [-Wunused-variable] int seg, bus, dev, fn; ^~~ ras-aer-handler.c:72:6: warning: unused variable ‘seg’ [-Wunused-variable] int seg, bus, dev, fn; ^~~ ras-aer-handler.c:71:10: warning: variable ‘sel_data’ set but not used [-Wunused-but-set-variable] uint8_t sel_data[5]; ^~~~~~~~ ras-aer-handler.c:70:7: warning: unused variable ‘ipmi_add_sel’ [-Wunused-variable] char ipmi_add_sel[105]; ^~~~~~~~~~~~ ================================================== Signed-off-by: Shiju Jose <[email protected]>
…age types Update memory failure action page types corresponding to the same in mm/memory-failure.c in the kernel. Signed-off-by: Shiju Jose <[email protected]>
…ents Add support for CXL AER uncorrectable events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Add support for CXL AER correctable events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Add support for CXL overflow events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Add support for CXL poison events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Add support for CXL generic events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Add support for CXL general media events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Add support for CXL DRAM events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Add support for CXL memory module events to the ras-mc-ctl tool. Signed-off-by: Shiju Jose <[email protected]>
Merged, thanks! |
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.
Add support for read and log following CXL error event records from the SQLite database(ras-mc_event.db).