bpf/macros: fix tests

Doctests were broken due to depencencies on a generated vmlinux, incorrect function
signatures, and a missing unsafe keyword.
pull/150/head
William Findlay 3 years ago
parent 65a0b83205
commit b28ae97053
No known key found for this signature in database
GPG Key ID: 7162B44E9E560373

@ -358,18 +358,20 @@ pub fn socket_filter(attrs: TokenStream, item: TokenStream) -> TokenStream {
/// # Examples /// # Examples
/// ///
/// ```no_run /// ```no_run
/// # #![allow(non_camel_case_types)]
/// use aya_bpf::{macros::fentry, programs::FEntryContext}; /// use aya_bpf::{macros::fentry, programs::FEntryContext};
/// use vmlinux::{filename, path}; /// # type filename = u32;
/// # type path = u32;
/// ///
/// #[fentry(name = "filename_lookup")] /// #[fentry(name = "filename_lookup")]
/// fn filename_lookup(ctx: FEntryContext) -> i32 { /// fn filename_lookup(ctx: FEntryContext) -> i32 {
/// match { try_filename_lookup(ctx) } { /// match unsafe { try_filename_lookup(ctx) } {
/// Ok(ret) => ret, /// Ok(ret) => ret,
/// Err(ret) => ret, /// Err(ret) => ret,
/// } /// }
/// } /// }
/// ///
/// unsafe fn try_filename_lookup(ctx: FEntryContext) -> Result<u32, u32> { /// unsafe fn try_filename_lookup(ctx: FEntryContext) -> Result<i32, i32> {
/// let _f: *const filename = ctx.arg(1); /// let _f: *const filename = ctx.arg(1);
/// let _p: *const path = ctx.arg(3); /// let _p: *const path = ctx.arg(3);
/// ///
@ -400,18 +402,20 @@ pub fn fentry(attrs: TokenStream, item: TokenStream) -> TokenStream {
/// # Examples /// # Examples
/// ///
/// ```no_run /// ```no_run
/// # #![allow(non_camel_case_types)]
/// use aya_bpf::{macros::fexit, programs::FExitContext}; /// use aya_bpf::{macros::fexit, programs::FExitContext};
/// use vmlinux::{filename, path}; /// # type filename = u32;
/// # type path = u32;
/// ///
/// #[fexit(name = "filename_lookup")] /// #[fexit(name = "filename_lookup")]
/// fn filename_lookup(ctx: FExitContext) -> i32 { /// fn filename_lookup(ctx: FExitContext) -> i32 {
/// match { try_filename_lookup(ctx) } { /// match unsafe { try_filename_lookup(ctx) } {
/// Ok(ret) => ret, /// Ok(ret) => ret,
/// Err(ret) => ret, /// Err(ret) => ret,
/// } /// }
/// } /// }
/// ///
/// unsafe fn try_filename_lookup(ctx: FExitContext) -> Result<u32, u32> { /// unsafe fn try_filename_lookup(ctx: FExitContext) -> Result<i32, i32> {
/// let _f: *const filename = ctx.arg(1); /// let _f: *const filename = ctx.arg(1);
/// let _p: *const path = ctx.arg(3); /// let _p: *const path = ctx.arg(3);
/// ///

Loading…
Cancel
Save