mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
struct cgroup_taskset is defined in kernel/cgroup/cgroup-internal.h, however libabigail is not finding its definition based on the instantiation of the hooks, so force it to be defined by defining a dummy exported symbol. Since cgroup_taskset is defined in a subsystem-private header, create a new vendor_hooks.c file in kernel/cgroup to define the dummy symbol. Update the XML with the new type definitions Bug: 233047575 Signed-off-by: Todd Kjos <tkjos@google.com> Change-Id: I7a2bf2a722bf5aec0c702f215d572cc8e5336f9a
10 lines
342 B
Makefile
10 lines
342 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y := cgroup.o rstat.o namespace.o cgroup-v1.o freezer.o
|
|
|
|
obj-$(CONFIG_CGROUP_FREEZER) += legacy_freezer.o
|
|
obj-$(CONFIG_CGROUP_PIDS) += pids.o
|
|
obj-$(CONFIG_CGROUP_RDMA) += rdma.o
|
|
obj-$(CONFIG_CPUSETS) += cpuset.o
|
|
obj-$(CONFIG_CGROUP_DEBUG) += debug.o
|
|
obj-$(CONFIG_ANDROID_VENDOR_HOOKS) += vendor_hooks.o
|