diff --git a/src/modules/module_11750.c b/src/modules/module_11750.c index c0750ff13..a554d8896 100644 --- a/src/modules/module_11750.c +++ b/src/modules/module_11750.c @@ -46,7 +46,10 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE // amdgpu-pro-18.50-708488-ubuntu-18.04: CL_OUT_OF_RESOURCES if ((hc_device_param->device_vendor_id == VENDOR_ID_AMD) && (hc_device_param->has_vperm == false)) { - return true; + if ((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 1) + { + return true; + } } return false; diff --git a/src/modules/module_11760.c b/src/modules/module_11760.c index 9fb82296b..ac8ced5ca 100644 --- a/src/modules/module_11760.c +++ b/src/modules/module_11760.c @@ -46,7 +46,10 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE // amdgpu-pro-18.50-708488-ubuntu-18.04: CL_OUT_OF_RESOURCES if ((hc_device_param->device_vendor_id == VENDOR_ID_AMD) && (hc_device_param->has_vperm == false)) { - return true; + if ((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 1) + { + return true; + } } return false; diff --git a/src/modules/module_11850.c b/src/modules/module_11850.c index ca6dc8953..ee5b31dbe 100644 --- a/src/modules/module_11850.c +++ b/src/modules/module_11850.c @@ -46,7 +46,10 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE // amdgpu-pro-18.50-708488-ubuntu-18.04: CL_OUT_OF_RESOURCES if ((hc_device_param->device_vendor_id == VENDOR_ID_AMD) && (hc_device_param->has_vperm == false)) { - return true; + if ((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 1) + { + return true; + } } return false; diff --git a/src/modules/module_11860.c b/src/modules/module_11860.c index 736a0a5ac..c99e222d3 100644 --- a/src/modules/module_11860.c +++ b/src/modules/module_11860.c @@ -46,7 +46,10 @@ bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE // amdgpu-pro-18.50-708488-ubuntu-18.04: CL_OUT_OF_RESOURCES if ((hc_device_param->device_vendor_id == VENDOR_ID_AMD) && (hc_device_param->has_vperm == false)) { - return true; + if ((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 1) + { + return true; + } } return false; diff --git a/src/modules/module_14400.c b/src/modules/module_14400.c index d402276da..1075435bb 100644 --- a/src/modules/module_14400.c +++ b/src/modules/module_14400.c @@ -56,6 +56,20 @@ u32 module_pw_max (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED con return pw_max; } +bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hc_device_param_t *hc_device_param) +{ + // amdgpu-pro-18.50-708488-ubuntu-18.04: Segmentation fault + if ((hc_device_param->device_vendor_id == VENDOR_ID_AMD) && (hc_device_param->has_vperm == false)) + { + if ((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 1) + { + return true; + } + } + + return false; +} + int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED void *digest_buf, MAYBE_UNUSED salt_t *salt, MAYBE_UNUSED void *esalt_buf, MAYBE_UNUSED void *hook_salt_buf, MAYBE_UNUSED hashinfo_t *hash_info, const char *line_buf, MAYBE_UNUSED const int line_len) { u32 *digest = (u32 *) digest_buf; @@ -202,6 +216,6 @@ void module_init (module_ctx_t *module_ctx) module_ctx->module_st_hash = module_st_hash; module_ctx->module_st_pass = module_st_pass; module_ctx->module_tmp_size = MODULE_DEFAULT; - module_ctx->module_unstable_warning = MODULE_DEFAULT; + module_ctx->module_unstable_warning = module_unstable_warning; module_ctx->module_warmup_disable = MODULE_DEFAULT; }