Browse Source

aya: PerCpuKernelMem doesn't need to be public

Alessandro Decina 4 years ago
parent
commit
aa3a30d196
1 changed files with 1 additions and 1 deletions
  1. 1 1
      aya/src/maps/mod.rs

+ 1 - 1
aya/src/maps/mod.rs

@@ -282,7 +282,7 @@ impl TryFrom<u32> for bpf_map_type {
         })
     }
 }
-pub struct PerCpuKernelMem {
+pub(crate) struct PerCpuKernelMem {
     bytes: Vec<u8>,
 }