zoukankan      html  css  js  c++  java
  • 内存管理(一)

    内存管理(一)

    页(page)

    内核把物理页作为内存管理的基本单位,尽管处理器最小的可寻址单位通常为字(甚至字节),但是,内存管理单元(MMU)通常以页为单位进行处理。从虚拟内存角度来看,页就是最小单位。大多数32位体系结构都支持4K的页。

    内核用struct page结构表示系统中的每个物理页,该结构位于<linux/mm_types.h>

    /*
     * Each physical page in the system has a struct page associated with
     * it to keep track of whatever it is we are using the page for at the
     * moment. Note that we have no way to track which tasks are using
     * a page, though if it is a pagecache page, rmap structures can tell us
     * who is mapping it.
     */
    struct page {
    	unsigned long flags;	/* Atomic flags,some possibly updated asynchronously */
    	atomic_t _count;		/* Usage count, see below. */
    	union {
    		atomic_t _mapcount;	/* Count of ptes mapped in mms,
    					 		 * to show when page is mapped
    							 * & limit reverse map searches.
    							 */
    		struct {		/* SLUB */
    			u16 inuse;
    			u16 objects;
    		};
    	};
    	union {
    	    struct {
    		unsigned long private;		/* Mapping-private opaque data:
    					 	 * usually used for buffer_heads
    						 * if PagePrivate set; used for
    						 * swp_entry_t if PageSwapCache;
    						 * indicates order in the buddy
    						 * system if PG_buddy is set.
    						 */
    		struct address_space *mapping;	/* If low bit clear, points to
    						 * inode address_space, or NULL.
    						 * If page mapped as anonymous
    						 * memory, low bit is set, and
    						 * it points to anon_vma object:
    						 * see PAGE_MAPPING_ANON below.
    						 */
    	    };
    #if USE_SPLIT_PTLOCKS
    	    spinlock_t ptl;
    #endif
    	    struct kmem_cache *slab;	/* SLUB: Pointer to slab */
    	    struct page *first_page;	/* Compound tail pages */
    	};
    	union {
    		pgoff_t index;		/* Our offset within mapping. */
    		void *freelist;		/* SLUB: freelist req. slab lock */
    	};
    	struct list_head lru;		/* Pageout list, eg. active_list
    					 * protected by zone->lru_lock !
    					 */
    	/*
    	 * On machines where all RAM is mapped into kernel address space,
    	 * we can simply calculate the virtual address. On machines with
    	 * highmem some memory is mapped into kernel virtual memory
    	 * dynamically, so we need a place to store that address.
    	 * Note that this field could be 16 bits on x86 ... ;)
    	 *
    	 * Architectures with slow multiplication can define
    	 * WANT_PAGE_VIRTUAL in asm/page.h
    	 */
    #if defined(WANT_PAGE_VIRTUAL)
    	void *virtual;			/* Kernel virtual address (NULL if
    					   not kmapped, ie. highmem) */
    #endif /* WANT_PAGE_VIRTUAL */
    #ifdef CONFIG_WANT_PAGE_DEBUG_FLAGS
    	unsigned long debug_flags;	/* Use atomic bitops on this */
    #endif
    
    #ifdef CONFIG_KMEMCHECK
    	/*
    	 * kmemcheck wants to track the status of each byte in a page; this
    	 * is a pointer to such a status block. NULL if not tracked.
    	 */
    	void *shadow;
    #endif
    };
    
    • flag用来存放页的状态,包括:页是不是脏的,是不是被锁定在内存中等。
    /*
     * Don't use the *_dontuse flags.  Use the macros.  Otherwise you'll break
     * locked- and dirty-page accounting.
     *
     * The page flags field is split into two parts, the main flags area
     * which extends from the low bits upwards, and the fields area which
     * extends from the high bits downwards.
     *
     *  | FIELD | ... | FLAGS |
     *  N-1           ^       0
     *               (NR_PAGEFLAGS)
     *
     * The fields area is reserved for fields mapping zone, node (for NUMA) and
     * SPARSEMEM section (for variants of SPARSEMEM that require section ids like
     * SPARSEMEM_EXTREME with !SPARSEMEM_VMEMMAP).
     */
    enum pageflags {
    	PG_locked,		/* Page is locked. Don't touch. */
    	PG_error,
    	PG_referenced,
    	PG_uptodate,
    	PG_dirty,
    	PG_lru,
    	PG_active,
    	PG_slab,
    	PG_owner_priv_1,	/* Owner use. If pagecache, fs may use*/
    	PG_arch_1,
    	PG_reserved,
    	PG_private,		/* If pagecache, has fs-private data */
    	PG_private_2,		/* If pagecache, has fs aux data */
    	PG_writeback,		/* Page is under writeback */
    #ifdef CONFIG_PAGEFLAGS_EXTENDED
    	PG_head,		/* A head page */
    	PG_tail,		/* A tail page */
    #else
    	PG_compound,		/* A compound page */
    #endif
    	PG_swapcache,		/* Swap page: swp_entry_t in private */
    	PG_mappedtodisk,	/* Has blocks allocated on-disk */
    	PG_reclaim,		/* To be reclaimed asap */
    	PG_buddy,		/* Page is free, on buddy lists */
    	PG_swapbacked,		/* Page is backed by RAM/swap */
    	PG_unevictable,		/* Page is "unevictable"  */
    #ifdef CONFIG_MMU
    	PG_mlocked,		/* Page is vma mlocked */
    #endif
    #ifdef CONFIG_ARCH_USES_PG_UNCACHED
    	PG_uncached,		/* Page has been mapped as uncached */
    #endif
    #ifdef CONFIG_MEMORY_FAILURE
    	PG_hwpoison,		/* hardware poisoned page. Don't touch */
    #endif
    	__NR_PAGEFLAGS,
    
    	/* Filesystems */
    	PG_checked = PG_owner_priv_1,
    
    	/* Two page bits are conscripted by FS-Cache to maintain local caching
    	 * state.  These bits are set on pages belonging to the netfs's inodes
    	 * when those inodes are being locally cached.
    	 */
    	PG_fscache = PG_private_2,	/* page backed by cache */
    
    	/* XEN */
    	PG_pinned = PG_owner_priv_1,
    	PG_savepinned = PG_dirty,
    
    	/* SLOB */
    	PG_slob_free = PG_private,
    
    	/* SLUB */
    	PG_slub_frozen = PG_active,
    	PG_slub_debug = PG_error,
    };
    
    • _count存放页的引用计数——这一页被引用了多少次。计数值为-1时表示当前内核并没有引用这一页,于是在新的分配中就可以使用它。但是内核代码不应当直接检查它,而是要通过调用page_count()函数进行检查。对于page_count()函数而言,返回0为页空闲,返回一个正整数表示页被使用。

    • 一个页可以由页缓存使用,mapping指向和这个页关联的address_space对象;或者作为私有数据,由private指向;或者作为进程页表中的映射。

    • virtual是页的虚拟地址。通常情况下,他就是页在虚拟内存中的地址。有些内存(所谓的高端内存)并不永久地映射到内核地址空间上,这种情况下值为NULL,需要的时候必须动态地映射这些页。

    page结构与物理页相关,而并非与虚拟页相关。内核仅仅用这个数据结构来描述当前时刻在相关地物理页中存放的东西,目的在于描述物理内存本身,而不是描述包含在其中的数据。

    区(zone)

    由于硬件限制,内核并不能对所有页都一视同仁。有些页位于内存中特定的物理地址上,所以不能将其用于特定的任务。由于存在这种限制,所以内核把页划分为不同的区。内核使用区对具有相似特性的页进行分组。

    Linux必须处理如下两种由于硬件存在缺陷而引起的内存寻址问题:

    • 一些硬件只能用某些特定的内存地址来执行DMA。
    • 一些体系结构的内存的物理寻址范围比虚拟寻址范围大得多。这样,就有一些内存不能永久的映射到内核空间上。

    因为存在这些制约条件,Linux主要使用了四种区:

    • ZONE_DMA——这个页包含的页能用来执行DMA操作
    • ZONE_DMA32——和ZONE_DMA类似,该区包含的页面可用来执行DMA操作;而和ZONE_DMA不同之处在于,这些页面只能被32位设备访问。
    • ZONE_NORMAL——这个区包含的都是正常映射的页。
    • ZONE_HIGHEM——这个区包含“高端内存”,其中的页并不能永久地映射到内核地址空间。

    区的实际使用和分布是与体系结构相关的。对于ARM体系结构来说,主要关注NORMAL即可。

    Linux把系统的页划分为区,形成不同的内存池,这样就可以根据用途进行分配了。

    表示zone的结构如下:

    struct zone {
    	/* Fields commonly accessed by the page allocator */
    
    	/* zone watermarks, access with *_wmark_pages(zone) macros */
    	unsigned long watermark[NR_WMARK];
    
    	/*
    	 * We don't know if the memory that we're going to allocate will be freeable
    	 * or/and it will be released eventually, so to avoid totally wasting several
    	 * GB of ram we must reserve some of the lower zone memory (otherwise we risk
    	 * to run OOM on the lower zones despite there's tons of freeable ram
    	 * on the higher zones). This array is recalculated at runtime if the
    	 * sysctl_lowmem_reserve_ratio sysctl changes.
    	 */
    	unsigned long		lowmem_reserve[MAX_NR_ZONES];
    
    #ifdef CONFIG_NUMA
    	int node;
    	/*
    	 * zone reclaim becomes active if more unmapped pages exist.
    	 */
    	unsigned long		min_unmapped_pages;
    	unsigned long		min_slab_pages;
    #endif
    	struct per_cpu_pageset __percpu *pageset;
    	/*
    	 * free areas of different sizes
    	 */
    	spinlock_t		lock;
    	int                     all_unreclaimable; /* All pages pinned */
    #ifdef CONFIG_MEMORY_HOTPLUG
    	/* see spanned/present_pages for more description */
    	seqlock_t		span_seqlock;
    #endif
    	struct free_area	free_area[MAX_ORDER];
    
    #ifndef CONFIG_SPARSEMEM
    	/*
    	 * Flags for a pageblock_nr_pages block. See pageblock-flags.h.
    	 * In SPARSEMEM, this map is stored in struct mem_section
    	 */
    	unsigned long		*pageblock_flags;
    #endif /* CONFIG_SPARSEMEM */
    
    
    	ZONE_PADDING(_pad1_)
    
    	/* Fields commonly accessed by the page reclaim scanner */
    	spinlock_t		lru_lock;	
    	struct zone_lru {
    		struct list_head list;
    	} lru[NR_LRU_LISTS];
    
    	struct zone_reclaim_stat reclaim_stat;
    
    	unsigned long		pages_scanned;	   /* since last reclaim */
    	unsigned long		flags;		   /* zone flags, see below */
    
    	/* Zone statistics */
    	atomic_long_t		vm_stat[NR_VM_ZONE_STAT_ITEMS];
    
    	/*
    	 * prev_priority holds the scanning priority for this zone.  It is
    	 * defined as the scanning priority at which we achieved our reclaim
    	 * target at the previous try_to_free_pages() or balance_pgdat()
    	 * invocation.
    	 *
    	 * We use prev_priority as a measure of how much stress page reclaim is
    	 * under - it drives the swappiness decision: whether to unmap mapped
    	 * pages.
    	 *
    	 * Access to both this field is quite racy even on uniprocessor.  But
    	 * it is expected to average out OK.
    	 */
    	int prev_priority;
    
    	/*
    	 * The target ratio of ACTIVE_ANON to INACTIVE_ANON pages on
    	 * this zone's LRU.  Maintained by the pageout code.
    	 */
    	unsigned int inactive_ratio;
    
    
    	ZONE_PADDING(_pad2_)
    	/* Rarely used or read-mostly fields */
    
    	/*
    	 * wait_table		-- the array holding the hash table
    	 * wait_table_hash_nr_entries	-- the size of the hash table array
    	 * wait_table_bits	-- wait_table_size == (1 << wait_table_bits)
    	 *
    	 * The purpose of all these is to keep track of the people
    	 * waiting for a page to become available and make them
    	 * runnable again when possible. The trouble is that this
    	 * consumes a lot of space, especially when so few things
    	 * wait on pages at a given time. So instead of using
    	 * per-page waitqueues, we use a waitqueue hash table.
    	 *
    	 * The bucket discipline is to sleep on the same queue when
    	 * colliding and wake all in that wait queue when removing.
    	 * When something wakes, it must check to be sure its page is
    	 * truly available, a la thundering herd. The cost of a
    	 * collision is great, but given the expected load of the
    	 * table, they should be so rare as to be outweighed by the
    	 * benefits from the saved space.
    	 *
    	 * __wait_on_page_locked() and unlock_page() in mm/filemap.c, are the
    	 * primary users of these fields, and in mm/page_alloc.c
    	 * free_area_init_core() performs the initialization of them.
    	 */
    	wait_queue_head_t	* wait_table;
    	unsigned long		wait_table_hash_nr_entries;
    	unsigned long		wait_table_bits;
    
    	/*
    	 * Discontig memory support fields.
    	 */
    	struct pglist_data	*zone_pgdat;
    	/* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */
    	unsigned long		zone_start_pfn;
    
    	/*
    	 * zone_start_pfn, spanned_pages and present_pages are all
    	 * protected by span_seqlock.  It is a seqlock because it has
    	 * to be read outside of zone->lock, and it is done in the main
    	 * allocator path.  But, it is written quite infrequently.
    	 *
    	 * The lock is declared along with zone->lock because it is
    	 * frequently read in proximity to zone->lock.  It's good to
    	 * give them a chance of being in the same cacheline.
    	 */
    	unsigned long		spanned_pages;	/* total size, including holes */
    	unsigned long		present_pages;	/* amount of memory (excluding holes) */
    
    	/*
    	 * rarely used fields:
    	 */
    	const char		*name;
    }
    
  • 相关阅读:
    C语言实现大数计算
    shell编程题(九)
    shell编程题(八)
    信号(一)
    shell编程题(六)
    C语言实现webServer
    chrome导入导出常用书签
    JdbcTemplate
    数据库连接池
    JDBC
  • 原文地址:https://www.cnblogs.com/zhaipanger/p/12956084.html
Copyright © 2011-2022 走看看