/* * Copyright (C) 2016 Renesas Electronics Corp. * * 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. */ #ifndef __DT_BINDINGS_CLOCK_R8A7796_CPG_MSSR_H__ #define __DT_BINDINGS_CLOCK_R8A7796_CPG_MSSR_H__ #include /* r8a7796 CPG Core Clocks */ #define R8A7796_CLK_Z 0 #define R8A7796_CLK_Z2 1 #define R8A7796_CLK_ZR 2 #define R8A7796_CLK_ZG 3 #define R8A7796_CLK_ZTR 4 #define R8A7796_CLK_ZTRD2 5 #define R8A7796_CLK_ZT 6 #define R8A7796_CLK_ZX 7 #define R8A7796_CLK_S0D1 8 #define R8A7796_CLK_S0D2 9 #define R8A7796_CLK_S0D3 10 #define R8A7796_CLK_S0D4 11 #define R8A7796_CLK_S0D6 12 #define R8A7796_CLK_S0D8 13 #define R8A7796_CLK_S0D12 14 #define R8A7796_CLK_S1D1 15 #define R8A7796_CLK_S1D2 16 #define R8A7796_CLK_S1D4 17 #define R8A7796_CLK_S2D1 18 #define R8A7796_CLK_S2D2 19 #define R8A7796_CLK_S2D4 20 #define R8A7796_CLK_S3D1 21 #define R8A7796_CLK_S3D2 22 #define R8A7796_CLK_S3D4 23 #define R8A7796_CLK_LB 24 #define R8A7796_CLK_CL 25 #define R8A7796_CLK_ZB3 26 #define R8A7796_CLK_ZB3D2 27 #define R8A7796_CLK_ZB3D4 28 #define R8A7796_CLK_CR 29 #define R8A7796_CLK_CRD2 30 #define R8A7796_CLK_SD0H 31 #define R8A7796_CLK_SD0 32 #define R8A7796_CLK_SD1H 33 #define R8A7796_CLK_SD1 34 #define R8A7796_CLK_SD2H 35 #define R8A7796_CLK_SD2 36 #define R8A7796_CLK_SD3H 37 #define R8A7796_CLK_SD3 38 #define R8A7796_CLK_SSP2 39 #define R8A7796_CLK_SSP1 40 #define R8A7796_CLK_SSPRS 41 #define R8A7796_CLK_RPC 42 #define R8A7796_CLK_RPCD2 43 #define R8A7796_CLK_MSO 44 #define R8A7796_CLK_CANFD 45 #define R8A7796_CLK_HDMI 46 #define R8A7796_CLK_CSI0 47 #define R8A7796_CLK_CSIREF 48 #define R8A7796_CLK_CP 49 #define R8A7796_CLK_CPEX 50 #define R8A7796_CLK_R 51 #define R8A7796_CLK_OSC 52 #endif /* __DT_BINDINGS_CLOCK_R8A7796_CPG_MSSR_H__ */ =nds-private-remove&id=07cd12945551b63ecb1a349d50a6d69d1d6feb4a'>commitdiff
path: root/tools/perf/util/data.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2017-01-26 16:47:28 -0500
committerTejun Heo <tj@kernel.org>2017-01-26 16:47:28 -0500
commit07cd12945551b63ecb1a349d50a6d69d1d6feb4a (patch)
tree75f65eba7eac9277971082a2d5a4cf1370562c0c /tools/perf/util/data.c
parent7ce7d89f48834cefece7804d38fc5d85382edf77 (diff)
cgroup: don't online subsystems before cgroup_name/path() are operational
While refactoring cgroup creation, a5bca2152036 ("cgroup: factor out cgroup_create() out of cgroup_mkdir()") incorrectly onlined subsystems before the new cgroup is associated with it kernfs_node. This is fine for cgroup proper but cgroup_name/path() depend on the associated kernfs_node and if a subsystem makes the new cgroup_subsys_state visible, which they're allowed to after onlining, it can lead to NULL dereference. The current code performs cgroup creation and subsystem onlining in cgroup_create() and cgroup_mkdir() makes the cgroup and subsystems visible afterwards. There's no reason to online the subsystems early and we can simply drop cgroup_apply_control_enable() call from cgroup_create() so that the subsystems are onlined and made visible at the same time. Signed-off-by: Tejun Heo <tj@kernel.org> Reported-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru> Fixes: a5bca2152036 ("cgroup: factor out cgroup_create() out of cgroup_mkdir()") Cc: stable@vger.kernel.org # v4.6+
Diffstat (limited to 'tools/perf/util/data.c')