aya: rename ProgramArray::unset to ProgramArray::clear_index

pull/1/head
Alessandro Decina 4 years ago
parent 9ad2a5e72d
commit f464279740

@ -97,8 +97,9 @@ impl<T: Deref<Target = Map> + DerefMut<Target = Map>> ProgramArray<T> {
/// Clears the value at index in the jump table. /// Clears the value at index in the jump table.
/// ///
/// Calling `bpf_tail_call(prog_array, index)` on an index that has been results in a failure. /// Calling `bpf_tail_call(prog_array, index)` on an index that has been cleared returns an
pub fn unset(&mut self, index: &u32) -> Result<(), MapError> { /// error.
pub fn clear_index(&mut self, index: &u32) -> Result<(), MapError> {
let fd = self.inner.fd_or_err()?; let fd = self.inner.fd_or_err()?;
self.check_bounds(*index)?; self.check_bounds(*index)?;
bpf_map_delete_elem(fd, index) bpf_map_delete_elem(fd, index)

Loading…
Cancel
Save