taskstats.c 16.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * taskstats.c - Export per-task statistics to userland
 *
 * Copyright (C) Shailabh Nagar, IBM Corp. 2006
 *           (C) Balbir Singh,   IBM Corp. 2006
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#include <linux/kernel.h>
#include <linux/taskstats_kern.h>
21
#include <linux/tsacct_kern.h>
22
#include <linux/delayacct.h>
23 24
#include <linux/cpumask.h>
#include <linux/percpu.h>
25
#include <linux/slab.h>
B
Balbir Singh 已提交
26 27 28 29
#include <linux/cgroupstats.h>
#include <linux/cgroup.h>
#include <linux/fs.h>
#include <linux/file.h>
30 31 32
#include <net/genetlink.h>
#include <asm/atomic.h>

33 34 35 36 37 38
/*
 * Maximum length of a cpumask that can be specified in
 * the TASKSTATS_CMD_ATTR_REGISTER/DEREGISTER_CPUMASK attribute
 */
#define TASKSTATS_CPUMASK_MAXLEN	(100+6*NR_CPUS)

39
static DEFINE_PER_CPU(__u32, taskstats_seqnum);
40
static int family_registered;
41
struct kmem_cache *taskstats_cache;
42 43 44 45 46 47 48 49

static struct genl_family family = {
	.id		= GENL_ID_GENERATE,
	.name		= TASKSTATS_GENL_NAME,
	.version	= TASKSTATS_GENL_VERSION,
	.maxattr	= TASKSTATS_CMD_ATTR_MAX,
};

A
Alexey Dobriyan 已提交
50
static const struct nla_policy taskstats_cmd_get_policy[TASKSTATS_CMD_ATTR_MAX+1] = {
51 52
	[TASKSTATS_CMD_ATTR_PID]  = { .type = NLA_U32 },
	[TASKSTATS_CMD_ATTR_TGID] = { .type = NLA_U32 },
53 54 55
	[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK] = { .type = NLA_STRING },
	[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK] = { .type = NLA_STRING },};

A
Alexey Dobriyan 已提交
56
static const struct nla_policy cgroupstats_cmd_get_policy[CGROUPSTATS_CMD_ATTR_MAX+1] = {
B
Balbir Singh 已提交
57 58 59
	[CGROUPSTATS_CMD_ATTR_FD] = { .type = NLA_U32 },
};

60 61 62
struct listener {
	struct list_head list;
	pid_t pid;
63
	char valid;
64 65
};

66 67 68 69 70 71 72 73 74 75 76
struct listener_list {
	struct rw_semaphore sem;
	struct list_head list;
};
static DEFINE_PER_CPU(struct listener_list, listener_array);

enum actions {
	REGISTER,
	DEREGISTER,
	CPU_DONT_CARE
};
77 78

static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
79
				size_t size)
80 81 82 83 84 85 86
{
	struct sk_buff *skb;
	void *reply;

	/*
	 * If new attributes are added, please revisit this allocation
	 */
87
	skb = genlmsg_new(size, GFP_KERNEL);
88 89 90 91
	if (!skb)
		return -ENOMEM;

	if (!info) {
C
Christoph Lameter 已提交
92
		int seq = this_cpu_inc_return(taskstats_seqnum) - 1;
93

94
		reply = genlmsg_put(skb, 0, seq, &family, 0, cmd);
95
	} else
96
		reply = genlmsg_put_reply(skb, info, &family, 0, cmd);
97 98 99 100 101 102 103 104 105
	if (reply == NULL) {
		nlmsg_free(skb);
		return -EINVAL;
	}

	*skbp = skb;
	return 0;
}

106 107 108
/*
 * Send taskstats data in @skb to listener with nl_pid @pid
 */
