summaryrefslogtreecommitdiff
path: root/tools/perf/util/cgroup.h
blob: 31f8dcdbd7efefac48353b90715c027cf2c13386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __CGROUP_H__
#define __CGROUP_H__

#include <linux/atomic.h>

struct option;

struct cgroup_sel {
	char *name;
	int fd;
	atomic_t refcnt;
};


extern int nr_cgroups; /* number of explicit cgroups defined */
void close_cgroup(struct cgroup_sel *cgrp);
int parse_cgroups(const struct option *opt, const char *str, int unset);

#endif /* __CGROUP_H__ */
2f8d7f416f3272894d1edf7bbff29c'>7611fb68062f8d7f416f3272894d1edf7bbff29c (patch) treebe689a1d5a48429126caf034fe3517025ae32252 /net/batman-adv parent0c744ea4f77d72b3dcebb7a8f2684633ec79be88 (diff)
thermal: thermal_hwmon: Convert to hwmon_device_register_with_info()
Booting Linux on a mx6q based board leads to the following warning: (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info(). ,so do as suggested. Also, this results in the core taking care of creating the 'name' attribute, so drop the code doing that from the thermal driver. Suggested-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'net/batman-adv')