mirror of
https://github.com/LineageOS/android_kernel_fxtec_sm6115.git
synced 2026-08-18 20:11:06 +00:00
15207c29ANDROID: add ion_stat tracepoint to common kernel82d4e59Revert "UPSTREAM: mm, page_alloc: spread allocations across zones before introducing fragmentation"5e86f20Revert "UPSTREAM: mm: use alloc_flags to record if kswapd can wake"fbc355cRevert "BACKPORT: mm: move zone watermark accesses behind an accessor"35be952Revert "BACKPORT: mm: reclaim small amounts of memory when an external fragmentation event occurs"776eba0Revert "BACKPORT: mm, compaction: be selective about what pageblocks to clear skip hintsca46612ANDROID: GKI: USB: add Android ABI padding to some structuresa10905bANDROID: GKI: usb: core: Add support to parse config summary capability descriptors77379e5ANDROID: GKI: USB: pd: Extcon fix for C current27ac613ANDROID: GKI: usb: Add support to handle USB SMMU S1 address52b86b2ANDROID: GKI: usb: Add helper APIs to return xhci phys addressesbf3e2f7ANDROID: GKI: usb: phy: Fix ABI diff for usb_otg_statea34e269ANDROID: GKI: usb: phy: Fix ABI diff due to usb_phy.drive_dp_pulse7edd303ANDROID: GKI: usb: phy: Fix ABI diff for usb_phy_type and usb_phy.reset639d56bANDROID: GKI: usb: hcd: Add USB atomic notifier callback for HC died error5b6a535ANDROID: GKI: USB: Fix ABI diff for struct usb_busa9c813fANDROID: usb: gadget: Add missing inline qualifier to stub functions632093eANDROID: GKI: USB: Resolve ABI diff for usb_gadget and usb_gadget_opsf7fbc94ANDROID: GKI: usb: Add helper API to issue stop endpoint command5dfdaa1ANDROID: GKI: usb: xhci: Add support for secondary interruptersa6c834cANDROID: GKI: usb: host: xhci: Add support for usb core indexingc89d039ANDROID: GKI: sched: add Android ABI padding to some structuresb14ffb0ANDROID: GKI: sched.h: add Android ABI padding to some structuresc830822ANDROID: GKI: sched: struct fields for Per-Sched-domain over utilizationeead514ANDROID: GKI: sched: stub sched_isolate symbols36e1278ANDROID: GKI: sched: add task boost vendor fields to task_struct3bc16e4ANDROID: GKI: power_supply: Add FG_TYPE power-supply property4211b82ANDROID: GKI: power_supply: Add PROP_MOISTURE_DETECTION_ENABLED0134f3dANDROID: GKI: power: supply: format regression66e2580ANDROID: Incremental fs: wake up log pollers less oftenc92446cANDROID: Incremental fs: Fix scheduling while atomic erroradb33b8ANDROID: Incremental fs: Avoid continually recalculating hashesa8629beANDROID: Incremental fs: Fix issues with very large filesc7c8c61ANDROID: Incremental fs: Add setattr call9d7386aANDROID: Incremental fs: Use simple compression in log buffer298fe8eANDROID: Incremental fs: Fix create_file performance580b23cANDROID: Incremental fs: Fix compound page usercopy crash06a024dANDROID: Incremental fs: Clean up incfs_test build process5e6feacANDROID: Incremental fs: make remount log buffer change atomic5128381ANDROID: Incremental fs: Optimize get_filled_block23f5b7cANDROID: Incremental fs: Fix mislabeled __user ptrs114b043ANDROID: Incremental fs: Use 64-bit int for file_size when writing hash blocksae41ea9ANDROID: Incremental fs: Fix remounte251cfeANDROID: Incremental fs: Protect get_fill_block, and add a field759d52eANDROID: Incremental fs: Fix crash polling 0 size read_log21b6d8cANDROID: Incremental fs: get_filled_blocks: better index_out0389387net: qualcomm: rmnet: Allow configuration updates to existing devices95b8a4bANDROID: GKI: regulator: core: Add support for regulator providers with sync state653a867ANDROID: GKI: regulator: Add proxy consumer driver6efb91eANDROID: power_supply: Add RTX power-supply propertye90672cANDROID: GKI: power: supply: Add POWER_SUPPLY_PROP_CHARGE_DISABLEd1e3253usb: dwc3: gadget: Properly set maxpacket limit074e6e4usb: dwc3: gadget: Do link recovery for SS and SSPdbee0a8usb: dwc3: gadget: Fix request completion checkc521b70usb: dwc3: gadget: Don't clear flags before transfer endedd1eded7usb: dwc3: gadget: don't enable interrupt when disabling endpoint831494cusb: dwc3: core: add support for disabling SS instances in park modeb0434aausb: dwc3: don't set gadget->is_otg flagfe60e0dusb: dwc3: gadget: Wrap around when skip TRBsb71b0c1ANDROID: GKI: drivers: thermal: cpu_cooling: Use CPU ID as cooling device IDeaa42a5ANDROID: GKI: drivers: of-thermal: Relate thermal zones using same sensor10d3954ANDROID: GKI: drivers: thermal: Add support for getting trip temperature5a7902fANDROID: GKI: Add functions of_thermal_handle_trip/of_thermal_handle_trip_tempb078dd6ANDROID: GKI: drivers: thermal: Add post suspend evaluate flag to thermal zone devicetreee92e403ANDROID: GKI: drivers: cpu_cooling: allow platform freq mitigation Change-Id: Id2a4fb08f24ad83c880fa8e4c199ea90837649b5 Signed-off-by: Srinivasarao P <spathi@codeaurora.org>
35 lines
1.5 KiB
Makefile
35 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
|