J
Johannes Berg 已提交
109
static int send_reply(struct sk_buff *skb, struct genl_info *info)
110
{
111
	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
112
	void *reply = genlmsg_data(genlhdr);
113 114 115 116 117 118 119 120
	int rc;

	rc = genlmsg_end(skb, reply);
	if (rc < 0) {
		nlmsg_free(skb);
		return rc;
	}

J
Johannes Berg 已提交
121
	return genlmsg_reply(skb, info);
122 123
}

124 125 126
/*
 * Send taskstats data in @skb to listeners registered for @cpu's exit data
 */
127 128
static void send_cpu_listeners(struct sk_buff *skb,
					struct listener_list *listeners)
129
{
130
	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
131 132 133
	struct listener *s, *tmp;
	struct sk_buff *skb_next, *skb_cur = skb;
	void *reply = genlmsg_data(genlhdr);
134
	int rc, delcount = 0;
135 136 137 138

	rc = genlmsg_end(skb, reply);
	if (rc < 0) {
		nlmsg_free(skb);
139
		return;
140 141 142
	}

	rc = 0;
143
	down_read(&listeners->sem);
144
	list_for_each_entry(s, &listeners->list, list) {
145 146 147
		skb_next = NULL;
		if (!list_is_last(&s->list, &listeners->list)) {
			skb_next = skb_clone(skb_cur, GFP_KERNEL);
148
			if (!skb_next)
149 150
				break;
		}
J
Johannes Berg 已提交
151
		rc = genlmsg_unicast(&init_net, skb_cur, s->pid);
152
		if (rc == -ECONNREFUSED) {
153 154
			s->valid = 0;
			delcount++;
155 156 157
		}
		skb_cur = skb_next;
	}
158
	up_read(&listeners->sem);
159

160 161 162
	if (skb_cur)
		nlmsg_free(skb_cur);

163
	if (!delcount)
164
		return;
165 166 167 168 169 170 171 172 173 174

	/* Delete invalidated entries */
	down_write(&listeners->sem);
	list_for_each_entry_safe(s, tmp, &listeners->list, list) {
		if (!s->valid) {
			list_del(&s->list);
			kfree(s);
		}
	}
	up_write(&listeners->sem);
175 176
}

177
static void fill_stats(struct task_struct *tsk, struct taskstats *stats)
178
{
179
	memset(stats, 0, sizeof(*stats));
180 181 182 183
	/*
	 * Each accounting subsystem adds calls to its functions to
	 * fill in relevant parts of struct taskstsats as follows
	 *
184
	 *	per-task-foo(stats, tsk);
185 186
	 */

187
	delayacct_add_tsk(stats, tsk);
188 189

	/* fill in basic acct fields */
190
	stats->version = TASKSTATS_VERSION;
191 192
	stats->nvcsw = tsk->nvcsw;
	stats->nivcsw = tsk->nivcsw;
193
	bacct_add_tsk(stats, tsk);
194

195 196
	/* fill in extended acct fields */
	xacct_add_tsk(stats, tsk);
197
}
198

199 200 201
static int fill_stats_for_pid(pid_t pid, struct taskstats *stats)
{
	struct task_struct *tsk;
202

203 204 205 206 207 208 209 210 211 212
	rcu_read_lock();
	tsk = find_task_by_vpid(pid);
	if (tsk)
		get_task_struct(tsk);
	rcu_read_unlock();
	if (!tsk)
		return -ESRCH;
	fill_stats(tsk, stats);
	put_task_struct(tsk);
	return 0;
213 214
}

