Vim kernel panic under load with 3.14.29

Didn’t do the testing yet, but I the software will shutdown the CPU if the temperature hit the trigger values:

	thermal-zones {
		soc_thermal {
			polling-delay = <1000>;
			polling-delay-passive = <100>;
			sustainable-power = <2150>;

			thermal-sensors = <&aml_sensor0 3>;

			trips {
				switch_on: trip-point@0 {
					temperature = <70000>;
					hysteresis = <1000>;
					type = "passive";
				};
				control: trip-point@1 {
					temperature = <80000>;
					hysteresis = <1000>;
					type = "passive";
				};
				hot: trip-point@2 {
					temperature = <85000>;
					hysteresis = <5000>;
					type = "hot";
				};
				critical: trip-point@3 {
					temperature = <260000>;
					hysteresis = <1000>;
					type = "critical";
				};
			};

Check the source code for more details.

The reason for the drop of the core at a temperature of 70 degrees module “mali.ko”. For still images, remove it from the system and lows will be.

Thanks for the information, we will also take a check with the “mali.ko”.