blob: dccc2d4fe7de690b30589334bf615d0e814590b5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * BSD Process Accounting for Linux - Definitions
3 *
4 * Author: Marco van Wieringen (mvw@planets.elm.net)
5 *
6 * This header file contains the definitions needed to implement
7 * BSD-style process accounting. The kernel accounting code and all
8 * user-level programs that try to do something useful with the
9 * process accounting log must include this file.
10 *
11 * Copyright (C) 1995 - 1997 Marco van Wieringen - ELM Consultancy B.V.
12 *
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#ifndef _LINUX_ACCT_H
15#define _LINUX_ACCT_H
16
David Howells607ca462012-10-13 10:46:48 +010017#include <uapi/linux/acct.h>
Andrew Mortonff6ed402005-11-13 16:07:38 -080018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#ifdef CONFIG_BSD_PROCESS_ACCT
Al Viro7b7b1ac2005-11-07 17:13:39 -050022struct vfsmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct super_block;
Al Virof6a57032006-10-18 01:47:25 -040024struct pacct_struct;
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -070025struct pid_namespace;
Dave Youngc55b7c32010-03-10 15:24:08 -080026extern int acct_parm[]; /* for sysctl */
KaiGai Koheif6ec29a2006-06-25 05:49:25 -070027extern void acct_collect(long exitcode, int group_dead);
28extern void acct_process(void);
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -070029extern void acct_exit_ns(struct pid_namespace *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#else
KaiGai Koheif6ec29a2006-06-25 05:49:25 -070031#define acct_collect(x,y) do { } while (0)
32#define acct_process() do { } while (0)
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -070033#define acct_exit_ns(ns) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#endif
35
36/*
37 * ACCT_VERSION numbers as yet defined:
38 * 0: old format (until 2.6.7) with 16 bit uid/gid
39 * 1: extended variant (binary compatible on M68K)
40 * 2: extended variant (binary compatible on everything except M68K)
41 * 3: new binary incompatible format (64 bytes)
42 * 4: new binary incompatible format (128 bytes)
43 * 5: new binary incompatible format (128 bytes, second half)
44 *
45 */
46
David Howells989e9862011-12-13 15:07:49 +000047#undef ACCT_VERSION
48#undef AHZ
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#ifdef CONFIG_BSD_PROCESS_ACCT_V3
51#define ACCT_VERSION 3
52#define AHZ 100
53typedef struct acct_v3 acct_t;
54#else
55#ifdef CONFIG_M68K
56#define ACCT_VERSION 1
57#else
58#define ACCT_VERSION 2
59#endif
60#define AHZ (USER_HZ)
61typedef struct acct acct_t;
62#endif
63
David Woodhousea1ff0ea2006-04-25 13:57:44 +010064#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * Yet another set of HZ to *HZ helper functions.
Tim Schmielaue26148d2005-10-14 15:59:05 -070067 * See <linux/jiffies.h> for the original.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69
70static inline u32 jiffies_to_AHZ(unsigned long x)
71{
72#if (TICK_NSEC % (NSEC_PER_SEC / AHZ)) == 0
David Fries6ffc7872008-02-06 01:38:04 -080073# if HZ < AHZ
74 return x * (AHZ / HZ);
75# else
Tim Schmielaue26148d2005-10-14 15:59:05 -070076 return x / (HZ / AHZ);
David Fries6ffc7872008-02-06 01:38:04 -080077# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#else
79 u64 tmp = (u64)x * TICK_NSEC;
80 do_div(tmp, (NSEC_PER_SEC / AHZ));
81 return (long)tmp;
82#endif
83}
84
85static inline u64 nsec_to_AHZ(u64 x)
86{
87#if (NSEC_PER_SEC % AHZ) == 0
88 do_div(x, (NSEC_PER_SEC / AHZ));
89#elif (AHZ % 512) == 0
90 x *= AHZ/512;
91 do_div(x, (NSEC_PER_SEC / 512));
92#else
93 /*
94 * max relative error 5.7e-8 (1.8s per year) for AHZ <= 1024,
95 * overflow after 64.99 years.
96 * exact for AHZ=60, 72, 90, 120, 144, 180, 300, 600, 900, ...
97 */
98 x *= 9;
99 do_div(x, (unsigned long)((9ull * NSEC_PER_SEC + (AHZ/2))
100 / AHZ));
101#endif
102 return x;
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif /* _LINUX_ACCT_H */