215
static int fill_stats_for_tgid(pid_t tgid, struct taskstats *stats)
216
{
217
	struct task_struct *tsk, *first;
218
	unsigned long flags;
219
	int rc = -ESRCH;
220

221 222 223 224
	/*
	 * Add additional stats from live tasks except zombie thread group
	 * leaders who are already counted with the dead tasks
	 */
225
	rcu_read_lock();
226
	first = find_task_by_vpid(tgid);
227

228 229
	if (!first || !lock_task_sighand(first, &flags))
		goto out;
230

231 232
	if (first->signal->stats)
		memcpy(stats, first->signal->stats, sizeof(*stats));
233 234
	else
		memset(stats, 0, sizeof(*stats));
235

236
	tsk = first;
237
	do {
238
		if (tsk->exit_state)
239
			continue;
240
		/*
241
		 * Accounting subsystem can call its functions here to
242 243
		 * fill in relevant parts of struct taskstsats as follows
		 *
244
		 *	per-task-foo(stats, tsk);
245
		 */
246
		delayacct_add_tsk(stats, tsk);
247

248 249
		stats->nvcsw += tsk->nvcsw;
		stats->nivcsw += tsk->nivcsw;
250
	} while_each_thread(first, tsk);
251

252 253 254 255 256 257
	unlock_task_sighand(first, &flags);
	rc = 0;
out:
	rcu_read_unlock();

	stats->version = TASKSTATS_VERSION;
258
	/*
259
	 * Accounting subsystems can also add calls here to modify
260
	 * fields of taskstats.
261
	 */
262
	return rc;
263 264 265 266 267 268
}

static void fill_tgid_exit(struct task_struct *tsk)
{
	unsigned long flags;

269
	spin_lock_irqsave(&tsk->sighand->siglock, flags);
270 271 272 273 274 275 276 277 278 279 280
	if (!tsk->signal->stats)
		goto ret;

	/*
	 * Each accounting subsystem calls its functions here to
	 * accumalate its per-task stats for tsk, into the per-tgid structure
	 *
	 *	per-task-foo(tsk->signal->stats, tsk);
	 */
	delayacct_add_tsk(tsk->signal->stats, tsk);
ret:
281
	spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
282
	return;
283 284
}

285
static int add_del_listener(pid_t pid, const struct cpumask *mask, int isadd)
286 287
{
	struct listener_list *listeners;
288
	struct listener *s, *tmp, *s2;
289
	unsigned int cpu;
290

291
	if (!cpumask_subset(mask, cpu_possible_mask))
292 293
		return -EINVAL;

294
	s = NULL;
295
	if (isadd == REGISTER) {
296
		for_each_cpu(cpu, mask) {
297 298 299
			if (!s)
				s = kmalloc_node(sizeof(struct listener),
						 GFP_KERNEL, cpu_to_node(cpu));
300 301 302 303
			if (!s)
				goto cleanup;
			s->pid = pid;
			INIT_LIST_HEAD(&s->list);
304
			s->valid = 1;
305 306 307

			listeners = &per_cpu(listener_array, cpu);
			down_write(&listeners->sem);
308 309 310 311
			list_for_each_entry_safe(s2, tmp, &listeners->list, list) {
				if (s2->pid == pid)
					goto next_cpu;
			}
312
			list_add(&s->list, &listeners->list);
313 314
			s = NULL;
next_cpu:
315 316
			up_write(&listeners->sem);
		}
317
		kfree(s);
318 319 320 321 322
		return 0;
	}

	/* Deregister or cleanup */
cleanup:
323
	for_each_cpu(cpu, mask) {
324 325 326 327 328 329 330 331 332 333 334 335 336 337
		listeners = &per_cpu(listener_array, cpu);
		down_write(&listeners->sem);
		list_for_each_entry_safe(s, tmp, &listeners->list, list) {
			if (s->pid == pid) {
				list_del(&s->list);
				kfree(s);
				break;
			}
		}
		up_write(&listeners->sem);
	}
	return 0;
}

338
static int parse(struct nlattr *na, struct cpumask *mask)
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
{
	char *data;
	int len;
	int ret;

	if (na == NULL)
		return 1;
	len = nla_len(na);
	if (len > TASKSTATS_CPUMASK_MAXLEN)
		return -E2BIG;
	if (len < 1)
		return -EINVAL;
	data = kmalloc(len, GFP_KERNEL);
	if (!data)
		return -ENOMEM;
	nla_strlcpy(data, na, len);
355
	ret = cpulist_parse(data, mask);
356 357 358 359
	kfree(data);
	return ret;
}

