Message ID | 50142a29010463f436dc5c4feb540e5de3bb09df.1744175097.git.donettom@linux.ibm.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [1/2] mm/memblock: Added a New Memblock Function to Check if the Current Node's Memblock Region Intersects with a Memory Block | expand |
On Wed, 9 Apr 2025 10:57:56 +0530 Donet Tom <donettom@linux.ibm.com> wrote: > A new function, curr_node_memblock_intersect_memory_block, has been "intersects". Because the name is too short ;) > With this function, the boot time is reduced. > > Boot time without this function - 32TB RAM > ========================================== > Startup finished in 1min 12.413s (kernel) > > Boot time with this function - 32TB RAM > ======================================== > Startup finished in 18.031s (kernel) Impressive. I'll assume this is rppt material.
On 4/10/25 7:50 AM, Andrew Morton wrote: > On Wed, 9 Apr 2025 10:57:56 +0530 Donet Tom <donettom@linux.ibm.com> wrote: > >> A new function, curr_node_memblock_intersect_memory_block, has been > "intersects". > > Because the name is too short ;) Thanks Andrew, I will change the name. > >> With this function, the boot time is reduced. >> >> Boot time without this function - 32TB RAM >> ========================================== >> Startup finished in 1min 12.413s (kernel) >> >> Boot time with this function - 32TB RAM >> ======================================== >> Startup finished in 18.031s (kernel) > Impressive. I'll assume this is rppt material. > >
Hi Donet, kernel test robot noticed the following build errors: [auto build test ERROR on akpm-mm/mm-everything] url: https://github.com/intel-lab-lkp/linux/commits/Donet-Tom/base-node-Use-curr_node_memblock_intersect_memory_block-to-Get-Memory-Block-NID-if-CONFIG_DEFERRED_STRUCT_PAGE_INIT-is-S/20250409-132924 base: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything patch link: https://lore.kernel.org/r/50142a29010463f436dc5c4feb540e5de3bb09df.1744175097.git.donettom%40linux.ibm.com patch subject: [PATCH 1/2] mm/memblock: Added a New Memblock Function to Check if the Current Node's Memblock Region Intersects with a Memory Block config: csky-randconfig-001-20250410 (https://download.01.org/0day-ci/archive/20250410/202504101459.iFHlVGBA-lkp@intel.com/config) compiler: csky-linux-gcc (GCC) 14.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250410/202504101459.iFHlVGBA-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202504101459.iFHlVGBA-lkp@intel.com/ All errors (new ones prefixed by >>): mm/memblock.c: In function 'curr_node_memblock_intersect_memory_block': >> mm/memblock.c:1943:22: error: 'struct memblock_region' has no member named 'nid' 1943 | if (r->nid == curr_nid) { | ^~ vim +1943 mm/memblock.c 1913 1914 /** 1915 * curr_node_memblock_intersect_memory_block: checks if the current node's memblock 1916 * region intersects with the memory block. 1917 * @start_pfn: memory block start pfn 1918 * @end_pfn: memory block end_pfn 1919 * @curr_nid: Current node 1920 * 1921 * This function takes the start and end PFN of a memory block, as well as the node ID 1922 * that is being registered. It then finds the memblock region of the current node and 1923 * checks if the passed memory block intersects with the memblock. If there is an 1924 * intersection, the function returns true; otherwise, it returns false. 1925 * 1926 * Return: 1927 * If the current node's memblock region intersects with the memory block, it returns 1928 * true; otherwise, it returns false. 1929 */ 1930 bool __init_memblock curr_node_memblock_intersect_memory_block(unsigned long start_pfn, 1931 unsigned long end_pfn, int curr_nid) 1932 { 1933 struct memblock_region *r; 1934 unsigned long r_start, r_end; 1935 unsigned long size = end_pfn - start_pfn; 1936 unsigned long r_size = 0; 1937 1938 for_each_mem_region(r) { 1939 r_start = PFN_DOWN(r->base); 1940 r_end = PFN_DOWN(r->base + r->size); 1941 r_size = r_end - r_start; 1942 > 1943 if (r->nid == curr_nid) { 1944 if (size > r_size) { 1945 /* 1946 * The memory block size is greater than the memblock 1947 * region size, meaning multiple memblocks can be present 1948 * within a single memory block. If the memblock's start 1949 * or end is within the memory block's start and end, It 1950 * indicates that the memblock is part of this memory block. 1951 * Therefore, the memory block can be added to the node 1952 * where the memblock resides. 1953 */ 1954 if (in_range(r_start, start_pfn, size) || 1955 in_range(r_end, start_pfn, size)) 1956 return true; 1957 } else { 1958 /* 1959 * The memory block size is less than or equal to the 1960 * memblock size, meaning multiple memory blocks can 1961 * be part of a single memblock region. If the memory 1962 * block's start or end is within the memblock's start 1963 * and end, it indicates that the memory block is part of 1964 * the memblock. Therefore, the memory block can be added 1965 * to the node where the memblock resides. 1966 */ 1967 if (in_range(start_pfn, r_start, r_size) || 1968 in_range(end_pfn, r_start, r_size)) 1969 return true; 1970 } 1971 } 1972 } 1973 return false; 1974 } 1975
Hi Donet, kernel test robot noticed the following build errors: [auto build test ERROR on akpm-mm/mm-everything] url: https://github.com/intel-lab-lkp/linux/commits/Donet-Tom/base-node-Use-curr_node_memblock_intersect_memory_block-to-Get-Memory-Block-NID-if-CONFIG_DEFERRED_STRUCT_PAGE_INIT-is-S/20250409-132924 base: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-everything patch link: https://lore.kernel.org/r/50142a29010463f436dc5c4feb540e5de3bb09df.1744175097.git.donettom%40linux.ibm.com patch subject: [PATCH 1/2] mm/memblock: Added a New Memblock Function to Check if the Current Node's Memblock Region Intersects with a Memory Block config: hexagon-randconfig-002-20250410 (https://download.01.org/0day-ci/archive/20250410/202504101431.ovUiydUd-lkp@intel.com/config) compiler: clang version 21.0.0git (https://github.com/llvm/llvm-project 92c93f5286b9ff33f27ff694d2dc33da1c07afdd) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250410/202504101431.ovUiydUd-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202504101431.ovUiydUd-lkp@intel.com/ All errors (new ones prefixed by >>): >> mm/memblock.c:1943:10: error: no member named 'nid' in 'struct memblock_region' 1943 | if (r->nid == curr_nid) { | ~ ^ 1 error generated. vim +1943 mm/memblock.c 1913 1914 /** 1915 * curr_node_memblock_intersect_memory_block: checks if the current node's memblock 1916 * region intersects with the memory block. 1917 * @start_pfn: memory block start pfn 1918 * @end_pfn: memory block end_pfn 1919 * @curr_nid: Current node 1920 * 1921 * This function takes the start and end PFN of a memory block, as well as the node ID 1922 * that is being registered. It then finds the memblock region of the current node and 1923 * checks if the passed memory block intersects with the memblock. If there is an 1924 * intersection, the function returns true; otherwise, it returns false. 1925 * 1926 * Return: 1927 * If the current node's memblock region intersects with the memory block, it returns 1928 * true; otherwise, it returns false. 1929 */ 1930 bool __init_memblock curr_node_memblock_intersect_memory_block(unsigned long start_pfn, 1931 unsigned long end_pfn, int curr_nid) 1932 { 1933 struct memblock_region *r; 1934 unsigned long r_start, r_end; 1935 unsigned long size = end_pfn - start_pfn; 1936 unsigned long r_size = 0; 1937 1938 for_each_mem_region(r) { 1939 r_start = PFN_DOWN(r->base); 1940 r_end = PFN_DOWN(r->base + r->size); 1941 r_size = r_end - r_start; 1942 > 1943 if (r->nid == curr_nid) { 1944 if (size > r_size) { 1945 /* 1946 * The memory block size is greater than the memblock 1947 * region size, meaning multiple memblocks can be present 1948 * within a single memory block. If the memblock's start 1949 * or end is within the memory block's start and end, It 1950 * indicates that the memblock is part of this memory block. 1951 * Therefore, the memory block can be added to the node 1952 * where the memblock resides. 1953 */ 1954 if (in_range(r_start, start_pfn, size) || 1955 in_range(r_end, start_pfn, size)) 1956 return true; 1957 } else { 1958 /* 1959 * The memory block size is less than or equal to the 1960 * memblock size, meaning multiple memory blocks can 1961 * be part of a single memblock region. If the memory 1962 * block's start or end is within the memblock's start 1963 * and end, it indicates that the memory block is part of 1964 * the memblock. Therefore, the memory block can be added 1965 * to the node where the memblock resides. 1966 */ 1967 if (in_range(start_pfn, r_start, r_size) || 1968 in_range(end_pfn, r_start, r_size)) 1969 return true; 1970 } 1971 } 1972 } 1973 return false; 1974 } 1975
Hi, On Wed, Apr 09, 2025 at 10:57:56AM +0530, Donet Tom wrote: > A new function, curr_node_memblock_intersect_memory_block, has been > added to check if the current node's NID intersects with a memory block. As Andrew mentioned, the name is too long :) Maybe memblock_range_intersects_node(), but I think intersection is not the right thing to check (see below). Also, memblock does not care about sysfs representation of memory blocks, please use "range" rather than "memory block" in changelog and comments. > This function takes the start and end PFN of a memory block, along with > the node ID being registered. It then finds the memblock region of the > current node and check if the passed memory block intersects with it. If > there is an intersection, the function returns true; otherwise, itreturns > false. Please describe here what problem you are solving and why you need this functionality rather than what the new function does. > There are two scenarios to consider during the search: > > 1. The memory block size is greater than the memblock region size. > > This means that multiple memblocks can be present within a single > memory block. If the start or end of the memblock is within the > start and end of the memory block, it indicates that the memblock > is part of that memory block. Therefore, the memory block can be > added to the node where the memblock resides. If a range crosses several memblocks, it's possible that they belong to a different nodes. > 2. The memory block size is less than or equal to the memblock size > > This means that multiple memory blocks can be part of a single memblock > region. If the start or end of the memory block is within the start and > end of the memblock, it indicates that the memory block is part of the > memblock. Therefore, the memory block can be added to the node where > the memblock resides. > > In the current implementation, during node device initialization, to > find the memory block NID, it iterates over each PFN of the memory > block until it finds a match. On large systems, this can take a > long time. Why won't you replace the loop over each PFN with a loop over memblock memory regions in the node device initialization? > With this function, the boot time is reduced. > > Boot time without this function - 32TB RAM > ========================================== > Startup finished in 1min 12.413s (kernel) > > Boot time with this function - 32TB RAM > ======================================== > Startup finished in 18.031s (kernel) > > Signed-off-by: Donet Tom <donettom@linux.ibm.com> > --- > include/linux/memblock.h | 2 ++ > mm/memblock.c | 67 +++++++++++++++++++++++++++++++++++++++- > 2 files changed, 68 insertions(+), 1 deletion(-) > > diff --git a/include/linux/memblock.h b/include/linux/memblock.h > index ef5a1ecc6e59..db87f7daa46c 100644 > --- a/include/linux/memblock.h > +++ b/include/linux/memblock.h > @@ -277,6 +277,8 @@ static inline bool memblock_is_driver_managed(struct memblock_region *m) > > int memblock_search_pfn_nid(unsigned long pfn, unsigned long *start_pfn, > unsigned long *end_pfn); > +bool curr_node_memblock_intersect_memory_block(unsigned long start_pfn, > + unsigned long end_pfn, int curr_nid); > void __next_mem_pfn_range(int *idx, int nid, unsigned long *out_start_pfn, > unsigned long *out_end_pfn, int *out_nid); > > diff --git a/mm/memblock.c b/mm/memblock.c > index 0a53db4d9f7b..570ab7ac4dce 100644 > --- a/mm/memblock.c > +++ b/mm/memblock.c > @@ -6,6 +6,8 @@ > * Copyright (C) 2001 Peter Bergner. > */ > > +#include "linux/stddef.h" > +#include "linux/types.h" > #include <linux/kernel.h> > #include <linux/slab.h> > #include <linux/init.h> > @@ -17,7 +19,7 @@ > #include <linux/seq_file.h> > #include <linux/memblock.h> > #include <linux/mutex.h> > - > +#include <linux/minmax.h> > #include <asm/sections.h> > #include <linux/io.h> > > @@ -1909,6 +1911,69 @@ bool __init_memblock memblock_is_map_memory(phys_addr_t addr) > return !memblock_is_nomap(&memblock.memory.regions[i]); > } > > +/** > + * curr_node_memblock_intersect_memory_block: checks if the current node's memblock > + * region intersects with the memory block. > + * @start_pfn: memory block start pfn > + * @end_pfn: memory block end_pfn > + * @curr_nid: Current node > + * > + * This function takes the start and end PFN of a memory block, as well as the node ID > + * that is being registered. It then finds the memblock region of the current node and > + * checks if the passed memory block intersects with the memblock. If there is an > + * intersection, the function returns true; otherwise, it returns false. > + * > + * Return: > + * If the current node's memblock region intersects with the memory block, it returns > + * true; otherwise, it returns false. > + */ > +bool __init_memblock curr_node_memblock_intersect_memory_block(unsigned long start_pfn, > + unsigned long end_pfn, int curr_nid) > +{ > + struct memblock_region *r; > + unsigned long r_start, r_end; > + unsigned long size = end_pfn - start_pfn; > + unsigned long r_size = 0; > + > + for_each_mem_region(r) { > + r_start = PFN_DOWN(r->base); > + r_end = PFN_DOWN(r->base + r->size); > + r_size = r_end - r_start; > + > + if (r->nid == curr_nid) { r->nid is not defined for !NUMA configurations, please use memblock_get_region_node() > + if (size > r_size) { > + /* > + * The memory block size is greater than the memblock > + * region size, meaning multiple memblocks can be present > + * within a single memory block. If the memblock's start > + * or end is within the memory block's start and end, It > + * indicates that the memblock is part of this memory block. > + * Therefore, the memory block can be added to the node > + * where the memblock resides. > + */ > + if (in_range(r_start, start_pfn, size) || > + in_range(r_end, start_pfn, size)) > + return true; > + } else { > + /* > + * The memory block size is less than or equal to the > + * memblock size, meaning multiple memory blocks can > + * be part of a single memblock region. If the memory > + * block's start or end is within the memblock's start > + * and end, it indicates that the memory block is part of > + * the memblock. Therefore, the memory block can be added > + * to the node where the memblock resides. > + */ > + if (in_range(start_pfn, r_start, r_size) || > + in_range(end_pfn, r_start, r_size)) > + return true; > + } > + } > + } > + return false; > +} > + > + > int __init_memblock memblock_search_pfn_nid(unsigned long pfn, > unsigned long *start_pfn, unsigned long *end_pfn) > { > -- > 2.48.1 >
On 4/10/25 1:19 PM, Mike Rapoport wrote: > Hi, > > On Wed, Apr 09, 2025 at 10:57:56AM +0530, Donet Tom wrote: >> A new function, curr_node_memblock_intersect_memory_block, has been >> added to check if the current node's NID intersects with a memory block. > As Andrew mentioned, the name is too long :) Sorry, I will reduce the name length from next time. > Maybe memblock_range_intersects_node(), but I think intersection is not the > right thing to check (see below). > > Also, memblock does not care about sysfs representation of memory blocks, > please use "range" rather than "memory block" in changelog and comments. sure. > >> This function takes the start and end PFN of a memory block, along with >> the node ID being registered. It then finds the memblock region of the >> current node and check if the passed memory block intersects with it. If >> there is an intersection, the function returns true; otherwise, itreturns >> false. > > Please describe here what problem you are solving and why you need this > functionality rather than what the new function does. > >> There are two scenarios to consider during the search: >> >> 1. The memory block size is greater than the memblock region size. >> >> This means that multiple memblocks can be present within a single >> memory block. If the start or end of the memblock is within the >> start and end of the memory block, it indicates that the memblock >> is part of that memory block. Therefore, the memory block can be >> added to the node where the memblock resides. > If a range crosses several memblocks, it's possible that they belong to a > different nodes. > >> 2. The memory block size is less than or equal to the memblock size >> >> This means that multiple memory blocks can be part of a single memblock >> region. If the start or end of the memory block is within the start and >> end of the memblock, it indicates that the memory block is part of the >> memblock. Therefore, the memory block can be added to the node where >> the memblock resides. >> >> In the current implementation, during node device initialization, to >> find the memory block NID, it iterates over each PFN of the memory >> block until it finds a match. On large systems, this can take a >> long time. > Why won't you replace the loop over each PFN with a loop over memblock > memory regions in the node device initialization? > The same question I have ,do you mean that we should iterate over all memblock regions, identify the regions belonging to the current node, and then retrieve the corresponding memory blocks to register them under that node? Thanks Donet > >> With this function, the boot time is reduced. >> >> Boot time without this function - 32TB RAM >> ========================================== >> Startup finished in 1min 12.413s (kernel) >> >> Boot time with this function - 32TB RAM >> ======================================== >> Startup finished in 18.031s (kernel) >> >> Signed-off-by: Donet Tom <donettom@linux.ibm.com> >> --- >> include/linux/memblock.h | 2 ++ >> mm/memblock.c | 67 +++++++++++++++++++++++++++++++++++++++- >> 2 files changed, 68 insertions(+), 1 deletion(-) >> >> diff --git a/include/linux/memblock.h b/include/linux/memblock.h >> index ef5a1ecc6e59..db87f7daa46c 100644 >> --- a/include/linux/memblock.h >> +++ b/include/linux/memblock.h >> @@ -277,6 +277,8 @@ static inline bool memblock_is_driver_managed(struct memblock_region *m) >> >> int memblock_search_pfn_nid(unsigned long pfn, unsigned long *start_pfn, >> unsigned long *end_pfn); >> +bool curr_node_memblock_intersect_memory_block(unsigned long start_pfn, >> + unsigned long end_pfn, int curr_nid); >> void __next_mem_pfn_range(int *idx, int nid, unsigned long *out_start_pfn, >> unsigned long *out_end_pfn, int *out_nid); >> >> diff --git a/mm/memblock.c b/mm/memblock.c >> index 0a53db4d9f7b..570ab7ac4dce 100644 >> --- a/mm/memblock.c >> +++ b/mm/memblock.c >> @@ -6,6 +6,8 @@ >> * Copyright (C) 2001 Peter Bergner. >> */ >> >> +#include "linux/stddef.h" >> +#include "linux/types.h" >> #include <linux/kernel.h> >> #include <linux/slab.h> >> #include <linux/init.h> >> @@ -17,7 +19,7 @@ >> #include <linux/seq_file.h> >> #include <linux/memblock.h> >> #include <linux/mutex.h> >> - >> +#include <linux/minmax.h> >> #include <asm/sections.h> >> #include <linux/io.h> >> >> @@ -1909,6 +1911,69 @@ bool __init_memblock memblock_is_map_memory(phys_addr_t addr) >> return !memblock_is_nomap(&memblock.memory.regions[i]); >> } >> >> +/** >> + * curr_node_memblock_intersect_memory_block: checks if the current node's memblock >> + * region intersects with the memory block. >> + * @start_pfn: memory block start pfn >> + * @end_pfn: memory block end_pfn >> + * @curr_nid: Current node >> + * >> + * This function takes the start and end PFN of a memory block, as well as the node ID >> + * that is being registered. It then finds the memblock region of the current node and >> + * checks if the passed memory block intersects with the memblock. If there is an >> + * intersection, the function returns true; otherwise, it returns false. >> + * >> + * Return: >> + * If the current node's memblock region intersects with the memory block, it returns >> + * true; otherwise, it returns false. >> + */ >> +bool __init_memblock curr_node_memblock_intersect_memory_block(unsigned long start_pfn, >> + unsigned long end_pfn, int curr_nid) >> +{ >> + struct memblock_region *r; >> + unsigned long r_start, r_end; >> + unsigned long size = end_pfn - start_pfn; >> + unsigned long r_size = 0; >> + >> + for_each_mem_region(r) { >> + r_start = PFN_DOWN(r->base); >> + r_end = PFN_DOWN(r->base + r->size); >> + r_size = r_end - r_start; >> + >> + if (r->nid == curr_nid) { > r->nid is not defined for !NUMA configurations, please use > memblock_get_region_node() > >> + if (size > r_size) { >> + /* >> + * The memory block size is greater than the memblock >> + * region size, meaning multiple memblocks can be present >> + * within a single memory block. If the memblock's start >> + * or end is within the memory block's start and end, It >> + * indicates that the memblock is part of this memory block. >> + * Therefore, the memory block can be added to the node >> + * where the memblock resides. >> + */ >> + if (in_range(r_start, start_pfn, size) || >> + in_range(r_end, start_pfn, size)) >> + return true; >> + } else { >> + /* >> + * The memory block size is less than or equal to the >> + * memblock size, meaning multiple memory blocks can >> + * be part of a single memblock region. If the memory >> + * block's start or end is within the memblock's start >> + * and end, it indicates that the memory block is part of >> + * the memblock. Therefore, the memory block can be added >> + * to the node where the memblock resides. >> + */ >> + if (in_range(start_pfn, r_start, r_size) || >> + in_range(end_pfn, r_start, r_size)) >> + return true; >> + } >> + } >> + } >> + return false; >> +} >> + >> + >> int __init_memblock memblock_search_pfn_nid(unsigned long pfn, >> unsigned long *start_pfn, unsigned long *end_pfn) >> { >> -- >> 2.48.1 >>
diff --git a/include/linux/memblock.h b/include/linux/memblock.h index ef5a1ecc6e59..db87f7daa46c 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h @@ -277,6 +277,8 @@ static inline bool memblock_is_driver_managed(struct memblock_region *m) int memblock_search_pfn_nid(unsigned long pfn, unsigned long *start_pfn, unsigned long *end_pfn); +bool curr_node_memblock_intersect_memory_block(unsigned long start_pfn, + unsigned long end_pfn, int curr_nid); void __next_mem_pfn_range(int *idx, int nid, unsigned long *out_start_pfn, unsigned long *out_end_pfn, int *out_nid); diff --git a/mm/memblock.c b/mm/memblock.c index 0a53db4d9f7b..570ab7ac4dce 100644 --- a/mm/memblock.c +++ b/mm/memblock.c @@ -6,6 +6,8 @@ * Copyright (C) 2001 Peter Bergner. */ +#include "linux/stddef.h" +#include "linux/types.h" #include <linux/kernel.h> #include <linux/slab.h> #include <linux/init.h> @@ -17,7 +19,7 @@ #include <linux/seq_file.h> #include <linux/memblock.h> #include <linux/mutex.h> - +#include <linux/minmax.h> #include <asm/sections.h> #include <linux/io.h> @@ -1909,6 +1911,69 @@ bool __init_memblock memblock_is_map_memory(phys_addr_t addr) return !memblock_is_nomap(&memblock.memory.regions[i]); } +/** + * curr_node_memblock_intersect_memory_block: checks if the current node's memblock + * region intersects with the memory block. + * @start_pfn: memory block start pfn + * @end_pfn: memory block end_pfn + * @curr_nid: Current node + * + * This function takes the start and end PFN of a memory block, as well as the node ID + * that is being registered. It then finds the memblock region of the current node and + * checks if the passed memory block intersects with the memblock. If there is an + * intersection, the function returns true; otherwise, it returns false. + * + * Return: + * If the current node's memblock region intersects with the memory block, it returns + * true; otherwise, it returns false. + */ +bool __init_memblock curr_node_memblock_intersect_memory_block(unsigned long start_pfn, + unsigned long end_pfn, int curr_nid) +{ + struct memblock_region *r; + unsigned long r_start, r_end; + unsigned long size = end_pfn - start_pfn; + unsigned long r_size = 0; + + for_each_mem_region(r) { + r_start = PFN_DOWN(r->base); + r_end = PFN_DOWN(r->base + r->size); + r_size = r_end - r_start; + + if (r->nid == curr_nid) { + if (size > r_size) { + /* + * The memory block size is greater than the memblock + * region size, meaning multiple memblocks can be present + * within a single memory block. If the memblock's start + * or end is within the memory block's start and end, It + * indicates that the memblock is part of this memory block. + * Therefore, the memory block can be added to the node + * where the memblock resides. + */ + if (in_range(r_start, start_pfn, size) || + in_range(r_end, start_pfn, size)) + return true; + } else { + /* + * The memory block size is less than or equal to the + * memblock size, meaning multiple memory blocks can + * be part of a single memblock region. If the memory + * block's start or end is within the memblock's start + * and end, it indicates that the memory block is part of + * the memblock. Therefore, the memory block can be added + * to the node where the memblock resides. + */ + if (in_range(start_pfn, r_start, r_size) || + in_range(end_pfn, r_start, r_size)) + return true; + } + } + } + return false; +} + + int __init_memblock memblock_search_pfn_nid(unsigned long pfn, unsigned long *start_pfn, unsigned long *end_pfn) {
A new function, curr_node_memblock_intersect_memory_block, has been added to check if the current node's NID intersects with a memory block. This function takes the start and end PFN of a memory block, along with the node ID being registered. It then finds the memblock region of the current node and check if the passed memory block intersects with it. If there is an intersection, the function returns true; otherwise, itreturns false. There are two scenarios to consider during the search: 1. The memory block size is greater than the memblock region size. This means that multiple memblocks can be present within a single memory block. If the start or end of the memblock is within the start and end of the memory block, it indicates that the memblock is part of that memory block. Therefore, the memory block can be added to the node where the memblock resides. 2. The memory block size is less than or equal to the memblock size This means that multiple memory blocks can be part of a single memblock region. If the start or end of the memory block is within the start and end of the memblock, it indicates that the memory block is part of the memblock. Therefore, the memory block can be added to the node where the memblock resides. In the current implementation, during node device initialization, to find the memory block NID, it iterates over each PFN of the memory block until it finds a match. On large systems, this can take a long time. With this function, the boot time is reduced. Boot time without this function - 32TB RAM ========================================== Startup finished in 1min 12.413s (kernel) Boot time with this function - 32TB RAM ======================================== Startup finished in 18.031s (kernel) Signed-off-by: Donet Tom <donettom@linux.ibm.com> --- include/linux/memblock.h | 2 ++ mm/memblock.c | 67 +++++++++++++++++++++++++++++++++++++++- 2 files changed, 68 insertions(+), 1 deletion(-)