From 13609472353e006989ce264b2a8df57834639582 Mon Sep 17 00:00:00 2001 From: Lucas Ste <38472950+LucasSte@users.noreply.github.com> Date: Tue, 1 Jul 2025 11:53:28 -0300 Subject: [PATCH] Update SIMDs for SBPF versions. (#6784) * Update SIMDs * Fix other SIMDs * Didn't you forget your own SIMD-0179? (cherry picked from commit 9f1dd1c51b044c942f07d9a24513f5ba7dc8471e) --- feature-set/src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/feature-set/src/lib.rs b/feature-set/src/lib.rs index 944d77d2e6c964..b8c6636861194e 100644 --- a/feature-set/src/lib.rs +++ b/feature-set/src/lib.rs @@ -1321,11 +1321,11 @@ pub static FEATURE_NAMES: LazyLock> = LazyLock::n (enable_turbine_extended_fanout_experiments::id(), "enable turbine extended fanout experiments #"), (deprecate_legacy_vote_ixs::id(), "Deprecate legacy vote instructions"), (partitioned_epoch_rewards_superfeature::id(), "SIMD-0118: replaces enable_partitioned_epoch_reward to enable partitioned rewards at epoch boundary"), - (disable_sbpf_v0_execution::id(), "SIMD-0161: Disables execution of SBPFv1 programs"), - (reenable_sbpf_v0_execution::id(), "Re-enables execution of SBPFv1 programs"), - (enable_sbpf_v1_deployment_and_execution::id(), "SIMD-0161: Enables deployment and execution of SBPFv1 programs"), - (enable_sbpf_v2_deployment_and_execution::id(), "SIMD-0161: Enables deployment and execution of SBPFv2 programs"), - (enable_sbpf_v3_deployment_and_execution::id(), "SIMD-0161: Enables deployment and execution of SBPFv3 programs"), + (disable_sbpf_v0_execution::id(), "SIMD-0161: Disables execution of SBPFv0 programs"), + (reenable_sbpf_v0_execution::id(), "Re-enables execution of SBPFv0 programs"), + (enable_sbpf_v1_deployment_and_execution::id(), "SIMD-0166: Enable deployment and execution of SBPFv1 programs"), + (enable_sbpf_v2_deployment_and_execution::id(), "SIMD-0173 and SIMD-0174: Enable deployment and execution of SBPFv2 programs"), + (enable_sbpf_v3_deployment_and_execution::id(), "SIMD-0178, SIMD-0179 and SIMD-0189: Enable deployment and execution of SBPFv3 programs"), (remove_accounts_executable_flag_checks::id(), "SIMD-0162: Remove checks of accounts is_executable flag"), (lift_cpi_caller_restriction::id(), "Lift the restriction in CPI that the caller must have the callee as an instruction account #2202"), (disable_account_loader_special_case::id(), "Disable account loader special case #3513"),