360
#if defined(CONFIG_64BIT) && !defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
361 362 363
#define TASKSTATS_NEEDS_PADDING 1
#endif

364
static struct taskstats *mk_reply(struct sk_buff *skb, int type, u32 pid)
365
{
366
	struct nlattr *na, *ret;
367 368
	int aggr;

369 370 371
	aggr = (type == TASKSTATS_TYPE_PID)
			? TASKSTATS_TYPE_AGGR_PID
			: TASKSTATS_TYPE_AGGR_TGID;
372

373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
	/*
	 * The taskstats structure is internally aligned on 8 byte
	 * boundaries but the layout of the aggregrate reply, with
	 * two NLA headers and the pid (each 4 bytes), actually
	 * force the entire structure to be unaligned. This causes
	 * the kernel to issue unaligned access warnings on some
	 * architectures like ia64. Unfortunately, some software out there
	 * doesn't properly unroll the NLA packet and assumes that the start
	 * of the taskstats structure will always be 20 bytes from the start
	 * of the netlink payload. Aligning the start of the taskstats
	 * structure breaks this software, which we don't want. So, for now
	 * the alignment only happens on architectures that require it
	 * and those users will have to update to fixed versions of those
	 * packages. Space is reserved in the packet only when needed.
	 * This ifdef should be removed in several years e.g. 2012 once
	 * we can be confident that fixed versions are installed on most
	 * systems. We add the padding before the aggregate since the
	 * aggregate is already a defined type.
	 */
#ifdef TASKSTATS_NEEDS_PADDING
	if (nla_put(skb, TASKSTATS_TYPE_NULL, 0, NULL) < 0)
		goto err;
#endif
396
	na = nla_nest_start(skb, aggr);
397 398
	if (!na)
		goto err;
399 400

	if (nla_put(skb, type, sizeof(pid), &pid) < 0)
401 402 403 404
		goto err;
	ret = nla_reserve(skb, TASKSTATS_TYPE_STATS, sizeof(struct taskstats));
	if (!ret)
		goto err;
405 406
	nla_nest_end(skb, na);

407 408 409
	return nla_data(ret);
err:
	return NULL;
410 411
}

B
Balbir Singh 已提交
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
static int cgroupstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
{
	int rc = 0;
	struct sk_buff *rep_skb;
	struct cgroupstats *stats;
	struct nlattr *na;
	size_t size;
	u32 fd;
	struct file *file;
	int fput_needed;

	na = info->attrs[CGROUPSTATS_CMD_ATTR_FD];
	if (!na)
		return -EINVAL;

	fd = nla_get_u32(info->attrs[CGROUPSTATS_CMD_ATTR_FD]);
	file = fget_light(fd, &fput_needed);
429 430
	if (!file)
		return 0;
B
Balbir Singh 已提交
431

432
	size = nla_total_size(sizeof(struct cgroupstats));
B
Balbir Singh 已提交
433

434 435 436 437
	rc = prepare_reply(info, CGROUPSTATS_CMD_NEW, &rep_skb,
				size);
	if (rc < 0)
		goto err;
B
Balbir Singh 已提交
438

439 440 441 442
	na = nla_reserve(rep_skb, CGROUPSTATS_TYPE_CGROUP_STATS,
				sizeof(struct cgroupstats));
	stats = nla_data(na);
	memset(stats, 0, sizeof(*stats));
B
Balbir Singh 已提交
443

444 445 446 447
	rc = cgroupstats_build(stats, file->f_dentry);
	if (rc < 0) {
		nlmsg_free(rep_skb);
		goto err;
B
Balbir Singh 已提交
448 449
	}

J
Johannes Berg 已提交
450
	rc = send_reply(rep_skb, info);
451

B
Balbir Singh 已提交
452
err:
453
	fput_light(file, fput_needed);
B
Balbir Singh 已提交
454 455 456
	return rc;
}

