d6bbbe0157
15207c29
ANDROID: add ion_stat tracepoint to common kernel82d4e59
Revert "UPSTREAM: mm, page_alloc: spread allocations across zones before introducing fragmentation"5e86f20
Revert "UPSTREAM: mm: use alloc_flags to record if kswapd can wake"fbc355c
Revert "BACKPORT: mm: move zone watermark accesses behind an accessor"35be952
Revert "BACKPORT: mm: reclaim small amounts of memory when an external fragmentation event occurs"776eba0
Revert "BACKPORT: mm, compaction: be selective about what pageblocks to clear skip hintsca46612
ANDROID: GKI: USB: add Android ABI padding to some structuresa10905b
ANDROID: GKI: usb: core: Add support to parse config summary capability descriptors77379e5
ANDROID: GKI: USB: pd: Extcon fix for C current27ac613
ANDROID: GKI: usb: Add support to handle USB SMMU S1 address52b86b2
ANDROID: GKI: usb: Add helper APIs to return xhci phys addressesbf3e2f7
ANDROID: GKI: usb: phy: Fix ABI diff for usb_otg_statea34e269
ANDROID: GKI: usb: phy: Fix ABI diff due to usb_phy.drive_dp_pulse7edd303
ANDROID: GKI: usb: phy: Fix ABI diff for usb_phy_type and usb_phy.reset639d56b
ANDROID: GKI: usb: hcd: Add USB atomic notifier callback for HC died error5b6a535
ANDROID: GKI: USB: Fix ABI diff for struct usb_busa9c813f
ANDROID: usb: gadget: Add missing inline qualifier to stub functions632093e
ANDROID: GKI: USB: Resolve ABI diff for usb_gadget and usb_gadget_opsf7fbc94
ANDROID: GKI: usb: Add helper API to issue stop endpoint command5dfdaa1
ANDROID: GKI: usb: xhci: Add support for secondary interruptersa6c834c
ANDROID: GKI: usb: host: xhci: Add support for usb core indexingc89d039
ANDROID: GKI: sched: add Android ABI padding to some structuresb14ffb0
ANDROID: GKI: sched.h: add Android ABI padding to some structuresc830822
ANDROID: GKI: sched: struct fields for Per-Sched-domain over utilizationeead514
ANDROID: GKI: sched: stub sched_isolate symbols36e1278
ANDROID: GKI: sched: add task boost vendor fields to task_struct3bc16e4
ANDROID: GKI: power_supply: Add FG_TYPE power-supply property4211b82
ANDROID: GKI: power_supply: Add PROP_MOISTURE_DETECTION_ENABLED0134f3d
ANDROID: GKI: power: supply: format regression66e2580
ANDROID: Incremental fs: wake up log pollers less oftenc92446c
ANDROID: Incremental fs: Fix scheduling while atomic erroradb33b8
ANDROID: Incremental fs: Avoid continually recalculating hashesa8629be
ANDROID: Incremental fs: Fix issues with very large filesc7c8c61
ANDROID: Incremental fs: Add setattr call9d7386a
ANDROID: Incremental fs: Use simple compression in log buffer298fe8e
ANDROID: Incremental fs: Fix create_file performance580b23c
ANDROID: Incremental fs: Fix compound page usercopy crash06a024d
ANDROID: Incremental fs: Clean up incfs_test build process5e6feac
ANDROID: Incremental fs: make remount log buffer change atomic5128381
ANDROID: Incremental fs: Optimize get_filled_block23f5b7c
ANDROID: Incremental fs: Fix mislabeled __user ptrs114b043
ANDROID: Incremental fs: Use 64-bit int for file_size when writing hash blocksae41ea9
ANDROID: Incremental fs: Fix remounte251cfe
ANDROID: Incremental fs: Protect get_fill_block, and add a field759d52e
ANDROID: Incremental fs: Fix crash polling 0 size read_log21b6d8c
ANDROID: Incremental fs: get_filled_blocks: better index_out0389387
net: qualcomm: rmnet: Allow configuration updates to existing devices95b8a4b
ANDROID: GKI: regulator: core: Add support for regulator providers with sync state653a867
ANDROID: GKI: regulator: Add proxy consumer driver6efb91e
ANDROID: power_supply: Add RTX power-supply propertye90672c
ANDROID: GKI: power: supply: Add POWER_SUPPLY_PROP_CHARGE_DISABLEd1e3253
usb: dwc3: gadget: Properly set maxpacket limit074e6e4
usb: dwc3: gadget: Do link recovery for SS and SSPdbee0a8
usb: dwc3: gadget: Fix request completion checkc521b70
usb: dwc3: gadget: Don't clear flags before transfer endedd1eded7
usb: dwc3: gadget: don't enable interrupt when disabling endpoint831494c
usb: dwc3: core: add support for disabling SS instances in park modeb0434aa
usb: dwc3: don't set gadget->is_otg flagfe60e0d
usb: dwc3: gadget: Wrap around when skip TRBsb71b0c1
ANDROID: GKI: drivers: thermal: cpu_cooling: Use CPU ID as cooling device IDeaa42a5
ANDROID: GKI: drivers: of-thermal: Relate thermal zones using same sensor10d3954
ANDROID: GKI: drivers: thermal: Add support for getting trip temperature5a7902f
ANDROID: GKI: Add functions of_thermal_handle_trip/of_thermal_handle_trip_tempb078dd6
ANDROID: GKI: drivers: thermal: Add post suspend evaluate flag to thermal zone devicetreee92e403
ANDROID: GKI: drivers: cpu_cooling: allow platform freq mitigation Change-Id: Id2a4fb08f24ad83c880fa8e4c199ea90837649b5 Signed-off-by: Srinivasarao P <spathi@codeaurora.org>
34 lines
1.5 KiB
Makefile
34 lines
1.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
ifdef CONFIG_FUNCTION_TRACER
|
|
CFLAGS_REMOVE_clock.o = $(CC_FLAGS_FTRACE)
|
|
endif
|
|
|
|
# These files are disabled because they produce non-interesting flaky coverage
|
|
# that is not a function of syscall inputs. E.g. involuntary context switches.
|
|
KCOV_INSTRUMENT := n
|
|
|
|
ifneq ($(CONFIG_SCHED_OMIT_FRAME_POINTER),y)
|
|
# According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is
|
|
# needed for x86 only. Why this used to be enabled for all architectures is beyond
|
|
# me. I suspect most platforms don't need this, but until we know that for sure
|
|
# I turn this off for IA-64 only. Andreas Schwab says it's also needed on m68k
|
|
# to get a correct value for the wait-channel (WCHAN in ps). --davidm
|
|
CFLAGS_core.o := $(PROFILING) -fno-omit-frame-pointer
|
|
endif
|
|
|
|
obj-y += core.o loadavg.o clock.o cputime.o
|
|
obj-y += idle.o fair.o rt.o deadline.o
|
|
obj-y += wait.o wait_bit.o swait.o completion.o
|
|
obj-$(CONFIG_SMP) += cpupri.o cpudeadline.o topology.o stop_task.o pelt.o
|
|
obj-$(CONFIG_SCHED_WALT) += walt.o boost.o sched_avg.o
|
|
obj-$(CONFIG_SCHED_AUTOGROUP) += autogroup.o
|
|
obj-$(CONFIG_SCHEDSTATS) += stats.o
|
|
obj-$(CONFIG_SCHED_DEBUG) += debug.o
|
|
obj-$(CONFIG_SCHED_TUNE) += tune.o
|
|
obj-$(CONFIG_CGROUP_CPUACCT) += cpuacct.o
|
|
obj-$(CONFIG_CPU_FREQ) += cpufreq.o
|
|
obj-$(CONFIG_CPU_FREQ_GOV_SCHEDUTIL) += cpufreq_schedutil.o
|
|
obj-$(CONFIG_MEMBARRIER) += membarrier.o
|
|
obj-$(CONFIG_CPU_ISOLATION) += isolation.o
|
|
obj-$(CONFIG_SCHED_CORE_CTL) += core_ctl.o
|
|
obj-$(CONFIG_PSI) += psi.o
|