Server IP : 184.154.167.98 / Your IP : 3.147.27.154 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/4.18.0-553.30.1.lve.el8.x86_64/include/linux/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ /* * rh_flags.h -- Red Hat flags tracking * * Copyright (c) 2018 Red Hat, Inc. -- Jiri Benc <jbenc@redhat.com> * * The intent of the flag tracking is to provide better and more focused * support. Only those flags that are of a special interest for customer * support should be tracked. * * THE FLAGS DO NOT EXPRESS ANY SUPPORT POLICIES. */ #ifndef _LINUX_RH_FLAGS_H #define _LINUX_RH_FLAGS_H #if defined CONFIG_RHEL_DIFFERENCES bool __rh_add_flag(const char *flag_name); void rh_print_flags(void); #define rh_add_flag(flag_name) \ ({ \ static bool __mark_once __read_mostly; \ bool __ret_mark_once = !__mark_once; \ \ if (!__mark_once) \ __mark_once = __rh_add_flag(flag_name); \ unlikely(__ret_mark_once); \ }) #else void rh_print_flags(void) { }; void rh_add_flag(const char *flag_name) { }; #endif #endif