Skip to content

Commit

Permalink
Merge tag 'LA.UM.9.1.r1-10600-SMxxx0.0' of https://github.com/arter97…
Browse files Browse the repository at this point in the history
…/caf_msm-4.14 into r5

"LA.UM.9.1.r1-10600-SMxxx0.0"

* tag 'LA.UM.9.1.r1-10600-SMxxx0.0' of https://github.com/arter97/caf_msm-4.14: (44 commits)
  msm: adsprpc: Fix race condition in internal_control
  msm: ipa: fix to check for ECONNRESET
  msm: camera: icp: Enable hang dump on failure
  soc: qcom: Add check to handle out of bound access
  defconfig: remove CONFIG_SECURITY_PERF_EVENTS_RESTRICT
  Revert "ANDROID: security,perf: Allow further restriction of perf_event_open"
  msm: ipa3: Added pdn config type check
  HID: make arrays usage and value to be the same
  netfilter: nf_conntrack_h323: lost .data_len definition for Q.931/ipv6
  wil6210: Drop unicast sub frame if part of a multicast amsdu
  ARM: dts: msm: Enable DDR cooling device driver for mdm9607
  defconfig: msm: Enable DDR bus scaling cooling device driver for mdm9607
  drivers: thermal: Add a new DDR bus scaling cooling device
  diag: Prevent out of bound write while sending dci pkt to remote
  wil6210: check integrity of received AMSDU packets
  wil6210: accessing 802.3 addresses via utility functions
  wil6210: Drop plaintext frames on secure network
  wil6210: AP should not forward eapol packets
  fuse: Set fuse request error upon fuse abort connection
  msm: adsprpc: Clean buffers on remote invocation failure
  usb: dwc3: Avoid resume_work flush in pm_freeze/restore
  msm: adsprpc: fix compilation errors in fastrpc driver
  msm: adsprpc: remove PM vote counter in fastrpc driver
  msm: adsprpc: do pm stay awake vote in rpmsg callback
  soc: qcom: hgsl: Fix OOB
  ...

Signed-off-by: KenHV <[email protected]>

Conflicts:
	drivers/char/adsprpc.c
	drivers/char/adsprpc_shared.h
	drivers/dma-buf/dma-buf.c
	drivers/tty/tty_jobctrl.c
  • Loading branch information
KenHV committed Jul 17, 2021
2 parents 48920ae + 01aa9c5 commit 0197c69
Show file tree
Hide file tree
Showing 85 changed files with 903 additions and 239 deletions.
65 changes: 65 additions & 0 deletions Documentation/devicetree/bindings/thermal/qti-ddr-cdev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
QTI DDR cooling device.

The DDR cooling device will be used to place a DDR frequency vote. This
cooling device will be used in those cases where all the subsystem's are
thermally throttled and DDR has to be operated with a minimum performance
level. This cooling device vote can ensure the same.

Properties:
- compatible:
Usage: required
Value type: <string>
Definition: should be "qcom,ddr-cooling-device".

Bus Scaling Data:
- qcom,msm-bus,name:
Usage: required
Value type: <string>
Definition: String describing DDR cooling device client. It is defined
at Documentation/devicetree/bindings/arm/msm/msm_bus.txt.
- qcom,msm-bus,num-cases:
Usage: required
Value type: <integer>
Definition: This is the number of Bus Scaling use cases
defined in the vectors property. This must be set to more than
one for DDR cooling device based on different levels of DDR
frequency cooling support required. The use-case0 always should
be a vote to take off DDR cdev votes from the system. It is
defined at Documentation/devicetree/bindings/arm/msm/msm_bus.txt.
- qcom,msm-bus,active-only:
Usage: optional
Value type: <None>
Definition: A boolean flag indicating if it is active only
bandwidth vote. It is defined at
Documentation/devicetree/bindings/arm/msm/msm_bus.txt.
- qcom,msm-bus,num-paths:
Usage: required
Value type: <integer>
Definition: This represents total number of master-slave pairs for
different usecases. It is defined at
Documentation/devicetree/bindings/arm/msm/msm_bus.txt.
- qcom,msm-bus,vectors-KBps:
Usage: required
Value type: <array>
Definition: A series of 4 cell properties, with a format of
(src, dst, ab, ib). It is defined at
Documentation/devicetree/bindings/arm/msm/msm_bus.txt.