457
static int cmd_attr_register_cpumask(struct genl_info *info)
458
{
459
	cpumask_var_t mask;
460
	int rc;
461 462 463 464

	if (!alloc_cpumask_var(&mask, GFP_KERNEL))
		return -ENOMEM;
	rc = parse(info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK], mask);
465
	if (rc < 0)
466 467 468 469 470 471 472 473 474 475 476
		goto out;
	rc = add_del_listener(info->snd_pid, mask, REGISTER);
out:
	free_cpumask_var(mask);
	return rc;
}

static int cmd_attr_deregister_cpumask(struct genl_info *info)
{
	cpumask_var_t mask;
	int rc;
477

478 479
	if (!alloc_cpumask_var(&mask, GFP_KERNEL))
		return -ENOMEM;
480
	rc = parse(info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK], mask);
481
	if (rc < 0)
482 483 484
		goto out;
	rc = add_del_listener(info->snd_pid, mask, DEREGISTER);
out:
485
	free_cpumask_var(mask);
486 487 488
	return rc;
}

489 490 491 492 493 494 495 496 497 498 499 500
static size_t taskstats_packet_size(void)
{
	size_t size;

	size = nla_total_size(sizeof(u32)) +
		nla_total_size(sizeof(struct taskstats)) + nla_total_size(0);
#ifdef TASKSTATS_NEEDS_PADDING
	size += nla_total_size(0); /* Padding for alignment */
#endif
	return size;
}

501 502 503 504 505 506 507
static int cmd_attr_pid(struct genl_info *info)
{
	struct taskstats *stats;
	struct sk_buff *rep_skb;
	size_t size;
	u32 pid;
	int rc;
508

509
	size = taskstats_packet_size();
510

511
	rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
512 513 514
	if (rc < 0)
		return rc;

515
	rc = -EINVAL;
516 517 518
	pid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_PID]);
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, pid);
	if (!stats)
519 520
		goto err;

521
	rc = fill_stats_for_pid(pid, stats);
522 523
	if (rc < 0)
		goto err;
J
Johannes Berg 已提交
524
	return send_reply(rep_skb, info);
525 526 527 528 529
err:
	nlmsg_free(rep_skb);
	return rc;
}

530 531 532 533 534 535 536 537
static int cmd_attr_tgid(struct genl_info *info)
{
	struct taskstats *stats;
	struct sk_buff *rep_skb;
	size_t size;
	u32 tgid;
	int rc;

538
	size = taskstats_packet_size();
539 540 541 542 543 544 545 546 547 548 549

	rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
	if (rc < 0)
		return rc;

	rc = -EINVAL;
	tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]);
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tgid);
	if (!stats)
		goto err;

550
	rc = fill_stats_for_tgid(tgid, stats);
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
	if (rc < 0)
		goto err;
	return send_reply(rep_skb, info);
err:
	nlmsg_free(rep_skb);
	return rc;
}

static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
{
	if (info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK])
		return cmd_attr_register_cpumask(info);
	else if (info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK])
		return cmd_attr_deregister_cpumask(info);
	else if (info->attrs[TASKSTATS_CMD_ATTR_PID])
		return cmd_attr_pid(info);
	else if (info->attrs[TASKSTATS_CMD_ATTR_TGID])
		return cmd_attr_tgid(info);
	else
		return -EINVAL;
}

573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
static struct taskstats *taskstats_tgid_alloc(struct task_struct *tsk)
{
	struct signal_struct *sig = tsk->signal;
	struct taskstats *stats;

	if (sig->stats || thread_group_empty(tsk))
		goto ret;

	/* No problem if kmem_cache_zalloc() fails */
	stats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL);

	spin_lock_irq(&tsk->sighand->siglock);
	if (!sig->stats) {
		sig->stats = stats;
		stats = NULL;
	}
	spin_unlock_irq(&tsk->sighand->siglock);

	if (stats)
		kmem_cache_free(taskstats_cache, stats);
