Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 071d16fa authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "defconfig: msm-auto: Make hotplug section size as 256 MB"

parents 99125214 0e4865bf
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -203,6 +203,16 @@ config NEED_SG_DMA_LENGTH
config SMP
	def_bool y

config HOTPLUG_SIZE_BITS
	int "Memory hotplug block size(28 => 256MB 30 => 1GB)"
	depends on SPARSEMEM
	default 30
	help
	 Selects granularity of hotplug memory. Block
	 size for memory hotplug is represent as a power
	 of 2.
	 If unsure, stick with default value.

config ARM64_DMA_USE_IOMMU
	bool
	select ARM_HAS_SG_CHAIN
+1 −0
Original line number Diff line number Diff line
CONFIG_HOTPLUG_SIZE_BITS=28
CONFIG_LOCALVERSION="-perf"
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_FHANDLE=y
+1 −0
Original line number Diff line number Diff line
CONFIG_HOTPLUG_SIZE_BITS=28
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_FHANDLE=y
CONFIG_AUDIT=y
+4 −0
Original line number Diff line number Diff line
@@ -18,7 +18,11 @@

#ifdef CONFIG_SPARSEMEM
#define MAX_PHYSMEM_BITS	48
#ifndef CONFIG_MEMORY_HOTPLUG
#define SECTION_SIZE_BITS	30
#else
#define SECTION_SIZE_BITS	CONFIG_HOTPLUG_SIZE_BITS
#endif
#endif

#endif