Searched refs:err_rec (Results 1 – 7 of 7) sorted by relevance
295 struct eeprom_table_record *err_rec = in amdgpu_umc_fill_error_record() local298 err_rec->address = err_addr; in amdgpu_umc_fill_error_record()300 err_rec->retired_page = retired_page >> AMDGPU_GPU_PAGE_SHIFT; in amdgpu_umc_fill_error_record()301 err_rec->ts = (uint64_t)ktime_get_real_seconds(); in amdgpu_umc_fill_error_record()302 err_rec->err_type = AMDGPU_RAS_EEPROM_ERR_NON_RECOVERABLE; in amdgpu_umc_fill_error_record()303 err_rec->cu = 0; in amdgpu_umc_fill_error_record()304 err_rec->mem_channel = channel_index; in amdgpu_umc_fill_error_record()305 err_rec->mcumc_id = umc_inst; in amdgpu_umc_fill_error_record()
156 struct eeprom_table_record err_rec; in amdgpu_reserve_page_direct() local173 memset(&err_rec, 0x0, sizeof(struct eeprom_table_record)); in amdgpu_reserve_page_direct()174 err_data.err_addr = &err_rec; in amdgpu_reserve_page_direct()
3960 struct be_error_recovery *err_rec = &adapter->error_recovery; in be_cancel_err_detection() local3966 cancel_delayed_work_sync(&err_rec->err_detection_work); in be_cancel_err_detection()4631 struct be_error_recovery *err_rec = &adapter->error_recovery; in be_schedule_err_detection() local4636 queue_delayed_work(be_err_recovery_workq, &err_rec->err_detection_work, in be_schedule_err_detection()5266 struct be_error_recovery *err_rec = &adapter->error_recovery; in be_err_is_recoverable() local5284 if (time_before_eq(jiffies - err_rec->probe_time, initial_idle_time)) { in be_err_is_recoverable()5291 if (err_rec->last_recovery_time && time_before_eq( in be_err_is_recoverable()5292 jiffies - err_rec->last_recovery_time, recovery_interval)) { in be_err_is_recoverable()5299 if (ue_err_code == err_rec->last_err_code) { in be_err_is_recoverable()5305 err_rec->last_recovery_time = jiffies; in be_err_is_recoverable()[all …]
1288 #define NVME_ERR_REC_TLER(err_rec) (err_rec & 0xffff) argument1289 #define NVME_ERR_REC_DULBE(err_rec) (err_rec & 0x10000) argument
273 uint32_t err_rec; member
2706 if (NVME_ERR_REC_DULBE(ns->features.err_rec)) { in nvme_verify()3289 if (NVME_ERR_REC_DULBE(sns->features.err_rec)) { in nvme_do_copy()3452 if (NVME_ERR_REC_DULBE(ns->features.err_rec)) { in nvme_compare()3651 if (NVME_ERR_REC_DULBE(ns->features.err_rec)) { in nvme_read()6265 result = ns->features.err_rec; in nvme_get_feature()6517 ns->features.err_rec = dw11; in nvme_set_feature()6526 ns->features.err_rec = dw11; in nvme_set_feature()
658 typedef struct err_rec { struct