| Server IP : 104.21.25.180 / Your IP : 104.23.197.122 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/systemtap/runtime/linux/ |
Upload File : |
#include <linux/relay.h>
/* commit 4e6b225dab95a4d43b3e7bdc7e79cbca4c145596
* Author: Al Viro <[email protected]>
* Date: Sun Jul 24 04:33:43 2011 -0400
*
* switch debugfs to umode_t
*/
static struct dentry *
umode_t_callback(const char *filename,
struct dentry *parent,
umode_t mode, /* as opposed to mode_t=__kernel_mode_t */
struct rchan_buf *buf,
int *is_global)
{
(void) filename;
(void) parent;
(void) mode;
(void) buf;
(void) is_global;
return NULL;
}
static struct rchan_callbacks __stp_relay_callbacks = {
.create_buf_file = umode_t_callback,
};
void foo (void) {
(void) __stp_relay_callbacks.create_buf_file;
}