File: trace.rs

package info (click to toggle)
linux 6.19~rc8-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,759,268 kB
  • sloc: ansic: 27,003,249; asm: 273,401; sh: 151,262; python: 81,277; makefile: 58,541; perl: 34,311; xml: 21,064; cpp: 5,984; yacc: 4,841; lex: 2,901; awk: 1,707; sed: 30; ruby: 25
file content (16 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: GPL-2.0

// Copyright (C) 2025 Google LLC.

use kernel::ffi::{c_uint, c_ulong};
use kernel::tracepoint::declare_trace;

declare_trace! {
    unsafe fn rust_binder_ioctl(cmd: c_uint, arg: c_ulong);
}

#[inline]
pub(crate) fn trace_ioctl(cmd: u32, arg: usize) {
    // SAFETY: Always safe to call.
    unsafe { rust_binder_ioctl(cmd, arg as c_ulong) }
}