mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
[package] nvram: request memory locked pages in mmap() and make it available for ar71xx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19486 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
* NVRAM variable manipulation (common)
|
||||
*
|
||||
* Copyright 2004, Broadcom Corporation
|
||||
* Copyright 2009, OpenWrt.org
|
||||
* Copyright 2009-2010, OpenWrt.org
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
|
||||
@@ -357,7 +357,7 @@ nvram_handle_t * nvram_open(const char *file, int rdonly)
|
||||
{
|
||||
char *mmap_area = (char *) mmap(
|
||||
NULL, nvram_erase_size, PROT_READ | PROT_WRITE,
|
||||
( rdonly == NVRAM_RO ) ? MAP_PRIVATE : MAP_SHARED, fd, 0);
|
||||
(( rdonly == NVRAM_RO ) ? MAP_PRIVATE : MAP_SHARED) | MAP_LOCKED, fd, 0);
|
||||
|
||||
if( mmap_area != MAP_FAILED )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user