mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
amd64_edac: rename StinkyIdentifier
SystemAddress -> sys_addr Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
This commit is contained in:
parent
ad858bfa14
commit
44e9e2ee21
1 changed files with 18 additions and 18 deletions
|
@ -1117,7 +1117,7 @@ static void k8_read_dram_base_limit(struct amd64_pvt *pvt, int dram)
|
||||||
|
|
||||||
static void k8_map_sysaddr_to_csrow(struct mem_ctl_info *mci,
|
static void k8_map_sysaddr_to_csrow(struct mem_ctl_info *mci,
|
||||||
struct err_regs *info,
|
struct err_regs *info,
|
||||||
u64 SystemAddress)
|
u64 sys_addr)
|
||||||
{
|
{
|
||||||
struct mem_ctl_info *src_mci;
|
struct mem_ctl_info *src_mci;
|
||||||
unsigned short syndrome;
|
unsigned short syndrome;
|
||||||
|
@ -1152,28 +1152,28 @@ static void k8_map_sysaddr_to_csrow(struct mem_ctl_info *mci,
|
||||||
* was obtained from email communication with someone at AMD.
|
* was obtained from email communication with someone at AMD.
|
||||||
* (Wish the email was placed in this comment - norsk)
|
* (Wish the email was placed in this comment - norsk)
|
||||||
*/
|
*/
|
||||||
channel = ((SystemAddress & BIT(3)) != 0);
|
channel = ((sys_addr & BIT(3)) != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Find out which node the error address belongs to. This may be
|
* Find out which node the error address belongs to. This may be
|
||||||
* different from the node that detected the error.
|
* different from the node that detected the error.
|
||||||
*/
|
*/
|
||||||
src_mci = find_mc_by_sys_addr(mci, SystemAddress);
|
src_mci = find_mc_by_sys_addr(mci, sys_addr);
|
||||||
if (!src_mci) {
|
if (!src_mci) {
|
||||||
amd64_mc_printk(mci, KERN_ERR,
|
amd64_mc_printk(mci, KERN_ERR,
|
||||||
"failed to map error address 0x%lx to a node\n",
|
"failed to map error address 0x%lx to a node\n",
|
||||||
(unsigned long)SystemAddress);
|
(unsigned long)sys_addr);
|
||||||
edac_mc_handle_ce_no_info(mci, EDAC_MOD_STR);
|
edac_mc_handle_ce_no_info(mci, EDAC_MOD_STR);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Now map the SystemAddress to a CSROW */
|
/* Now map the sys_addr to a CSROW */
|
||||||
csrow = sys_addr_to_csrow(src_mci, SystemAddress);
|
csrow = sys_addr_to_csrow(src_mci, sys_addr);
|
||||||
if (csrow < 0) {
|
if (csrow < 0) {
|
||||||
edac_mc_handle_ce_no_info(src_mci, EDAC_MOD_STR);
|
edac_mc_handle_ce_no_info(src_mci, EDAC_MOD_STR);
|
||||||
} else {
|
} else {
|
||||||
error_address_to_page_and_offset(SystemAddress, &page, &offset);
|
error_address_to_page_and_offset(sys_addr, &page, &offset);
|
||||||
|
|
||||||
edac_mc_handle_ce(src_mci, page, offset, syndrome, csrow,
|
edac_mc_handle_ce(src_mci, page, offset, syndrome, csrow,
|
||||||
channel, EDAC_MOD_STR);
|
channel, EDAC_MOD_STR);
|
||||||
|
@ -2108,7 +2108,7 @@ static void amd64_handle_ce(struct mem_ctl_info *mci,
|
||||||
struct err_regs *info)
|
struct err_regs *info)
|
||||||
{
|
{
|
||||||
struct amd64_pvt *pvt = mci->pvt_info;
|
struct amd64_pvt *pvt = mci->pvt_info;
|
||||||
u64 SystemAddress;
|
u64 sys_addr;
|
||||||
|
|
||||||
/* Ensure that the Error Address is VALID */
|
/* Ensure that the Error Address is VALID */
|
||||||
if ((info->nbsh & K8_NBSH_VALID_ERROR_ADDR) == 0) {
|
if ((info->nbsh & K8_NBSH_VALID_ERROR_ADDR) == 0) {
|
||||||
|
@ -2118,12 +2118,12 @@ static void amd64_handle_ce(struct mem_ctl_info *mci,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
SystemAddress = extract_error_address(mci, info);
|
sys_addr = extract_error_address(mci, info);
|
||||||
|
|
||||||
amd64_mc_printk(mci, KERN_ERR,
|
amd64_mc_printk(mci, KERN_ERR,
|
||||||
"CE ERROR_ADDRESS= 0x%llx\n", SystemAddress);
|
"CE ERROR_ADDRESS= 0x%llx\n", sys_addr);
|
||||||
|
|
||||||
pvt->ops->map_sysaddr_to_csrow(mci, info, SystemAddress);
|
pvt->ops->map_sysaddr_to_csrow(mci, info, sys_addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Handle any Un-correctable Errors (UEs) */
|
/* Handle any Un-correctable Errors (UEs) */
|
||||||
|
@ -2131,7 +2131,7 @@ static void amd64_handle_ue(struct mem_ctl_info *mci,
|
||||||
struct err_regs *info)
|
struct err_regs *info)
|
||||||
{
|
{
|
||||||
int csrow;
|
int csrow;
|
||||||
u64 SystemAddress;
|
u64 sys_addr;
|
||||||
u32 page, offset;
|
u32 page, offset;
|
||||||
struct mem_ctl_info *log_mci, *src_mci = NULL;
|
struct mem_ctl_info *log_mci, *src_mci = NULL;
|
||||||
|
|
||||||
|
@ -2144,31 +2144,31 @@ static void amd64_handle_ue(struct mem_ctl_info *mci,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
SystemAddress = extract_error_address(mci, info);
|
sys_addr = extract_error_address(mci, info);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Find out which node the error address belongs to. This may be
|
* Find out which node the error address belongs to. This may be
|
||||||
* different from the node that detected the error.
|
* different from the node that detected the error.
|
||||||
*/
|
*/
|
||||||
src_mci = find_mc_by_sys_addr(mci, SystemAddress);
|
src_mci = find_mc_by_sys_addr(mci, sys_addr);
|
||||||
if (!src_mci) {
|
if (!src_mci) {
|
||||||
amd64_mc_printk(mci, KERN_CRIT,
|
amd64_mc_printk(mci, KERN_CRIT,
|
||||||
"ERROR ADDRESS (0x%lx) value NOT mapped to a MC\n",
|
"ERROR ADDRESS (0x%lx) value NOT mapped to a MC\n",
|
||||||
(unsigned long)SystemAddress);
|
(unsigned long)sys_addr);
|
||||||
edac_mc_handle_ue_no_info(log_mci, EDAC_MOD_STR);
|
edac_mc_handle_ue_no_info(log_mci, EDAC_MOD_STR);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
log_mci = src_mci;
|
log_mci = src_mci;
|
||||||
|
|
||||||
csrow = sys_addr_to_csrow(log_mci, SystemAddress);
|
csrow = sys_addr_to_csrow(log_mci, sys_addr);
|
||||||
if (csrow < 0) {
|
if (csrow < 0) {
|
||||||
amd64_mc_printk(mci, KERN_CRIT,
|
amd64_mc_printk(mci, KERN_CRIT,
|
||||||
"ERROR_ADDRESS (0x%lx) value NOT mapped to 'csrow'\n",
|
"ERROR_ADDRESS (0x%lx) value NOT mapped to 'csrow'\n",
|
||||||
(unsigned long)SystemAddress);
|
(unsigned long)sys_addr);
|
||||||
edac_mc_handle_ue_no_info(log_mci, EDAC_MOD_STR);
|
edac_mc_handle_ue_no_info(log_mci, EDAC_MOD_STR);
|
||||||
} else {
|
} else {
|
||||||
error_address_to_page_and_offset(SystemAddress, &page, &offset);
|
error_address_to_page_and_offset(sys_addr, &page, &offset);
|
||||||
edac_mc_handle_ue(log_mci, page, offset, csrow, EDAC_MOD_STR);
|
edac_mc_handle_ue(log_mci, page, offset, csrow, EDAC_MOD_STR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue