<?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: Itanium CPU Info in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055215#M435583</link>
    <description>Yeah - SAM's wrong.  &lt;BR /&gt;&lt;BR /&gt;Try looking for SAM patches.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Wed, 27 Jun 2007 07:36:39 GMT</pubDate>
    <dc:creator>Pete Randall</dc:creator>
    <dc:date>2007-06-27T07:36:39Z</dc:date>
    <item>
      <title>Itanium CPU Info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055213#M435581</link>
      <description>Hi -&lt;BR /&gt;&lt;BR /&gt;I have a little question on CPU info on an rx3600 running HP-UX 11.23.  There seems to be different information when I run /usr/contrib/bin/machinfo vs. the cpu information in sam.  The machinfo command gives CPU Clock speed = 1396 MHz and SAM gives CPU Clock Frequency: 399 MHz.  I would have thought these number would have been the same - any ideas??</description>
      <pubDate>Wed, 27 Jun 2007 07:34:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055213#M435581</guid>
      <dc:creator>penelope_1</dc:creator>
      <dc:date>2007-06-27T07:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium CPU Info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055214#M435582</link>
      <description>Yes - there is a patch regarding this.&lt;BR /&gt;(don't recall the number at this moment)&lt;BR /&gt;&lt;BR /&gt;Consider to install the latest patch bundle.</description>
      <pubDate>Wed, 27 Jun 2007 07:36:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055214#M435582</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-06-27T07:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium CPU Info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055215#M435583</link>
      <description>Yeah - SAM's wrong.  &lt;BR /&gt;&lt;BR /&gt;Try looking for SAM patches.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 27 Jun 2007 07:36:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055215#M435583</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2007-06-27T07:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium CPU Info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055216#M435584</link>
      <description>Have a look at this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www4.itrc.hp.com/service/patch/patchDetail.do?patchid=PHCO_34974" target="_blank"&gt;http://www4.itrc.hp.com/service/patch/patchDetail.do?patchid=PHCO_34974&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;"CPU clock frequency displayed by SAM can differ from what is displayed by the         command /usr/contrib/bin/machinfo (currently&lt;BR /&gt;available on Integrity Servers only)."&lt;BR /&gt;&lt;BR /&gt;Take care of the dependencies.&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Jun 2007 07:47:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055216#M435584</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-06-27T07:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium CPU Info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055217#M435585</link>
      <description>&lt;!--!*#--&gt;I re-wrote the hpmem script to display the correct cpu/memory info on ia64:&lt;BR /&gt;&lt;BR /&gt;# cat /usr/local/bin/hpmem.ia64&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;#&lt;BR /&gt;# Taken from the HP/UniGraphics FAQ&lt;BR /&gt;# You must be ROOT to execute this since it uses adb to&lt;BR /&gt;# examine the running kernel&lt;BR /&gt;#&lt;BR /&gt;GetKernelSymbol()&lt;BR /&gt;{&lt;BR /&gt;echo "$1/D" | \&lt;BR /&gt;adb -o $hpux /dev/kmem | \&lt;BR /&gt;tr "\012" " " | \&lt;BR /&gt;awk -F: '{print $3}' |\&lt;BR /&gt;read kval&lt;BR /&gt;}&lt;BR /&gt;hpux=/stand/vmunix&lt;BR /&gt;rev=$(uname -r | cut -d. -f2)&lt;BR /&gt;/bin/uname -a&lt;BR /&gt;GetKernelSymbol "active_processor_count"&lt;BR /&gt;print CPU Count: $kval&lt;BR /&gt;GetKernelSymbol "itick_per_usec"&lt;BR /&gt;print CPU Speed: $kval MHz&lt;BR /&gt;print CPU HW Support: `getconf HW_CPU_SUPP_BITS`-bit&lt;BR /&gt;print Kernel Support: `getconf KERNEL_BITS`-bit&lt;BR /&gt;GetKernelSymbol "memory_installed_in_machine"&lt;BR /&gt;ver=$(uname -r | cut -d. -f3)&lt;BR /&gt;# if 11iv2 or higher - get memory this way&lt;BR /&gt;if ((ver &amp;gt; 22)); then&lt;BR /&gt;  kernel=$(/usr/sbin/kcpath -x)&lt;BR /&gt;  hexval=$(echo "phys_mem_pages/A" | adb -o  $kernel /dev/kmem|tail +2|awk '{print $2}')&lt;BR /&gt;  REAL_MEM=$(echo ${hexval}=D|adb -o)&lt;BR /&gt;  mb=$(expr ${REAL_MEM} / 256)&lt;BR /&gt;else&lt;BR /&gt;  let mb=kval*4/1024 # convert pages to MB&lt;BR /&gt;fi&lt;BR /&gt;print RAM Size: $mb MB&lt;BR /&gt;GetKernelSymbol "maxuprc"&lt;BR /&gt;print maxuprc: $kval&lt;BR /&gt;GetKernelSymbol "maxvgs"&lt;BR /&gt;print maxvgs: $kval&lt;BR /&gt;GetKernelSymbol "maxfiles"&lt;BR /&gt;print maxfiles: $kval&lt;BR /&gt;GetKernelSymbol "max_thread_proc"&lt;BR /&gt;print max_thread_proc: $kval&lt;BR /&gt;GetKernelSymbol "nproc"&lt;BR /&gt;print nproc: $kval&lt;BR /&gt;GetKernelSymbol "ninode"&lt;BR /&gt;print ninode: $kval&lt;BR /&gt;GetKernelSymbol "vfd_cw"&lt;BR /&gt;print shmmax: $kval&lt;BR /&gt;GetKernelSymbol "shmmni"&lt;BR /&gt;print shmmni: $kval&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;kcusage is a great command to display usage of some of the kernel parameters:&lt;BR /&gt;&lt;BR /&gt;# kcusage&lt;BR /&gt;Tunable                 Usage / Setting&lt;BR /&gt;=============================================&lt;BR /&gt;filecache_max       496451584 / 838860800&lt;BR /&gt;maxdsiz              26263552 / 1073741824&lt;BR /&gt;maxdsiz_64bit         2203648 / 4294967296&lt;BR /&gt;maxfiles_lim               42 / 4096&lt;BR /&gt;maxssiz                540672 / 8388608&lt;BR /&gt;maxssiz_64bit           98304 / 268435456&lt;BR /&gt;maxtsiz              35549184 / 100663296&lt;BR /&gt;maxtsiz_64bit         1212416 / 1073741824&lt;BR /&gt;maxuprc                     3 / 256&lt;BR /&gt;max_thread_proc            26 / 1100&lt;BR /&gt;msgmni                      2 / 512&lt;BR /&gt;msgtql                      0 / 1024&lt;BR /&gt;nflocks                    47 / 4096&lt;BR /&gt;ninode                    837 / 8192&lt;BR /&gt;nkthread                  370 / 8416&lt;BR /&gt;nproc                     168 / 4200&lt;BR /&gt;npty                        0 / 60&lt;BR /&gt;nstrpty                     2 / 60&lt;BR /&gt;nstrtel                     0 / 60&lt;BR /&gt;nswapdev                    1 / 32&lt;BR /&gt;nswapfs                     0 / 32&lt;BR /&gt;semmni                     24 / 2048&lt;BR /&gt;semmns                     58 / 4096&lt;BR /&gt;shmmax               17869008 / 1073741824&lt;BR /&gt;shmmni                      7 / 400&lt;BR /&gt;shmseg                      3 / 300&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 27 Jun 2007 08:11:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055217#M435585</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-06-27T08:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Itanium CPU Info</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055218#M435586</link>
      <description>thanks for all the information, i really appreciate it!</description>
      <pubDate>Wed, 27 Jun 2007 10:22:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/itanium-cpu-info/m-p/5055218#M435586</guid>
      <dc:creator>penelope_1</dc:creator>
      <dc:date>2007-06-27T10:22:29Z</dc:date>
    </item>
  </channel>
</rss>