Cooling Device Property:
- #cooling-cells:
Usage: required
Value type: <integer>
Definition: Must be 2. Needed for of_thermal as cooling device
identifier. Please refer to
<devicetree/bindings/thermal/thermal.txt> for more
details.
Example:
qcom,ddr-cdev {
compatible = "qcom,ddr-cooling-device";
qcom,msm-bus,name = "ddr-cdev";
qcom,msm-bus,num-cases = <2>;
qcom,msm-bus,num-paths = <1>;
qcom,msm-bus,vectors-KBps = <1 512 0 0>,
<1 512 0 366000>;
#cooling-cells = <2>;
};
4 changes: 1 addition & 3 deletions Documentation/sysctl/kernel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -678,16 +678,14 @@ allowed to execute.
perf_event_paranoid:

Controls use of the performance events system by unprivileged
users (without CAP_SYS_ADMIN). The default value is 3 if
CONFIG_SECURITY_PERF_EVENTS_RESTRICT is set, or 2 otherwise.
users (without CAP_SYS_ADMIN). The default value is 2.

-1: Allow use of (almost) all events by all users
Ignore mlock limit after perf_event_mlock_kb without CAP_IPC_LOCK
>=0: Disallow ftrace function tracepoint by users without CAP_SYS_ADMIN
Disallow raw tracepoint access by users without CAP_SYS_ADMIN
>=1: Disallow CPU event access by users without CAP_SYS_ADMIN
>=2: Disallow kernel profiling by users without CAP_SYS_ADMIN
>=3: Disallow all event access by users without CAP_SYS_ADMIN

==============================================================

Expand Down
1 change: 1 addition & 0 deletions arch/arm/configs/vendor/mdm9607-128mb-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ CONFIG_THERMAL_GOV_LOW_LIMITS=y
CONFIG_CPU_THERMAL=y
CONFIG_QTI_QMI_COOLING_DEVICE=y
CONFIG_REGULATOR_COOLING_DEVICE=y
CONFIG_QTI_BUS_SCALING_COOLING_DEVICE=y
CONFIG_REGULATOR_FIXED_VOLTAGE=y
CONFIG_REGULATOR_CPR=y
CONFIG_REGULATOR_MEM_ACC=y
Expand Down
1 change: 1 addition & 0 deletions arch/arm/configs/vendor/mdm9607-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ CONFIG_THERMAL_TSENS=y
CONFIG_QTI_QMI_COOLING_DEVICE=y
CONFIG_REGULATOR_COOLING_DEVICE=y
CONFIG_QTI_ADC_TM=y
CONFIG_QTI_BUS_SCALING_COOLING_DEVICE=y
CONFIG_MFD_SPMI_PMIC=y
CONFIG_REGULATOR_FIXED_VOLTAGE=y
CONFIG_REGULATOR_CPR=y
Expand Down
1 change: 1 addition & 0 deletions arch/arm/configs/vendor/mdm9607_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ CONFIG_THERMAL_TSENS=y
CONFIG_QTI_QMI_COOLING_DEVICE=y
CONFIG_REGULATOR_COOLING_DEVICE=y
CONFIG_QTI_ADC_TM=y
CONFIG_QTI_BUS_SCALING_COOLING_DEVICE=y
CONFIG_MFD_SPMI_PMIC=y
CONFIG_REGULATOR_FIXED_VOLTAGE=y
CONFIG_REGULATOR_CPR=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/qcs403-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_TIMEOUT=5
CONFIG_STACKTRACE=y
# CONFIG_FTRACE is not set
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/qcs403_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/qcs405-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_TIMEOUT=5
CONFIG_STACKTRACE=y
# CONFIG_FTRACE is not set
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/qcs405_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/sa515m-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/sa515m_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/sdm429-bg-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_SECURITY_SELINUX=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/sdm429-bg_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_PAGESPAN=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/sdxprairie-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/sdxprairie_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/trinket-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_SECURITY_SELINUX=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm/configs/vendor/trinket_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_PAGESPAN=y
Expand Down
21 changes: 21 additions & 0 deletions arch/arm64/boot/dts/qcom/mdm9607-thermal.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@
};
};
};

