Browse Source

Merge pull request #318 from ishitatsuyuki/patch-1

bpf: Remove unnecessary Sync bound on PerCpuArray<T>
Dave Tucker 3 years ago
parent
commit
f3574b0e70
1 changed files with 1 additions and 1 deletions
  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>,
     _t: PhantomData<T>,
 }
 }
 
 
-unsafe impl<T: Sync> Sync for PerCpuArray<T> {}
+unsafe impl<T> Sync for PerCpuArray<T> {}
 
 
 impl<T> PerCpuArray<T> {
 impl<T> PerCpuArray<T> {
     pub const fn with_max_entries(max_entries: u32, flags: u32) -> PerCpuArray<T> {
     pub const fn with_max_entries(max_entries: u32, flags: u32) -> PerCpuArray<T> {