Ver Fonte

bpf: Remove unnecessary Sync bound on PerCpuArray<T>

Tatsuyuki Ishi há 3 anos atrás
pai
commit
5e24cf7a29
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      bpf/aya-bpf/src/maps/per_cpu_array.rs

+ 1 - 1
bpf/aya-bpf/src/maps/per_cpu_array.rs

@@ -14,7 +14,7 @@ pub struct PerCpuArray<T> {
     _t: PhantomData<T>,
 }
 
-unsafe impl<T: Sync> Sync for PerCpuArray<T> {}
+unsafe impl<T> Sync for PerCpuArray<T> {}
 
 impl<T> PerCpuArray<T> {
     pub const fn with_max_entries(max_entries: u32, flags: u32) -> PerCpuArray<T> {