ddr_cdev: qcom,ddr-cdev {
compatible = "qcom,ddr-cooling-device";
qcom,msm-bus,name = "ddr-cdev";
qcom,msm-bus,num-cases = <2>;
qcom,msm-bus,num-paths = <1>;
qcom,msm-bus,vectors-KBps = <1 512 0 0>,
<1 512 0 366000>;
#cooling-cells = <2>;
};
};

&thermal_zones {
Expand Down Expand Up @@ -174,6 +184,12 @@
thermal-governor = "step_wise";
wake-capable-sensor;
trips {
cdev_trip: cdev-trip {
temperature = <78000>;
hysteresis = <8000>;
type = "passive";
};

modem_pa_trip0: modem_pa_trip0 {
temperature = <95000>;
hysteresis = <5000>;
Expand Down Expand Up @@ -202,6 +218,11 @@
};

cooling-maps {
ddr_cdev0 {
trip = <&cdev_trip>;
cooling-device = <&ddr_cdev 1 1>;
};

modem_pa0_cdev {
trip = <&modem_pa_trip0>;
cooling-device = <&modem_pa 1 1>;
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/cuttlefish_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,6 @@ CONFIG_SCHEDSTATS=y
CONFIG_DEBUG_LIST=y
CONFIG_RCU_CPU_STALL_TIMEOUT=60
CONFIG_ENABLE_DEFAULT_TRACERS=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_TEST_MEMINIT=y
CONFIG_TEST_STACKINIT=y
CONFIG_SECURITY=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/atoll-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_FORTIFY_SOURCE=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/atoll_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_PAGESPAN=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/gen3auto-capture_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,6 @@ CONFIG_TEST_USER_COPY=m
CONFIG_MEMTEST=y
CONFIG_BUG_ON_DATA_CORRUPTION=y
CONFIG_ARM64_STRICT_BREAK_BEFORE_MAKE=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_PAGESPAN=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/gen3auto-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,6 @@ CONFIG_SCHEDSTATS=y
# CONFIG_DEBUG_PREEMPT is not set
CONFIG_IPC_LOGGING=y
CONFIG_DEBUG_ALIGN_RODATA=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_FORTIFY_SOURCE=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/gen3auto_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_PAGESPAN=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/qcs403-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,6 @@ CONFIG_CORESIGHT_TPDM=y
CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/qcs403_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/qcs405-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,6 @@ CONFIG_CORESIGHT_TPDM=y
CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_HARDENED_USERCOPY=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/qcs405_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_HARDENED_USERCOPY=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/qcs610-minimal-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,6 @@ CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_HARDENED_USERCOPY=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sa2150p-nand-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,6 @@ CONFIG_CORESIGHT_TPDM=y
CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sa2150p-nand_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,6 @@ CONFIG_CORESIGHT_TPDM=y
CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sa2150p-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,6 @@ CONFIG_CORESIGHT_TPDM=y
CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sa2150p_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,6 @@ CONFIG_CORESIGHT_TPDM=y
CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_DUMMY=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_LSM_MMAP_MIN_ADDR=4096
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sa8155-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,6 @@ CONFIG_SCHEDSTATS=y
# CONFIG_DEBUG_PREEMPT is not set
CONFIG_IPC_LOGGING=y
CONFIG_DEBUG_ALIGN_RODATA=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_FORTIFY_SOURCE=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sa8155_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,6 @@ CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_TGU=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_PAGESPAN=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sdm660-perf_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,6 @@ CONFIG_CORESIGHT_TPDM=y
CONFIG_CORESIGHT_QPDI=y
CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_FORTIFY_SOURCE=y
Expand Down
1 change: 0 additions & 1 deletion arch/arm64/configs/vendor/sdm660_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,6 @@ CONFIG_CORESIGHT_HWEVENT=y
CONFIG_CORESIGHT_REMOTE_ETM=y
CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE=0
CONFIG_CORESIGHT_EVENT=y
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
CONFIG_SECURITY=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_PAGESPAN=y
Expand Down
Loading

0 comments on commit 0197c69

Please sign in to comment.