Skip to content

Commit

Permalink
trace, RAS: Add basic RAS trace event
Browse files Browse the repository at this point in the history
To avoid confuision and conflict of usage for RAS related trace event,
add an unified RAS trace event stub.

Start a RAS subsystem menu which will be fleshed out in time, when more
features get added to it.

Signed-off-by: Chen, Gong <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Borislav Petkov <[email protected]>
Signed-off-by: Tony Luck <[email protected]>
  • Loading branch information
Chen, Gong authored and aegl committed Jun 23, 2014
1 parent 4d4c9cc commit 76ac827
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 3 deletions.
2 changes: 2 additions & 0 deletions drivers/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,6 @@ source "drivers/powercap/Kconfig"

source "drivers/mcb/Kconfig"

source "drivers/ras/Kconfig"

endmenu
1 change: 1 addition & 0 deletions drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,4 @@ obj-$(CONFIG_NTB) += ntb/
obj-$(CONFIG_FMC) += fmc/
obj-$(CONFIG_POWERCAP) += powercap/
obj-$(CONFIG_MCB) += mcb/
obj-$(CONFIG_RAS) += ras/
1 change: 1 addition & 0 deletions drivers/edac/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ config EDAC_MCE_INJ

config EDAC_MM_EDAC
tristate "Main Memory EDAC (Error Detection And Correction) reporting"
select RAS
help
Some systems are able to detect and correct errors in main
memory. EDAC can report statistics on memory error
Expand Down
3 changes: 0 additions & 3 deletions drivers/edac/edac_mc.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@
#include <asm/edac.h>
#include "edac_core.h"
#include "edac_module.h"

#define CREATE_TRACE_POINTS
#define TRACE_INCLUDE_PATH ../../include/ras
#include <ras/ras_event.h>

/* lock to memory controller's control array */
Expand Down
2 changes: 2 additions & 0 deletions drivers/ras/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
config RAS
bool
1 change: 1 addition & 0 deletions drivers/ras/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_RAS) += ras.o
12 changes: 12 additions & 0 deletions drivers/ras/ras.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* Copyright (C) 2014 Intel Corporation
*
* Authors:
* Chen, Gong <[email protected]>
*/

#define CREATE_TRACE_POINTS
#define TRACE_INCLUDE_PATH ../../include/ras
#include <ras/ras_event.h>

EXPORT_TRACEPOINT_SYMBOL_GPL(mc_event);

0 comments on commit 76ac827

Please sign in to comment.