1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 2 /* 3 * BSD Process Accounting for Linux - Definit 3 * BSD Process Accounting for Linux - Definitions 4 * 4 * 5 * Author: Marco van Wieringen (mvw@planets.e 5 * Author: Marco van Wieringen (mvw@planets.elm.net) 6 * 6 * 7 * This header file contains the definitions 7 * This header file contains the definitions needed to implement 8 * BSD-style process accounting. The kernel a 8 * BSD-style process accounting. The kernel accounting code and all 9 * user-level programs that try to do somethi 9 * user-level programs that try to do something useful with the 10 * process accounting log must include this f 10 * process accounting log must include this file. 11 * 11 * 12 * Copyright (C) 1995 - 1997 Marco van Wierin 12 * Copyright (C) 1995 - 1997 Marco van Wieringen - ELM Consultancy B.V. 13 * 13 * 14 */ 14 */ 15 #ifndef _LINUX_ACCT_H 15 #ifndef _LINUX_ACCT_H 16 #define _LINUX_ACCT_H 16 #define _LINUX_ACCT_H 17 17 18 #include <uapi/linux/acct.h> 18 #include <uapi/linux/acct.h> 19 19 20 20 21 21 22 #ifdef CONFIG_BSD_PROCESS_ACCT 22 #ifdef CONFIG_BSD_PROCESS_ACCT >> 23 struct vfsmount; >> 24 struct super_block; >> 25 struct pacct_struct; 23 struct pid_namespace; 26 struct pid_namespace; >> 27 extern int acct_parm[]; /* for sysctl */ 24 extern void acct_collect(long exitcode, int gr 28 extern void acct_collect(long exitcode, int group_dead); 25 extern void acct_process(void); 29 extern void acct_process(void); 26 extern void acct_exit_ns(struct pid_namespace 30 extern void acct_exit_ns(struct pid_namespace *); 27 #else 31 #else 28 #define acct_collect(x,y) do { } while ( 32 #define acct_collect(x,y) do { } while (0) 29 #define acct_process() do { } while ( 33 #define acct_process() do { } while (0) 30 #define acct_exit_ns(ns) do { } while ( 34 #define acct_exit_ns(ns) do { } while (0) 31 #endif 35 #endif 32 36 33 /* 37 /* 34 * ACCT_VERSION numbers as yet defined: 38 * ACCT_VERSION numbers as yet defined: 35 * 0: old format (until 2.6.7) with 16 bit uid 39 * 0: old format (until 2.6.7) with 16 bit uid/gid 36 * 1: extended variant (binary compatible on M 40 * 1: extended variant (binary compatible on M68K) 37 * 2: extended variant (binary compatible on e 41 * 2: extended variant (binary compatible on everything except M68K) 38 * 3: new binary incompatible format (64 bytes 42 * 3: new binary incompatible format (64 bytes) 39 * 4: new binary incompatible format (128 byte 43 * 4: new binary incompatible format (128 bytes) 40 * 5: new binary incompatible format (128 byte 44 * 5: new binary incompatible format (128 bytes, second half) 41 * 45 * 42 */ 46 */ 43 47 44 #undef ACCT_VERSION 48 #undef ACCT_VERSION 45 #undef AHZ 49 #undef AHZ 46 50 47 #ifdef CONFIG_BSD_PROCESS_ACCT_V3 51 #ifdef CONFIG_BSD_PROCESS_ACCT_V3 48 #define ACCT_VERSION 3 52 #define ACCT_VERSION 3 49 #define AHZ 100 53 #define AHZ 100 50 typedef struct acct_v3 acct_t; 54 typedef struct acct_v3 acct_t; 51 #else 55 #else 52 #ifdef CONFIG_M68K 56 #ifdef CONFIG_M68K 53 #define ACCT_VERSION 1 57 #define ACCT_VERSION 1 54 #else 58 #else 55 #define ACCT_VERSION 2 59 #define ACCT_VERSION 2 56 #endif 60 #endif 57 #define AHZ (USER_HZ) 61 #define AHZ (USER_HZ) 58 typedef struct acct acct_t; 62 typedef struct acct acct_t; 59 #endif 63 #endif 60 64 61 #include <linux/jiffies.h> 65 #include <linux/jiffies.h> 62 /* 66 /* 63 * Yet another set of HZ to *HZ helper functio 67 * Yet another set of HZ to *HZ helper functions. 64 * See <linux/jiffies.h> for the original. 68 * See <linux/jiffies.h> for the original. 65 */ 69 */ 66 70 67 static inline u32 jiffies_to_AHZ(unsigned long 71 static inline u32 jiffies_to_AHZ(unsigned long x) 68 { 72 { 69 #if (TICK_NSEC % (NSEC_PER_SEC / AHZ)) == 0 73 #if (TICK_NSEC % (NSEC_PER_SEC / AHZ)) == 0 70 # if HZ < AHZ 74 # if HZ < AHZ 71 return x * (AHZ / HZ); 75 return x * (AHZ / HZ); 72 # else 76 # else 73 return x / (HZ / AHZ); 77 return x / (HZ / AHZ); 74 # endif 78 # endif 75 #else 79 #else 76 u64 tmp = (u64)x * TICK_NSEC; 80 u64 tmp = (u64)x * TICK_NSEC; 77 do_div(tmp, (NSEC_PER_SEC / AHZ)); 81 do_div(tmp, (NSEC_PER_SEC / AHZ)); 78 return (long)tmp; 82 return (long)tmp; 79 #endif 83 #endif 80 } 84 } 81 85 82 static inline u64 nsec_to_AHZ(u64 x) 86 static inline u64 nsec_to_AHZ(u64 x) 83 { 87 { 84 #if (NSEC_PER_SEC % AHZ) == 0 88 #if (NSEC_PER_SEC % AHZ) == 0 85 do_div(x, (NSEC_PER_SEC / AHZ)); 89 do_div(x, (NSEC_PER_SEC / AHZ)); 86 #elif (AHZ % 512) == 0 90 #elif (AHZ % 512) == 0 87 x *= AHZ/512; 91 x *= AHZ/512; 88 do_div(x, (NSEC_PER_SEC / 512)); 92 do_div(x, (NSEC_PER_SEC / 512)); 89 #else 93 #else 90 /* 94 /* 91 * max relative error 5.7e-8 (1.8s per 95 * max relative error 5.7e-8 (1.8s per year) for AHZ <= 1024, 92 * overflow after 64.99 years. 96 * overflow after 64.99 years. 93 * exact for AHZ=60, 72, 90, 120, 144, 97 * exact for AHZ=60, 72, 90, 120, 144, 180, 300, 600, 900, ... 94 */ 98 */ 95 x *= 9; 99 x *= 9; 96 do_div(x, (unsigned long)((9ull * NSEC 100 do_div(x, (unsigned long)((9ull * NSEC_PER_SEC + (AHZ/2)) 97 / AHZ)); 101 / AHZ)); 98 #endif 102 #endif 99 return x; 103 return x; 100 } 104 } 101 105 102 #endif /* _LINUX_ACCT_H */ 106 #endif /* _LINUX_ACCT_H */ 103 107
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.