ret:
	return sig->stats;
}

597
/* Send pid data out on exit */
598
void taskstats_exit(struct task_struct *tsk, int group_dead)
599 600
{
	int rc;
601
	struct listener_list *listeners;
602
	struct taskstats *stats;
603 604 605 606
	struct sk_buff *rep_skb;
	size_t size;
	int is_thread_group;

607
	if (!family_registered)
608 609 610 611 612
		return;

	/*
	 * Size includes space for nested attributes
	 */
613
	size = taskstats_packet_size();
614

615
	is_thread_group = !!taskstats_tgid_alloc(tsk);
616 617 618 619 620 621 622
	if (is_thread_group) {
		/* PID + STATS + TGID + STATS */
		size = 2 * size;
		/* fill the tsk->signal->stats structure */
		fill_tgid_exit(tsk);
	}

C
Christoph Lameter 已提交
623
	listeners = __this_cpu_ptr(&listener_array);
624 625 626
	if (list_empty(&listeners->list))
		return;

627
	rc = prepare_reply(NULL, TASKSTATS_CMD_NEW, &rep_skb, size);
628
	if (rc < 0)
629
		return;
630

631 632
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, tsk->pid);
	if (!stats)
633
		goto err;
634

635
	fill_stats(tsk, stats);
636 637

	/*
638
	 * Doesn't matter if tsk is the leader or the last group member leaving
639
	 */
640
	if (!is_thread_group || !group_dead)
641
		goto send;
642

643 644
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tsk->tgid);
	if (!stats)
645
		goto err;
646 647

	memcpy(stats, tsk->signal->stats, sizeof(*stats));
648

649
send:
650
	send_cpu_listeners(rep_skb, listeners);
651
	return;
652
err:
653 654 655 656 657
	nlmsg_free(rep_skb);
}

static struct genl_ops taskstats_ops = {
	.cmd		= TASKSTATS_CMD_GET,
658
	.doit		= taskstats_user_cmd,
659 660 661
	.policy		= taskstats_cmd_get_policy,
};

B
Balbir Singh 已提交
662 663 664 665 666 667
static struct genl_ops cgroupstats_ops = {
	.cmd		= CGROUPSTATS_CMD_GET,
	.doit		= cgroupstats_user_cmd,
	.policy		= cgroupstats_cmd_get_policy,
};

668 669 670
/* Needed early in initialization */
void __init taskstats_init_early(void)
{
671 672
	unsigned int i;

673
	taskstats_cache = KMEM_CACHE(taskstats, SLAB_PANIC);
674 675 676 677
	for_each_possible_cpu(i) {
		INIT_LIST_HEAD(&(per_cpu(listener_array, i).list));
		init_rwsem(&(per_cpu(listener_array, i).sem));
	}
678 679 680 681 682 683 684 685 686 687 688 689 690 691
}

static int __init taskstats_init(void)
{
	int rc;

	rc = genl_register_family(&family);
	if (rc)
		return rc;

	rc = genl_register_ops(&family, &taskstats_ops);
	if (rc < 0)
		goto err;

B
Balbir Singh 已提交
692 693 694 695
	rc = genl_register_ops(&family, &cgroupstats_ops);
	if (rc < 0)
		goto err_cgroup_ops;

696
	family_registered = 1;
697
	pr_info("registered taskstats version %d\n", TASKSTATS_GENL_VERSION);
698
	return 0;
B
Balbir Singh 已提交
699 700
err_cgroup_ops:
	genl_unregister_ops(&family, &taskstats_ops);
701 702 703 704 705 706 707 708 709 710
err:
	genl_unregister_family(&family);
	return rc;
}

/*
 * late initcall ensures initialization of statistics collection
 * mechanisms precedes initialization of the taskstats interface
 */
late_initcall(taskstats_init);