<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Syslog.log in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431023#M477159</link>
    <description>just to give you some background to this message:&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If the patch does not help, you have two other choises:&lt;BR /&gt;&lt;BR /&gt; 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.&lt;BR /&gt;&lt;BR /&gt; 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.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 17 Jul 2000 05:57:03 GMT</pubDate>
    <dc:creator>Patrick Wessel</dc:creator>
    <dc:date>2000-07-17T05:57:03Z</dc:date>
    <item>
      <title>Syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431021#M477157</link>
      <description>I keep getting the following message in my syslog.log file, what does it mean?&lt;BR /&gt;&lt;BR /&gt;&amp;lt; Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43583l,43584l)&lt;BR /&gt;&amp;lt; Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43573l,43574l)&lt;BR /&gt;&amp;lt; Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43568l,43570l)&lt;BR /&gt;&amp;lt; Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43417l,43419l)&lt;BR /&gt;&amp;lt; Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43387l,43388l)&lt;BR /&gt;&amp;lt; Jul 17 14:17:18 wck1001 vmunix: sysmap: rmap ovflo, lost [43164l,43167l)</description>
      <pubDate>Mon, 17 Jul 2000 03:36:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431021#M477157</guid>
      <dc:creator>Andrew Brain or Yong Ji</dc:creator>
      <dc:date>2000-07-17T03:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431022#M477158</link>
      <description>Seems like a problem that should be taken care of by installing the patch PHKL_21532.&lt;BR /&gt;&lt;BR /&gt;From the patch text:&lt;BR /&gt;&lt;BR /&gt;"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:&lt;BR /&gt; vmunix :  bufmap :  rmap :  ovflo, lost [xx..)(xx..]"&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Rik</description>
      <pubDate>Mon, 17 Jul 2000 04:29:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431022#M477158</guid>
      <dc:creator>RikTytgat</dc:creator>
      <dc:date>2000-07-17T04:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431023#M477159</link>
      <description>just to give you some background to this message:&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If the patch does not help, you have two other choises:&lt;BR /&gt;&lt;BR /&gt; 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.&lt;BR /&gt;&lt;BR /&gt; 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.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2000 05:57:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431023#M477159</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2000-07-17T05:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog.log</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431024#M477160</link>
      <description>One other kerenel parameter to be aware of:&lt;BR /&gt;nfile can, if too large, also casue this system map fragmentation, and should eb lowered if a high value is currently set.</description>
      <pubDate>Mon, 17 Jul 2000 11:58:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-log/m-p/2431024#M477160</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2000-07-17T11:58:16Z</dc:date>
    </item>
  </channel>
</rss>

