HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Syslog.log
Operating System - HP-UX
1829225
Members
2109
Online
109987
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2000 08:36 PM
07-16-2000 08:36 PM
Syslog.log
I keep getting the following message in my syslog.log file, what does it mean?
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43583l,43584l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43573l,43574l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43568l,43570l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43417l,43419l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43387l,43388l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43164l,43167l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43583l,43584l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43573l,43574l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43568l,43570l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43417l,43419l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43387l,43388l)
< Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43164l,43167l)
I'm spinning around
- Tags:
- rmap ovflo
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2000 09:29 PM
07-16-2000 09:29 PM
Re: Syslog.log
Seems like a problem that should be taken care of by installing the patch PHKL_21532.
From the patch text:
"64bit systems with large amount of memory (e.g. 32Gb) and having large buffer cache (e.g. 8Gb) configured find the syslog is flooded with the following error message:
vmunix : bufmap : rmap : ovflo, lost [xx..)(xx..]"
Hope this helps,
Rik
From the patch text:
"64bit systems with large amount of memory (e.g. 32Gb) and having large buffer cache (e.g. 8Gb) configured find the syslog is flooded with the following error message:
vmunix : bufmap : rmap : ovflo, lost [xx..)(xx..]"
Hope this helps,
Rik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2000 10:57 PM
07-16-2000 10:57 PM
Re: Syslog.log
just to give you some background to this message:
The sysmap being referred to here is the resource map (rmap) which is used by the kernel to allocate pages of virtual memory to various kernel-related processes. An rmap overflow is typically the result of fragmentation: where kernel virtual memory is being freed in many small, non-contiguous chunks which cannot be combined into free areas. Since a resource map structure contains an entry for each contiguous chunk of free virtual memory, the more fragmentation that exists, the more discreet chunks of memory must be managed, which may overflow the finite resource map.
If the patch does not help, you have two other choises:
2. Figure-out which application is causing kernel virtual memory to become so fragmented as to cause this problem, and get it to do better garbage collection.
3. Increase the size of the resource map so that less will be lost. From HP-UX 10.x to 10.20, the number of map entries is determined by 2*nproc, if nproc is larger than 800. Otherwise, the number of entries is set to 800. In HP-UX 10.30 and later, the kernel tunable nsysmap allows you to appropriately size the map. Each proc entry is several hundred bytes in size, whereas each sysmap entry is just 8. The workaround for the panic caused by sysmap fragmentation is to increase nproc (to greater than 800) or nsysmap in order to increase size of sysmap and reduce the chance of resource map overflow.
The sysmap being referred to here is the resource map (rmap) which is used by the kernel to allocate pages of virtual memory to various kernel-related processes. An rmap overflow is typically the result of fragmentation: where kernel virtual memory is being freed in many small, non-contiguous chunks which cannot be combined into free areas. Since a resource map structure contains an entry for each contiguous chunk of free virtual memory, the more fragmentation that exists, the more discreet chunks of memory must be managed, which may overflow the finite resource map.
If the patch does not help, you have two other choises:
2. Figure-out which application is causing kernel virtual memory to become so fragmented as to cause this problem, and get it to do better garbage collection.
3. Increase the size of the resource map so that less will be lost. From HP-UX 10.x to 10.20, the number of map entries is determined by 2*nproc, if nproc is larger than 800. Otherwise, the number of entries is set to 800. In HP-UX 10.30 and later, the kernel tunable nsysmap allows you to appropriately size the map. Each proc entry is several hundred bytes in size, whereas each sysmap entry is just 8. The workaround for the panic caused by sysmap fragmentation is to increase nproc (to greater than 800) or nsysmap in order to increase size of sysmap and reduce the chance of resource map overflow.
There is no good troubleshooting with bad data
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2000 04:58 AM
07-17-2000 04:58 AM
Re: Syslog.log
One other kerenel parameter to be aware of:
nfile can, if too large, also casue this system map fragmentation, and should eb lowered if a high value is currently set.
nfile can, if too large, also casue this system map fragmentation, and should eb lowered if a high value is currently set.
My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP