<?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: Non-paged dynamic memory in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415620#M4174</link>
    <description>Sorry but too late for the crash dump. I'll take one next time.&lt;BR /&gt;&lt;BR /&gt;I took the source of the application and it seems Volker is right. There is a dassgn missing (or my C knowledge is too bad and I misunderstood the coding).&lt;BR /&gt;&lt;BR /&gt;Wim</description>
    <pubDate>Fri, 05 Nov 2004 05:32:45 GMT</pubDate>
    <dc:creator>Wim Van den Wyngaert</dc:creator>
    <dc:date>2004-11-05T05:32:45Z</dc:date>
    <item>
      <title>Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415612#M4166</link>
      <description>I have about 60 AlphaStations with the same hardware and software. Only the name and address are different (VMS 7.2).&lt;BR /&gt;&lt;BR /&gt;58 stations consume 2.5 MB np dyn mem. 2 consume 6.5 MB. This while using the same programs.&lt;BR /&gt;&lt;BR /&gt;I checked with sda show pool/sum.&lt;BR /&gt;&lt;BR /&gt;I found following big differences.&lt;BR /&gt;1) ORB normally takes 25 K but takes about 1 MB on the 2 stations&lt;BR /&gt;2) UCB normally takes 85 K but takes almost 2 MB on the 2 stations&lt;BR /&gt;3) MISC normally takes 100 K but takes 1.5 MB on the 2 stations&lt;BR /&gt;&lt;BR /&gt;What does it all means and how can I find the process causing it ?&lt;BR /&gt;&lt;BR /&gt;A virtual Duvel for he who solves it.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Fri, 05 Nov 2004 03:07:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415612#M4166</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-11-05T03:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415613#M4167</link>
      <description>The Duvel is for me !&lt;BR /&gt;&lt;BR /&gt;I found that BYTLM had been eaten too for certain processes. Then I found that 85% of available channels of that process were taken. Network problems caused the application to re-connect but without releasing the network devices.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Fri, 05 Nov 2004 03:43:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415613#M4167</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-11-05T03:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415614#M4168</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;let's start looking at the UCBs (these should be Unit Control Blocks for devices).&lt;BR /&gt;&lt;BR /&gt;SDA&amp;gt; SHOW POOL/HEAD/TYPE=UCB&lt;BR /&gt;&lt;BR /&gt;type return until the list ends. It should tell you the UCB packet count and the bytes used for all those UCBs.&lt;BR /&gt;&lt;BR /&gt;Then look at some of the UCB addresses found with SDA&amp;gt; SHOW DEV/ADDR=&lt;START address="" of="" packet=""&gt; -  take some addresses from the end of the UCB packet list.&lt;BR /&gt;&lt;BR /&gt;Which kind of devices are these ?&lt;BR /&gt;&lt;BR /&gt;Then do the same with /TYPE=ORB. ORBs are Object's Rights Blocks. What's the no. of packets ? You can format some of the ORBs with&lt;BR /&gt;&lt;BR /&gt;SDA&amp;gt; READ SYSDEF&lt;BR /&gt;SDA&amp;gt; FORMAT &lt;ORB address=""&gt;&lt;BR /&gt;&lt;BR /&gt;The associated device name is pointed to by &lt;BR /&gt;ORB$L_NAME_POINTER, so after you formatted an ORB, try:&lt;BR /&gt;&lt;BR /&gt;SDA&amp;gt; EXAM @(.+orb$l_name_pointer);8&lt;BR /&gt;&lt;BR /&gt;If the count of UCBs, ORBs and MISCs is about the same, you'll known that these packets somehow all are related to each other.&lt;BR /&gt;&lt;BR /&gt;Volker.&lt;BR /&gt;&lt;BR /&gt;PS: My guess would be: something from TCPIP, but you'll find out soon...&lt;BR /&gt;&lt;/ORB&gt;&lt;/START&gt;</description>
      <pubDate>Fri, 05 Nov 2004 03:47:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415614#M4168</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2004-11-05T03:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415615#M4169</link>
      <description>Volker,&lt;BR /&gt;&lt;BR /&gt;Show dev net/fu shows a lot of devices allocated by a few processes. But in TCPIP there is no device and in decnet no connection. What could be the problem ?&lt;BR /&gt;&lt;BR /&gt;The application people don't know why.&lt;BR /&gt;&lt;BR /&gt;Wim&lt;BR /&gt;(half the Duvel is for you)</description>
      <pubDate>Fri, 05 Nov 2004 04:05:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415615#M4169</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-11-05T04:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415616#M4170</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;so the UCBs/ORBs/MISCs are for which devices - TCPIP or DECnet ?&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Fri, 05 Nov 2004 04:08:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415616#M4170</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2004-11-05T04:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415617#M4171</link>
      <description>The evidence is already gone (had to reset the stations). But it was decnet+. The proceses connect to processes on server node. If that fails, they retry in a loop.&lt;BR /&gt;&lt;BR /&gt;But my main question is : why is the net device not deallocated ? Bug in decnet (7.3 eco 3) ?&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Fri, 05 Nov 2004 04:44:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415617#M4171</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-11-05T04:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415618#M4172</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;how are you going to ever document, analyze and find errors, if you 'delete the evidence' ? A forced crash would have provided the same results (after the reboot), but would have captured all the info needed...&lt;BR /&gt;&lt;BR /&gt;If we assume those were NETn: devices, may there is a $DASSGN missing ?&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Fri, 05 Nov 2004 04:52:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415618#M4172</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2004-11-05T04:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415619#M4173</link>
      <description>The MISC could be buffers for the buffered I/O requests associated with the decnet+ devices. &lt;BR /&gt;But without a crash dump to enjoy its hard to say.</description>
      <pubDate>Fri, 05 Nov 2004 05:14:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415619#M4173</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-11-05T05:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415620#M4174</link>
      <description>Sorry but too late for the crash dump. I'll take one next time.&lt;BR /&gt;&lt;BR /&gt;I took the source of the application and it seems Volker is right. There is a dassgn missing (or my C knowledge is too bad and I misunderstood the coding).&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Fri, 05 Nov 2004 05:32:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415620#M4174</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-11-05T05:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415621#M4175</link>
      <description>Volker and others,&lt;BR /&gt;&lt;BR /&gt;Same problem again on a different node. This time with a crash dump.&lt;BR /&gt;&lt;BR /&gt;This time all non paged dynamic memory is gone (and node went into hang). Show pool/sum shows 52% is going to type unknown. Any suggestions ?&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 30 May 2005 03:46:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415621#M4175</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-05-30T03:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415622#M4176</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;it may not be trivial to find the underlying problem, but let's start like this:&lt;BR /&gt;&lt;BR /&gt;SDA&amp;gt; SET OUT x.x&lt;BR /&gt;SDA&amp;gt; SHOW POOL/NONP/HEADER/TYPE=UNKNOWN&lt;BR /&gt;SDA&amp;gt; EXIT&lt;BR /&gt;&lt;BR /&gt;$ EDIT/READ x.x&lt;BR /&gt;&lt;BR /&gt;Go to the bottom of the file and look at the headers (first 4 longwords) of those unknown packets. Looking at the bottom of the file is based on the assumption, that 'something happened' and then some code started allocating those packets in some kind of loop. Can you spot any particular pattern (size, header contents) ?&lt;BR /&gt;&lt;BR /&gt;Another possibilty would be to show all packets from non-paged pool (without /TYPE=UNKNOWN) to a file and apply the same kind of 'looking around'. You may see a repeating pattern of packet types filling up pool.&lt;BR /&gt;&lt;BR /&gt;Consider to compare pool usage (packet types) with the running system to determine, if the high percentage of Unknown packets is the real problem.&lt;BR /&gt;&lt;BR /&gt;If you've spotted some patterns, consider to include part of the SDA output in an attachment, but not a full pool listing ;-)&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Mon, 30 May 2005 04:02:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415622#M4176</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-05-30T04:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415623#M4177</link>
      <description>The output of the first command seems to contain some Sybase server related info.&lt;BR /&gt;But why/what ? I'll post the output.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 30 May 2005 05:09:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415623#M4177</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-05-30T05:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415624#M4178</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;the summary of your SDA&amp;gt; SHOW POOL/NONP/TYPE=UNKOWN output seems to indicate Unknown packets only consuming 7.4 from 55 million bytes of nonpaged pool.&lt;BR /&gt;&lt;BR /&gt;Does CLUE MEM/STAT show expansion/allocation failures ?&lt;BR /&gt;&lt;BR /&gt;Could you post SHOW POOL/NONP/SUMM ?&lt;BR /&gt;&lt;BR /&gt;Don't expect a fast resolution (at least not with no access to the dump).&lt;BR /&gt;&lt;BR /&gt;Volker.&lt;BR /&gt;</description>
      <pubDate>Mon, 30 May 2005 05:21:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415624#M4178</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-05-30T05:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415625#M4179</link>
      <description>Volker,&lt;BR /&gt;&lt;BR /&gt;I was confused. I saw 52% and I thought it was 52% of the whole NP dyn mem. I checked on the running system and it also takes about 50% unknown.&lt;BR /&gt;&lt;BR /&gt;I also posted the output of show mem, the prove that the memory was gone.&lt;BR /&gt;&lt;BR /&gt;VPA also proved that it was gone since the moment VPA started during boot.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 30 May 2005 05:37:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415625#M4179</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-05-30T05:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415626#M4180</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;your attachment looks like an SEA errlog analysis. Could you please post the SDA&amp;gt; SHOW MEM/POOL/SUMM output ?&lt;BR /&gt;&lt;BR /&gt;If you're running VPA, you could tell, when the problem started. Did pool decrease slowly over time or did it just decrease suddenly ?&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Mon, 30 May 2005 05:43:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415626#M4180</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-05-30T05:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415627#M4181</link>
      <description>Sorry Volker.&lt;BR /&gt;&lt;BR /&gt;VPA didn't see a decrease. When it started less than 1 MB was free.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 30 May 2005 05:49:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415627#M4181</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-05-30T05:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415628#M4182</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;correction:&lt;BR /&gt;&lt;BR /&gt;SDA&amp;gt; SHOW POOL/NONP/SUMM&lt;BR /&gt;&lt;BR /&gt;About some of the Unknown packets:&lt;BR /&gt;&lt;BR /&gt;TCPIP does not use a standard OpenVMS packet header, but you can identify the TCPIP packets, which show up as Unknown:&lt;BR /&gt;&lt;BR /&gt;If the pool packet size and the 4th longword of the packet header (count from right to left) have the SAME value and the VMS packet size word (low word in 3rd longword) is ZERO, it's most probably a TCPIP packet.&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Mon, 30 May 2005 05:50:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415628#M4182</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-05-30T05:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415629#M4183</link>
      <description>Wim,&lt;BR /&gt;&lt;BR /&gt;let's try to re-assess the problem description:&lt;BR /&gt;&lt;BR /&gt;- are we talking about unexplained static nonpaged pool consumption on 2 of your 60 Alphastations ?&lt;BR /&gt;- if so, is it still ORBs, UCBs, and MISCs ?&lt;BR /&gt;&lt;BR /&gt;- by the time VPA starts during startup, most of nonpaged pool is already consumed.&lt;BR /&gt;&lt;BR /&gt;- and today one of those 2 stations hung and you forced a crash.&lt;BR /&gt;&lt;BR /&gt;Anything else ?&lt;BR /&gt;&lt;BR /&gt;Could you please attach the SDA&amp;gt; SHOW POOL/NONP/SUMM output ?&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Mon, 30 May 2005 05:59:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415629#M4183</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-05-30T05:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415630#M4184</link>
      <description>Volker,&lt;BR /&gt;&lt;BR /&gt;This is not the same problem. This time it concerns a GS160 node of an interbuilding FDDI cluster. I found it in hang and forced a crash. And after 2 minutes of boot, the memory seems to be gone.&lt;BR /&gt;&lt;BR /&gt;Sorry for the mistakes but I have to use different tools to get it on my pc.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 30 May 2005 06:07:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415630#M4184</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-05-30T06:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Non-paged dynamic memory</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415631#M4185</link>
      <description>Now HP nailed me ...</description>
      <pubDate>Mon, 30 May 2005 06:08:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/non-paged-dynamic-memory/m-p/3415631#M4185</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-05-30T06:08:51Z</dc:date>
    </item>
  </channel>
</rss>

