2006-07-14 03:24:40 -04:00
|
|
|
/* taskstats_kern.h - kernel header for per-task statistics interface
|
|
|
|
*
|
|
|
|
* Copyright (C) Shailabh Nagar, IBM Corp. 2006
|
|
|
|
* (C) Balbir Singh, IBM Corp. 2006
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_TASKSTATS_KERN_H
|
|
|
|
#define _LINUX_TASKSTATS_KERN_H
|
|
|
|
|
|
|
|
#include <linux/taskstats.h>
|
|
|
|
#include <linux/sched.h>
|
2006-07-14 03:24:46 -04:00
|
|
|
#include <net/genetlink.h>
|
2006-07-14 03:24:40 -04:00
|
|
|
|
|
|
|
#ifdef CONFIG_TASKSTATS
|
|
|
|
extern kmem_cache_t *taskstats_cache;
|
2006-07-14 03:24:41 -04:00
|
|
|
extern struct mutex taskstats_exit_mutex;
|
2006-07-14 03:24:40 -04:00
|
|
|
|
2006-07-14 03:24:44 -04:00
|
|
|
static inline void taskstats_exit_free(struct taskstats *tidstats)
|
2006-07-14 03:24:40 -04:00
|
|
|
{
|
|
|
|
if (tidstats)
|
|
|
|
kmem_cache_free(taskstats_cache, tidstats);
|
|
|
|
}
|
|
|
|
|
2006-07-14 03:24:44 -04:00
|
|
|
static inline void taskstats_tgid_init(struct signal_struct *sig)
|
|
|
|
{
|
|
|
|
spin_lock_init(&sig->stats_lock);
|
|
|
|
sig->stats = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void taskstats_tgid_alloc(struct signal_struct *sig)
|
|
|
|
{
|
|
|
|
struct taskstats *stats;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
stats = kmem_cache_zalloc(taskstats_cache, SLAB_KERNEL);
|
|
|
|
if (!stats)
|
|
|
|
return;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&sig->stats_lock, flags);
|
|
|
|
if (!sig->stats) {
|
|
|
|
sig->stats = stats;
|
|
|
|
stats = NULL;
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&sig->stats_lock, flags);
|
|
|
|
|
|
|
|
if (stats)
|
|
|
|
kmem_cache_free(taskstats_cache, stats);
|
|
|
|
}
|
2006-07-14 03:24:40 -04:00
|
|
|
|
2006-07-14 03:24:44 -04:00
|
|
|
static inline void taskstats_tgid_free(struct signal_struct *sig)
|
|
|
|
{
|
|
|
|
struct taskstats *stats = NULL;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&sig->stats_lock, flags);
|
|
|
|
if (sig->stats) {
|
|
|
|
stats = sig->stats;
|
|
|
|
sig->stats = NULL;
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&sig->stats_lock, flags);
|
|
|
|
if (stats)
|
|
|
|
kmem_cache_free(taskstats_cache, stats);
|
|
|
|
}
|
|
|
|
|
2006-07-14 03:24:47 -04:00
|
|
|
extern void taskstats_exit_alloc(struct taskstats **, unsigned int *);
|
|
|
|
extern void taskstats_exit_send(struct task_struct *, struct taskstats *, int, unsigned int);
|
2006-07-14 03:24:44 -04:00
|
|
|
extern void taskstats_init_early(void);
|
|
|
|
extern void taskstats_tgid_alloc(struct signal_struct *);
|
2006-07-14 03:24:40 -04:00
|
|
|
#else
|
2006-07-14 03:24:47 -04:00
|
|
|
static inline void taskstats_exit_alloc(struct taskstats **ptidstats, unsigned int *mycpu)
|
2006-07-14 03:24:40 -04:00
|
|
|
{}
|
2006-07-14 03:24:44 -04:00
|
|
|
static inline void taskstats_exit_free(struct taskstats *ptidstats)
|
2006-07-14 03:24:40 -04:00
|
|
|
{}
|
|
|
|
static inline void taskstats_exit_send(struct task_struct *tsk,
|
2006-07-14 03:24:44 -04:00
|
|
|
struct taskstats *tidstats,
|
2006-07-14 03:24:47 -04:00
|
|
|
int group_dead, unsigned int cpu)
|
2006-07-14 03:24:44 -04:00
|
|
|
{}
|
|
|
|
static inline void taskstats_tgid_init(struct signal_struct *sig)
|
|
|
|
{}
|
|
|
|
static inline void taskstats_tgid_alloc(struct signal_struct *sig)
|
|
|
|
{}
|
|
|
|
static inline void taskstats_tgid_free(struct signal_struct *sig)
|
2006-07-14 03:24:40 -04:00
|
|
|
{}
|
|
|
|
static inline void taskstats_init_early(void)
|
|
|
|
{}
|
|
|
|
#endif /* CONFIG_TASKSTATS */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|