facter 1.6.1 → 1.6.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of facter might be problematic. Click here for more details.

Files changed (88) hide show
  1. data/CHANGELOG +31 -0
  2. data/Rakefile +41 -36
  3. data/conf/redhat/facter.spec +11 -4
  4. data/conf/solaris/pkginfo +1 -1
  5. data/install.rb +286 -286
  6. data/lib/facter.rb +211 -211
  7. data/lib/facter/Cfkey.rb +24 -24
  8. data/lib/facter/application.rb +1 -0
  9. data/lib/facter/architecture.rb +21 -29
  10. data/lib/facter/domain.rb +34 -34
  11. data/lib/facter/facterversion.rb +1 -1
  12. data/lib/facter/fqdn.rb +8 -8
  13. data/lib/facter/hardwareisa.rb +2 -2
  14. data/lib/facter/hardwaremodel.rb +12 -12
  15. data/lib/facter/hostname.rb +14 -14
  16. data/lib/facter/id.rb +3 -3
  17. data/lib/facter/interfaces.rb +13 -13
  18. data/lib/facter/ipaddress.rb +101 -101
  19. data/lib/facter/iphostnumber.rb +12 -12
  20. data/lib/facter/kernel.rb +7 -7
  21. data/lib/facter/kernelmajversion.rb +3 -3
  22. data/lib/facter/kernelrelease.rb +12 -12
  23. data/lib/facter/kernelversion.rb +5 -5
  24. data/lib/facter/lsb.rb +14 -14
  25. data/lib/facter/lsbmajdistrelease.rb +8 -8
  26. data/lib/facter/macaddress.rb +44 -44
  27. data/lib/facter/macosx.rb +21 -21
  28. data/lib/facter/manufacturer.rb +28 -28
  29. data/lib/facter/memory.rb +143 -115
  30. data/lib/facter/netmask.rb +4 -4
  31. data/lib/facter/network.rb +4 -4
  32. data/lib/facter/operatingsystem.rb +73 -69
  33. data/lib/facter/operatingsystemrelease.rb +85 -79
  34. data/lib/facter/osfamily.rb +31 -0
  35. data/lib/facter/path.rb +3 -3
  36. data/lib/facter/physicalprocessorcount.rb +8 -0
  37. data/lib/facter/processor.rb +91 -72
  38. data/lib/facter/ps.rb +3 -3
  39. data/lib/facter/puppetversion.rb +7 -7
  40. data/lib/facter/rubysitedir.rb +5 -5
  41. data/lib/facter/rubyversion.rb +1 -1
  42. data/lib/facter/ssh.rb +16 -16
  43. data/lib/facter/timezone.rb +3 -3
  44. data/lib/facter/uniqueid.rb +2 -2
  45. data/lib/facter/util/collection.rb +96 -96
  46. data/lib/facter/util/confine.rb +30 -30
  47. data/lib/facter/util/fact.rb +95 -95
  48. data/lib/facter/util/ip.rb +173 -173
  49. data/lib/facter/util/loader.rb +88 -88
  50. data/lib/facter/util/macosx.rb +46 -46
  51. data/lib/facter/util/manufacturer.rb +78 -78
  52. data/lib/facter/util/memory.rb +63 -63
  53. data/lib/facter/util/netmask.rb +34 -34
  54. data/lib/facter/util/plist.rb +1 -1
  55. data/lib/facter/util/plist/generator.rb +177 -177
  56. data/lib/facter/util/plist/parser.rb +166 -166
  57. data/lib/facter/util/processor.rb +88 -0
  58. data/lib/facter/util/resolution.rb +154 -154
  59. data/lib/facter/util/uptime.rb +42 -42
  60. data/lib/facter/util/values.rb +9 -9
  61. data/lib/facter/util/virtual.rb +68 -58
  62. data/lib/facter/util/vlans.rb +17 -17
  63. data/lib/facter/virtual.rb +105 -110
  64. data/lib/facter/vlans.rb +6 -6
  65. data/spec/fixtures/cpuinfo/amd64dual +57 -0
  66. data/spec/fixtures/cpuinfo/amd64quad +79 -0
  67. data/spec/fixtures/cpuinfo/amd64solo +23 -0
  68. data/spec/fixtures/cpuinfo/amd64tri +86 -0
  69. data/spec/fixtures/cpuinfo/bbg3-armel +12 -0
  70. data/spec/fixtures/cpuinfo/beaglexm-armel +12 -0
  71. data/spec/fixtures/cpuinfo/panda-armel +17 -0
  72. data/spec/fixtures/cpuinfo/ppc64 +19 -0
  73. data/spec/fixtures/cpuinfo/sparc +10 -0
  74. data/spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info +1216 -0
  75. data/spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info +225 -0
  76. data/spec/integration/facter_spec.rb +18 -18
  77. data/spec/spec_helper.rb +10 -1
  78. data/spec/unit/architecture_spec.rb +54 -0
  79. data/spec/unit/domain_spec.rb +23 -0
  80. data/spec/unit/memory_spec.rb +78 -1
  81. data/spec/unit/physicalprocessorcount_spec.rb +41 -35
  82. data/spec/unit/processor_spec.rb +183 -2
  83. data/spec/unit/util/processor_spec.rb +62 -0
  84. data/spec/unit/util/uptime_spec.rb +4 -4
  85. data/spec/unit/util/virtual_spec.rb +26 -5
  86. data/spec/unit/virtual_spec.rb +47 -2
  87. data/spec/watchr.rb +125 -0
  88. metadata +20 -4
@@ -0,0 +1,57 @@
1
+ processor : 0
2
+ vendor_id : GenuineIntel
3
+ cpu family : 6
4
+ model : 23
5
+ model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
6
+ stepping : 10
7
+ cpu MHz : 689.302
8
+ cache size : 6144 KB
9
+ physical id : 0
10
+ siblings : 2
11
+ core id : 0
12
+ cpu cores : 2
13
+ apicid : 0
14
+ initial apicid : 0
15
+ fdiv_bug : no
16
+ hlt_bug : no
17
+ f00f_bug : no
18
+ coma_bug : no
19
+ fpu : yes
20
+ fpu_exception : yes
21
+ cpuid level : 5
22
+ wp : yes
23
+ flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
24
+ bogomips : 1378.60
25
+ clflush size : 64
26
+ cache_alignment : 64
27
+ address sizes : 36 bits physical, 48 bits virtual
28
+ power management:
29
+
30
+ processor : 1
31
+ vendor_id : GenuineIntel
32
+ cpu family : 6
33
+ model : 23
34
+ model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
35
+ stepping : 10
36
+ cpu MHz : 689.302
37
+ cache size : 6144 KB
38
+ physical id : 0
39
+ siblings : 2
40
+ core id : 1
41
+ cpu cores : 2
42
+ apicid : 1
43
+ initial apicid : 1
44
+ fdiv_bug : no
45
+ hlt_bug : no
46
+ f00f_bug : no
47
+ coma_bug : no
48
+ fpu : yes
49
+ fpu_exception : yes
50
+ cpuid level : 5
51
+ wp : yes
52
+ flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
53
+ bogomips : 1687.45
54
+ clflush size : 64
55
+ cache_alignment : 64
56
+ address sizes : 36 bits physical, 48 bits virtual
57
+ power management:
@@ -0,0 +1,79 @@
1
+ processor : 0
2
+ vendor_id : AuthenticAMD
3
+ cpu family : 16
4
+ model : 4
5
+ model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
6
+ stepping : 2
7
+ cpu MHz : 1386667.908
8
+ cache size : 512 KB
9
+ fpu : yes
10
+ fpu_exception : yes
11
+ cpuid level : 5
12
+ wp : yes
13
+ flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
14
+ bogomips : 4400.17
15
+ TLB size : 1024 4K pages
16
+ clflush size : 64
17
+ cache_alignment : 64
18
+ address sizes : 48 bits physical, 48 bits virtual
19
+ power management: ts ttp tm stc 100mhzsteps hwpstate
20
+
21
+ processor : 1
22
+ vendor_id : AuthenticAMD
23
+ cpu family : 16
24
+ model : 4
25
+ model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
26
+ stepping : 2
27
+ cpu MHz : 1386667.908
28
+ cache size : 512 KB
29
+ fpu : yes
30
+ fpu_exception : yes
31
+ cpuid level : 5
32
+ wp : yes
33
+ flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
34
+ bogomips : 4400.17
35
+ TLB size : 1024 4K pages
36
+ clflush size : 64
37
+ cache_alignment : 64
38
+ address sizes : 48 bits physical, 48 bits virtual
39
+ power management: ts ttp tm stc 100mhzsteps hwpstate
40
+
41
+ processor : 2
42
+ vendor_id : AuthenticAMD
43
+ cpu family : 16
44
+ model : 4
45
+ model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
46
+ stepping : 2
47
+ cpu MHz : 1386667.908
48
+ cache size : 512 KB
49
+ fpu : yes
50
+ fpu_exception : yes
51
+ cpuid level : 5
52
+ wp : yes
53
+ flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
54
+ bogomips : 4400.17
55
+ TLB size : 1024 4K pages
56
+ clflush size : 64
57
+ cache_alignment : 64
58
+ address sizes : 48 bits physical, 48 bits virtual
59
+ power management: ts ttp tm stc 100mhzsteps hwpstate
60
+
61
+ processor : 3
62
+ vendor_id : AuthenticAMD
63
+ cpu family : 16
64
+ model : 4
65
+ model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
66
+ stepping : 2
67
+ cpu MHz : 1386667.908
68
+ cache size : 512 KB
69
+ fpu : yes
70
+ fpu_exception : yes
71
+ cpuid level : 5
72
+ wp : yes
73
+ flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
74
+ bogomips : 4400.17
75
+ TLB size : 1024 4K pages
76
+ clflush size : 64
77
+ cache_alignment : 64
78
+ address sizes : 48 bits physical, 48 bits virtual
79
+ power management: ts ttp tm stc 100mhzsteps hwpstate
@@ -0,0 +1,23 @@
1
+ processor : 0
2
+ vendor_id : GenuineIntel
3
+ cpu family : 6
4
+ model : 23
5
+ model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
6
+ stepping : 10
7
+ cpu MHz : 600.825
8
+ cache size : 6144 KB
9
+ fdiv_bug : no
10
+ hlt_bug : no
11
+ f00f_bug : no
12
+ coma_bug : no
13
+ fpu : yes
14
+ fpu_exception : yes
15
+ cpuid level : 5
16
+ wp : yes
17
+ flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 constant_tsc up pni monitor ssse3
18
+ bogomips : 1201.65
19
+ clflush size : 64
20
+ cache_alignment : 64
21
+ address sizes : 36 bits physical, 48 bits virtual
22
+ power management:
23
+
@@ -0,0 +1,86 @@
1
+ processor : 0
2
+ vendor_id : GenuineIntel
3
+ cpu family : 6
4
+ model : 23
5
+ model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
6
+ stepping : 10
7
+ cpu MHz : 910.177
8
+ cache size : 6144 KB
9
+ physical id : 0
10
+ siblings : 3
11
+ core id : 0
12
+ cpu cores : 3
13
+ apicid : 0
14
+ initial apicid : 0
15
+ fdiv_bug : no
16
+ hlt_bug : no
17
+ f00f_bug : no
18
+ coma_bug : no
19
+ fpu : yes
20
+ fpu_exception : yes
21
+ cpuid level : 5
22
+ wp : yes
23
+ flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
24
+ bogomips : 1820.35
25
+ clflush size : 64
26
+ cache_alignment : 64
27
+ address sizes : 36 bits physical, 48 bits virtual
28
+ power management:
29
+
30
+ processor : 1
31
+ vendor_id : GenuineIntel
32
+ cpu family : 6
33
+ model : 23
34
+ model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
35
+ stepping : 10
36
+ cpu MHz : 910.177
37
+ cache size : 6144 KB
38
+ physical id : 0
39
+ siblings : 3
40
+ core id : 1
41
+ cpu cores : 3
42
+ apicid : 1
43
+ initial apicid : 1
44
+ fdiv_bug : no
45
+ hlt_bug : no
46
+ f00f_bug : no
47
+ coma_bug : no
48
+ fpu : yes
49
+ fpu_exception : yes
50
+ cpuid level : 5
51
+ wp : yes
52
+ flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
53
+ bogomips : 1875.49
54
+ clflush size : 64
55
+ cache_alignment : 64
56
+ address sizes : 36 bits physical, 48 bits virtual
57
+ power management:
58
+
59
+ processor : 2
60
+ vendor_id : GenuineIntel
61
+ cpu family : 6
62
+ model : 23
63
+ model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
64
+ stepping : 10
65
+ cpu MHz : 910.177
66
+ cache size : 6144 KB
67
+ physical id : 0
68
+ siblings : 3
69
+ core id : 2
70
+ cpu cores : 3
71
+ apicid : 2
72
+ initial apicid : 2
73
+ fdiv_bug : no
74
+ hlt_bug : no
75
+ f00f_bug : no
76
+ coma_bug : no
77
+ fpu : yes
78
+ fpu_exception : yes
79
+ cpuid level : 5
80
+ wp : yes
81
+ flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
82
+ bogomips : 1523.26
83
+ clflush size : 64
84
+ cache_alignment : 64
85
+ address sizes : 36 bits physical, 48 bits virtual
86
+ power management:
@@ -0,0 +1,12 @@
1
+ Processor : ARMv7 Processor rev 5 (v7l)
2
+ BogoMIPS : 799.53
3
+ Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3
4
+ CPU implementer : 0x41
5
+ CPU architecture: 7
6
+ CPU variant : 0x2
7
+ CPU part : 0xc08
8
+ CPU revision : 5
9
+
10
+ Hardware : Freescale MX51 Babbage Board
11
+ Revision : 51130
12
+ Serial : 0000000000000000
@@ -0,0 +1,12 @@
1
+ Processor : ARMv7 Processor rev 2 (v7l)
2
+ BogoMIPS : 506.27
3
+ Features : swp half thumb fastmult vfp edsp neon vfpv3
4
+ CPU implementer : 0x41
5
+ CPU architecture: 7
6
+ CPU variant : 0x3
7
+ CPU part : 0xc08
8
+ CPU revision : 2
9
+
10
+ Hardware : OMAP3 Beagle Board
11
+ Revision : 0020
12
+ Serial : 0000000000000000
@@ -0,0 +1,17 @@
1
+ Processor : ARMv7 Processor rev 2 (v7l)
2
+ processor : 0
3
+ BogoMIPS : 2013.45
4
+
5
+ processor : 1
6
+ BogoMIPS : 1963.05
7
+
8
+ Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3
9
+ CPU implementer : 0x41
10
+ CPU architecture: 7
11
+ CPU variant : 0x1
12
+ CPU part : 0xc09
13
+ CPU revision : 2
14
+
15
+ Hardware : OMAP4430 Panda Board
16
+ Revision : 0020
17
+ Serial : 0000000000000000
@@ -0,0 +1,19 @@
1
+ processor : 0
2
+ cpu : PPC970FX, altivec supported
3
+ clock : 2000.000000MHz
4
+ revision : 3.0 (pvr 003c 0300)
5
+
6
+ processor : 1
7
+ cpu : PPC970FX, altivec supported
8
+ clock : 2000.000000MHz
9
+ revision : 3.0 (pvr 003c 0300)
10
+
11
+ timebase : 33333333
12
+ platform : PowerMac
13
+ model : RackMac3,1
14
+ machine : RackMac3,1
15
+ motherboard : RackMac3,1 MacRISC4 Power Macintosh
16
+ detected as : 339 (XServe G5)
17
+ pmac flags : 00000000
18
+ L2 cache : 512K unified
19
+ pmac-generation : NewWorld
@@ -0,0 +1,10 @@
1
+ cpu : TI UltraSparc IIIi (Jalapeno)
2
+ fpu : UltraSparc IIIi integrated FPU
3
+ prom : OBP 4.16.2 2004/10/04 18:22
4
+ type : sun4u
5
+ ncpus probed : 1
6
+ ncpus active : 1
7
+ D$ parity tl1 : 0
8
+ I$ parity tl1 : 0
9
+ Cpu0ClkTck : 000000004fa1be00
10
+ MMU Type : Cheetah+
@@ -0,0 +1,1216 @@
1
+ module: cpu_info instance: 0
2
+ name: cpu_info0 class: misc
3
+ brand UltraSPARC-T2
4
+ chip_id 0
5
+ clock_MHz 1165
6
+ core_id 516
7
+ cpu_fru hc:///component=
8
+ cpu_type sparcv9
9
+ crtime 23312660.5754132
10
+ current_clock_Hz 1165379264
11
+ device_ID 0
12
+ fpu_type sparcv9
13
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
14
+ pg_id 1
15
+ snaptime 23630289.0909192
16
+ state on-line
17
+ state_begin 1315099346
18
+ supported_frequencies_Hz 1165379264
19
+
20
+ module: cpu_info instance: 1
21
+ name: cpu_info1 class: misc
22
+ brand UltraSPARC-T2
23
+ chip_id 0
24
+ clock_MHz 1165
25
+ core_id 516
26
+ cpu_fru hc:///component=
27
+ cpu_type sparcv9
28
+ crtime 23312663.2806834
29
+ current_clock_Hz 1165379264
30
+ device_ID 1
31
+ fpu_type sparcv9
32
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
33
+ pg_id 1
34
+ snaptime 23630289.0927599
35
+ state on-line
36
+ state_begin 1315099348
37
+ supported_frequencies_Hz 1165379264
38
+
39
+ module: cpu_info instance: 2
40
+ name: cpu_info2 class: misc
41
+ brand UltraSPARC-T2
42
+ chip_id 0
43
+ clock_MHz 1165
44
+ core_id 516
45
+ cpu_fru hc:///component=
46
+ cpu_type sparcv9
47
+ crtime 23312663.2828084
48
+ current_clock_Hz 1165379264
49
+ device_ID 2
50
+ fpu_type sparcv9
51
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
52
+ pg_id 1
53
+ snaptime 23630289.0943224
54
+ state on-line
55
+ state_begin 1315099348
56
+ supported_frequencies_Hz 1165379264
57
+
58
+ module: cpu_info instance: 3
59
+ name: cpu_info3 class: misc
60
+ brand UltraSPARC-T2
61
+ chip_id 0
62
+ clock_MHz 1165
63
+ core_id 516
64
+ cpu_fru hc:///component=
65
+ cpu_type sparcv9
66
+ crtime 23312663.284967
67
+ current_clock_Hz 1165379264
68
+ device_ID 3
69
+ fpu_type sparcv9
70
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
71
+ pg_id 1
72
+ snaptime 23630289.0959092
73
+ state on-line
74
+ state_begin 1315099348
75
+ supported_frequencies_Hz 1165379264
76
+
77
+ module: cpu_info instance: 4
78
+ name: cpu_info4 class: misc
79
+ brand UltraSPARC-T2
80
+ chip_id 0
81
+ clock_MHz 1165
82
+ core_id 516
83
+ cpu_fru hc:///component=
84
+ cpu_type sparcv9
85
+ crtime 23312663.2869702
86
+ current_clock_Hz 1165379264
87
+ device_ID 4
88
+ fpu_type sparcv9
89
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
90
+ pg_id 4
91
+ snaptime 23630289.0974779
92
+ state on-line
93
+ state_begin 1315099348
94
+ supported_frequencies_Hz 1165379264
95
+
96
+ module: cpu_info instance: 5
97
+ name: cpu_info5 class: misc
98
+ brand UltraSPARC-T2
99
+ chip_id 0
100
+ clock_MHz 1165
101
+ core_id 516
102
+ cpu_fru hc:///component=
103
+ cpu_type sparcv9
104
+ crtime 23312663.2890495
105
+ current_clock_Hz 1165379264
106
+ device_ID 5
107
+ fpu_type sparcv9
108
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
109
+ pg_id 4
110
+ snaptime 23630289.0990405
111
+ state on-line
112
+ state_begin 1315099348
113
+ supported_frequencies_Hz 1165379264
114
+
115
+ module: cpu_info instance: 6
116
+ name: cpu_info6 class: misc
117
+ brand UltraSPARC-T2
118
+ chip_id 0
119
+ clock_MHz 1165
120
+ core_id 516
121
+ cpu_fru hc:///component=
122
+ cpu_type sparcv9
123
+ crtime 23312663.2911274
124
+ current_clock_Hz 1165379264
125
+ device_ID 6
126
+ fpu_type sparcv9
127
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
128
+ pg_id 4
129
+ snaptime 23630289.1006005
130
+ state on-line
131
+ state_begin 1315099348
132
+ supported_frequencies_Hz 1165379264
133
+
134
+ module: cpu_info instance: 7
135
+ name: cpu_info7 class: misc
136
+ brand UltraSPARC-T2
137
+ chip_id 0
138
+ clock_MHz 1165
139
+ core_id 516
140
+ cpu_fru hc:///component=
141
+ cpu_type sparcv9
142
+ crtime 23312663.2932203
143
+ current_clock_Hz 1165379264
144
+ device_ID 7
145
+ fpu_type sparcv9
146
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
147
+ pg_id 4
148
+ snaptime 23630289.1021675
149
+ state on-line
150
+ state_begin 1315099348
151
+ supported_frequencies_Hz 1165379264
152
+
153
+ module: cpu_info instance: 8
154
+ name: cpu_info8 class: misc
155
+ brand UltraSPARC-T2
156
+ chip_id 0
157
+ clock_MHz 1165
158
+ core_id 524
159
+ cpu_fru hc:///component=
160
+ cpu_type sparcv9
161
+ crtime 23312663.2953277
162
+ current_clock_Hz 1165379264
163
+ device_ID 8
164
+ fpu_type sparcv9
165
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
166
+ pg_id 5
167
+ snaptime 23630289.1037276
168
+ state on-line
169
+ state_begin 1315099348
170
+ supported_frequencies_Hz 1165379264
171
+
172
+ module: cpu_info instance: 9
173
+ name: cpu_info9 class: misc
174
+ brand UltraSPARC-T2
175
+ chip_id 0
176
+ clock_MHz 1165
177
+ core_id 524
178
+ cpu_fru hc:///component=
179
+ cpu_type sparcv9
180
+ crtime 23312663.2973458
181
+ current_clock_Hz 1165379264
182
+ device_ID 9
183
+ fpu_type sparcv9
184
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
185
+ pg_id 5
186
+ snaptime 23630289.1053163
187
+ state on-line
188
+ state_begin 1315099348
189
+ supported_frequencies_Hz 1165379264
190
+
191
+ module: cpu_info instance: 10
192
+ name: cpu_info10 class: misc
193
+ brand UltraSPARC-T2
194
+ chip_id 0
195
+ clock_MHz 1165
196
+ core_id 524
197
+ cpu_fru hc:///component=
198
+ cpu_type sparcv9
199
+ crtime 23312663.2993978
200
+ current_clock_Hz 1165379264
201
+ device_ID 10
202
+ fpu_type sparcv9
203
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
204
+ pg_id 5
205
+ snaptime 23630289.1068773
206
+ state on-line
207
+ state_begin 1315099348
208
+ supported_frequencies_Hz 1165379264
209
+
210
+ module: cpu_info instance: 11
211
+ name: cpu_info11 class: misc
212
+ brand UltraSPARC-T2
213
+ chip_id 0
214
+ clock_MHz 1165
215
+ core_id 524
216
+ cpu_fru hc:///component=
217
+ cpu_type sparcv9
218
+ crtime 23312663.3015554
219
+ current_clock_Hz 1165379264
220
+ device_ID 11
221
+ fpu_type sparcv9
222
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
223
+ pg_id 5
224
+ snaptime 23630289.1085511
225
+ state on-line
226
+ state_begin 1315099348
227
+ supported_frequencies_Hz 1165379264
228
+
229
+ module: cpu_info instance: 12
230
+ name: cpu_info12 class: misc
231
+ brand UltraSPARC-T2
232
+ chip_id 0
233
+ clock_MHz 1165
234
+ core_id 524
235
+ cpu_fru hc:///component=
236
+ cpu_type sparcv9
237
+ crtime 23312663.3035692
238
+ current_clock_Hz 1165379264
239
+ device_ID 12
240
+ fpu_type sparcv9
241
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
242
+ pg_id 7
243
+ snaptime 23630289.1101482
244
+ state on-line
245
+ state_begin 1315099348
246
+ supported_frequencies_Hz 1165379264
247
+
248
+ module: cpu_info instance: 13
249
+ name: cpu_info13 class: misc
250
+ brand UltraSPARC-T2
251
+ chip_id 0
252
+ clock_MHz 1165
253
+ core_id 524
254
+ cpu_fru hc:///component=
255
+ cpu_type sparcv9
256
+ crtime 23312663.3058002
257
+ current_clock_Hz 1165379264
258
+ device_ID 13
259
+ fpu_type sparcv9
260
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
261
+ pg_id 7
262
+ snaptime 23630289.1117123
263
+ state on-line
264
+ state_begin 1315099348
265
+ supported_frequencies_Hz 1165379264
266
+
267
+ module: cpu_info instance: 14
268
+ name: cpu_info14 class: misc
269
+ brand UltraSPARC-T2
270
+ chip_id 0
271
+ clock_MHz 1165
272
+ core_id 524
273
+ cpu_fru hc:///component=
274
+ cpu_type sparcv9
275
+ crtime 23312663.3078818
276
+ current_clock_Hz 1165379264
277
+ device_ID 14
278
+ fpu_type sparcv9
279
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
280
+ pg_id 7
281
+ snaptime 23630289.1132754
282
+ state on-line
283
+ state_begin 1315099348
284
+ supported_frequencies_Hz 1165379264
285
+
286
+ module: cpu_info instance: 15
287
+ name: cpu_info15 class: misc
288
+ brand UltraSPARC-T2
289
+ chip_id 0
290
+ clock_MHz 1165
291
+ core_id 524
292
+ cpu_fru hc:///component=
293
+ cpu_type sparcv9
294
+ crtime 23312663.3099415
295
+ current_clock_Hz 1165379264
296
+ device_ID 15
297
+ fpu_type sparcv9
298
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
299
+ pg_id 7
300
+ snaptime 23630289.1148379
301
+ state on-line
302
+ state_begin 1315099348
303
+ supported_frequencies_Hz 1165379264
304
+
305
+ module: cpu_info instance: 16
306
+ name: cpu_info16 class: misc
307
+ brand UltraSPARC-T2
308
+ chip_id 0
309
+ clock_MHz 1165
310
+ core_id 531
311
+ cpu_fru hc:///component=
312
+ cpu_type sparcv9
313
+ crtime 23312663.3121222
314
+ current_clock_Hz 1165379264
315
+ device_ID 16
316
+ fpu_type sparcv9
317
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
318
+ pg_id 8
319
+ snaptime 23630289.1164032
320
+ state on-line
321
+ state_begin 1315099348
322
+ supported_frequencies_Hz 1165379264
323
+
324
+ module: cpu_info instance: 17
325
+ name: cpu_info17 class: misc
326
+ brand UltraSPARC-T2
327
+ chip_id 0
328
+ clock_MHz 1165
329
+ core_id 531
330
+ cpu_fru hc:///component=
331
+ cpu_type sparcv9
332
+ crtime 23312663.3144076
333
+ current_clock_Hz 1165379264
334
+ device_ID 17
335
+ fpu_type sparcv9
336
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
337
+ pg_id 8
338
+ snaptime 23630289.1179674
339
+ state on-line
340
+ state_begin 1315099348
341
+ supported_frequencies_Hz 1165379264
342
+
343
+ module: cpu_info instance: 18
344
+ name: cpu_info18 class: misc
345
+ brand UltraSPARC-T2
346
+ chip_id 0
347
+ clock_MHz 1165
348
+ core_id 531
349
+ cpu_fru hc:///component=
350
+ cpu_type sparcv9
351
+ crtime 23312663.3164902
352
+ current_clock_Hz 1165379264
353
+ device_ID 18
354
+ fpu_type sparcv9
355
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
356
+ pg_id 8
357
+ snaptime 23630289.119694
358
+ state on-line
359
+ state_begin 1315099348
360
+ supported_frequencies_Hz 1165379264
361
+
362
+ module: cpu_info instance: 19
363
+ name: cpu_info19 class: misc
364
+ brand UltraSPARC-T2
365
+ chip_id 0
366
+ clock_MHz 1165
367
+ core_id 531
368
+ cpu_fru hc:///component=
369
+ cpu_type sparcv9
370
+ crtime 23312663.3186612
371
+ current_clock_Hz 1165379264
372
+ device_ID 19
373
+ fpu_type sparcv9
374
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
375
+ pg_id 8
376
+ snaptime 23630289.1212498
377
+ state on-line
378
+ state_begin 1315099348
379
+ supported_frequencies_Hz 1165379264
380
+
381
+ module: cpu_info instance: 20
382
+ name: cpu_info20 class: misc
383
+ brand UltraSPARC-T2
384
+ chip_id 0
385
+ clock_MHz 1165
386
+ core_id 531
387
+ cpu_fru hc:///component=
388
+ cpu_type sparcv9
389
+ crtime 23312663.3208774
390
+ current_clock_Hz 1165379264
391
+ device_ID 20
392
+ fpu_type sparcv9
393
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
394
+ pg_id 10
395
+ snaptime 23630289.1228643
396
+ state on-line
397
+ state_begin 1315099348
398
+ supported_frequencies_Hz 1165379264
399
+
400
+ module: cpu_info instance: 21
401
+ name: cpu_info21 class: misc
402
+ brand UltraSPARC-T2
403
+ chip_id 0
404
+ clock_MHz 1165
405
+ core_id 531
406
+ cpu_fru hc:///component=
407
+ cpu_type sparcv9
408
+ crtime 23312663.3230514
409
+ current_clock_Hz 1165379264
410
+ device_ID 21
411
+ fpu_type sparcv9
412
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
413
+ pg_id 10
414
+ snaptime 23630289.1244296
415
+ state on-line
416
+ state_begin 1315099348
417
+ supported_frequencies_Hz 1165379264
418
+
419
+ module: cpu_info instance: 22
420
+ name: cpu_info22 class: misc
421
+ brand UltraSPARC-T2
422
+ chip_id 0
423
+ clock_MHz 1165
424
+ core_id 531
425
+ cpu_fru hc:///component=
426
+ cpu_type sparcv9
427
+ crtime 23312663.3252122
428
+ current_clock_Hz 1165379264
429
+ device_ID 22
430
+ fpu_type sparcv9
431
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
432
+ pg_id 10
433
+ snaptime 23630289.1260106
434
+ state on-line
435
+ state_begin 1315099348
436
+ supported_frequencies_Hz 1165379264
437
+
438
+ module: cpu_info instance: 23
439
+ name: cpu_info23 class: misc
440
+ brand UltraSPARC-T2
441
+ chip_id 0
442
+ clock_MHz 1165
443
+ core_id 531
444
+ cpu_fru hc:///component=
445
+ cpu_type sparcv9
446
+ crtime 23312663.3275665
447
+ current_clock_Hz 1165379264
448
+ device_ID 23
449
+ fpu_type sparcv9
450
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
451
+ pg_id 10
452
+ snaptime 23630289.1276002
453
+ state on-line
454
+ state_begin 1315099348
455
+ supported_frequencies_Hz 1165379264
456
+
457
+ module: cpu_info instance: 24
458
+ name: cpu_info24 class: misc
459
+ brand UltraSPARC-T2
460
+ chip_id 0
461
+ clock_MHz 1165
462
+ core_id 538
463
+ cpu_fru hc:///component=
464
+ cpu_type sparcv9
465
+ crtime 23312663.3297949
466
+ current_clock_Hz 1165379264
467
+ device_ID 24
468
+ fpu_type sparcv9
469
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
470
+ pg_id 11
471
+ snaptime 23630289.1291771
472
+ state on-line
473
+ state_begin 1315099348
474
+ supported_frequencies_Hz 1165379264
475
+
476
+ module: cpu_info instance: 25
477
+ name: cpu_info25 class: misc
478
+ brand UltraSPARC-T2
479
+ chip_id 0
480
+ clock_MHz 1165
481
+ core_id 538
482
+ cpu_fru hc:///component=
483
+ cpu_type sparcv9
484
+ crtime 23312663.3320294
485
+ current_clock_Hz 1165379264
486
+ device_ID 25
487
+ fpu_type sparcv9
488
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
489
+ pg_id 11
490
+ snaptime 23630289.1307659
491
+ state on-line
492
+ state_begin 1315099348
493
+ supported_frequencies_Hz 1165379264
494
+
495
+ module: cpu_info instance: 26
496
+ name: cpu_info26 class: misc
497
+ brand UltraSPARC-T2
498
+ chip_id 0
499
+ clock_MHz 1165
500
+ core_id 538
501
+ cpu_fru hc:///component=
502
+ cpu_type sparcv9
503
+ crtime 23312663.3342617
504
+ current_clock_Hz 1165379264
505
+ device_ID 26
506
+ fpu_type sparcv9
507
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
508
+ pg_id 11
509
+ snaptime 23630289.132355
510
+ state on-line
511
+ state_begin 1315099348
512
+ supported_frequencies_Hz 1165379264
513
+
514
+ module: cpu_info instance: 27
515
+ name: cpu_info27 class: misc
516
+ brand UltraSPARC-T2
517
+ chip_id 0
518
+ clock_MHz 1165
519
+ core_id 538
520
+ cpu_fru hc:///component=
521
+ cpu_type sparcv9
522
+ crtime 23312663.3364207
523
+ current_clock_Hz 1165379264
524
+ device_ID 27
525
+ fpu_type sparcv9
526
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
527
+ pg_id 11
528
+ snaptime 23630289.1339703
529
+ state on-line
530
+ state_begin 1315099348
531
+ supported_frequencies_Hz 1165379264
532
+
533
+ module: cpu_info instance: 28
534
+ name: cpu_info28 class: misc
535
+ brand UltraSPARC-T2
536
+ chip_id 0
537
+ clock_MHz 1165
538
+ core_id 538
539
+ cpu_fru hc:///component=
540
+ cpu_type sparcv9
541
+ crtime 23312663.3387068
542
+ current_clock_Hz 1165379264
543
+ device_ID 28
544
+ fpu_type sparcv9
545
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
546
+ pg_id 13
547
+ snaptime 23630289.1355427
548
+ state on-line
549
+ state_begin 1315099348
550
+ supported_frequencies_Hz 1165379264
551
+
552
+ module: cpu_info instance: 29
553
+ name: cpu_info29 class: misc
554
+ brand UltraSPARC-T2
555
+ chip_id 0
556
+ clock_MHz 1165
557
+ core_id 538
558
+ cpu_fru hc:///component=
559
+ cpu_type sparcv9
560
+ crtime 23312663.3410924
561
+ current_clock_Hz 1165379264
562
+ device_ID 29
563
+ fpu_type sparcv9
564
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
565
+ pg_id 13
566
+ snaptime 23630289.1371043
567
+ state on-line
568
+ state_begin 1315099348
569
+ supported_frequencies_Hz 1165379264
570
+
571
+ module: cpu_info instance: 30
572
+ name: cpu_info30 class: misc
573
+ brand UltraSPARC-T2
574
+ chip_id 0
575
+ clock_MHz 1165
576
+ core_id 538
577
+ cpu_fru hc:///component=
578
+ cpu_type sparcv9
579
+ crtime 23312663.343326
580
+ current_clock_Hz 1165379264
581
+ device_ID 30
582
+ fpu_type sparcv9
583
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
584
+ pg_id 13
585
+ snaptime 23630289.1387291
586
+ state on-line
587
+ state_begin 1315099348
588
+ supported_frequencies_Hz 1165379264
589
+
590
+ module: cpu_info instance: 31
591
+ name: cpu_info31 class: misc
592
+ brand UltraSPARC-T2
593
+ chip_id 0
594
+ clock_MHz 1165
595
+ core_id 538
596
+ cpu_fru hc:///component=
597
+ cpu_type sparcv9
598
+ crtime 23312663.3455326
599
+ current_clock_Hz 1165379264
600
+ device_ID 31
601
+ fpu_type sparcv9
602
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
603
+ pg_id 13
604
+ snaptime 23630289.1403642
605
+ state on-line
606
+ state_begin 1315099348
607
+ supported_frequencies_Hz 1165379264
608
+
609
+ module: cpu_info instance: 32
610
+ name: cpu_info32 class: misc
611
+ brand UltraSPARC-T2
612
+ chip_id 0
613
+ clock_MHz 1165
614
+ core_id 545
615
+ cpu_fru hc:///component=
616
+ cpu_type sparcv9
617
+ crtime 23312663.3477709
618
+ current_clock_Hz 1165379264
619
+ device_ID 32
620
+ fpu_type sparcv9
621
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
622
+ pg_id 14
623
+ snaptime 23630289.141927
624
+ state on-line
625
+ state_begin 1315099348
626
+ supported_frequencies_Hz 1165379264
627
+
628
+ module: cpu_info instance: 33
629
+ name: cpu_info33 class: misc
630
+ brand UltraSPARC-T2
631
+ chip_id 0
632
+ clock_MHz 1165
633
+ core_id 545
634
+ cpu_fru hc:///component=
635
+ cpu_type sparcv9
636
+ crtime 23312663.3502553
637
+ current_clock_Hz 1165379264
638
+ device_ID 33
639
+ fpu_type sparcv9
640
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
641
+ pg_id 14
642
+ snaptime 23630289.1435087
643
+ state on-line
644
+ state_begin 1315099348
645
+ supported_frequencies_Hz 1165379264
646
+
647
+ module: cpu_info instance: 34
648
+ name: cpu_info34 class: misc
649
+ brand UltraSPARC-T2
650
+ chip_id 0
651
+ clock_MHz 1165
652
+ core_id 545
653
+ cpu_fru hc:///component=
654
+ cpu_type sparcv9
655
+ crtime 23312663.3525534
656
+ current_clock_Hz 1165379264
657
+ device_ID 34
658
+ fpu_type sparcv9
659
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
660
+ pg_id 14
661
+ snaptime 23630289.1451002
662
+ state on-line
663
+ state_begin 1315099348
664
+ supported_frequencies_Hz 1165379264
665
+
666
+ module: cpu_info instance: 35
667
+ name: cpu_info35 class: misc
668
+ brand UltraSPARC-T2
669
+ chip_id 0
670
+ clock_MHz 1165
671
+ core_id 545
672
+ cpu_fru hc:///component=
673
+ cpu_type sparcv9
674
+ crtime 23312663.3548208
675
+ current_clock_Hz 1165379264
676
+ device_ID 35
677
+ fpu_type sparcv9
678
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
679
+ pg_id 14
680
+ snaptime 23630289.1466879
681
+ state on-line
682
+ state_begin 1315099348
683
+ supported_frequencies_Hz 1165379264
684
+
685
+ module: cpu_info instance: 36
686
+ name: cpu_info36 class: misc
687
+ brand UltraSPARC-T2
688
+ chip_id 0
689
+ clock_MHz 1165
690
+ core_id 545
691
+ cpu_fru hc:///component=
692
+ cpu_type sparcv9
693
+ crtime 23312663.3571762
694
+ current_clock_Hz 1165379264
695
+ device_ID 36
696
+ fpu_type sparcv9
697
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
698
+ pg_id 16
699
+ snaptime 23630289.1482783
700
+ state on-line
701
+ state_begin 1315099348
702
+ supported_frequencies_Hz 1165379264
703
+
704
+ module: cpu_info instance: 37
705
+ name: cpu_info37 class: misc
706
+ brand UltraSPARC-T2
707
+ chip_id 0
708
+ clock_MHz 1165
709
+ core_id 545
710
+ cpu_fru hc:///component=
711
+ cpu_type sparcv9
712
+ crtime 23312663.3594942
713
+ current_clock_Hz 1165379264
714
+ device_ID 37
715
+ fpu_type sparcv9
716
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
717
+ pg_id 16
718
+ snaptime 23630289.1498468
719
+ state on-line
720
+ state_begin 1315099348
721
+ supported_frequencies_Hz 1165379264
722
+
723
+ module: cpu_info instance: 38
724
+ name: cpu_info38 class: misc
725
+ brand UltraSPARC-T2
726
+ chip_id 0
727
+ clock_MHz 1165
728
+ core_id 545
729
+ cpu_fru hc:///component=
730
+ cpu_type sparcv9
731
+ crtime 23312663.3619156
732
+ current_clock_Hz 1165379264
733
+ device_ID 38
734
+ fpu_type sparcv9
735
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
736
+ pg_id 16
737
+ snaptime 23630289.1514097
738
+ state on-line
739
+ state_begin 1315099348
740
+ supported_frequencies_Hz 1165379264
741
+
742
+ module: cpu_info instance: 39
743
+ name: cpu_info39 class: misc
744
+ brand UltraSPARC-T2
745
+ chip_id 0
746
+ clock_MHz 1165
747
+ core_id 545
748
+ cpu_fru hc:///component=
749
+ cpu_type sparcv9
750
+ crtime 23312663.3641867
751
+ current_clock_Hz 1165379264
752
+ device_ID 39
753
+ fpu_type sparcv9
754
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
755
+ pg_id 16
756
+ snaptime 23630289.1529782
757
+ state on-line
758
+ state_begin 1315099348
759
+ supported_frequencies_Hz 1165379264
760
+
761
+ module: cpu_info instance: 40
762
+ name: cpu_info40 class: misc
763
+ brand UltraSPARC-T2
764
+ chip_id 0
765
+ clock_MHz 1165
766
+ core_id 552
767
+ cpu_fru hc:///component=
768
+ cpu_type sparcv9
769
+ crtime 23312663.3664573
770
+ current_clock_Hz 1165379264
771
+ device_ID 40
772
+ fpu_type sparcv9
773
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
774
+ pg_id 17
775
+ snaptime 23630289.1546012
776
+ state on-line
777
+ state_begin 1315099348
778
+ supported_frequencies_Hz 1165379264
779
+
780
+ module: cpu_info instance: 41
781
+ name: cpu_info41 class: misc
782
+ brand UltraSPARC-T2
783
+ chip_id 0
784
+ clock_MHz 1165
785
+ core_id 552
786
+ cpu_fru hc:///component=
787
+ cpu_type sparcv9
788
+ crtime 23312663.3689115
789
+ current_clock_Hz 1165379264
790
+ device_ID 41
791
+ fpu_type sparcv9
792
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
793
+ pg_id 17
794
+ snaptime 23630289.1561584
795
+ state on-line
796
+ state_begin 1315099348
797
+ supported_frequencies_Hz 1165379264
798
+
799
+ module: cpu_info instance: 42
800
+ name: cpu_info42 class: misc
801
+ brand UltraSPARC-T2
802
+ chip_id 0
803
+ clock_MHz 1165
804
+ core_id 552
805
+ cpu_fru hc:///component=
806
+ cpu_type sparcv9
807
+ crtime 23312663.3713041
808
+ current_clock_Hz 1165379264
809
+ device_ID 42
810
+ fpu_type sparcv9
811
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
812
+ pg_id 17
813
+ snaptime 23630289.1577271
814
+ state on-line
815
+ state_begin 1315099348
816
+ supported_frequencies_Hz 1165379264
817
+
818
+ module: cpu_info instance: 43
819
+ name: cpu_info43 class: misc
820
+ brand UltraSPARC-T2
821
+ chip_id 0
822
+ clock_MHz 1165
823
+ core_id 552
824
+ cpu_fru hc:///component=
825
+ cpu_type sparcv9
826
+ crtime 23312663.373675
827
+ current_clock_Hz 1165379264
828
+ device_ID 43
829
+ fpu_type sparcv9
830
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
831
+ pg_id 17
832
+ snaptime 23630289.1592959
833
+ state on-line
834
+ state_begin 1315099348
835
+ supported_frequencies_Hz 1165379264
836
+
837
+ module: cpu_info instance: 44
838
+ name: cpu_info44 class: misc
839
+ brand UltraSPARC-T2
840
+ chip_id 0
841
+ clock_MHz 1165
842
+ core_id 552
843
+ cpu_fru hc:///component=
844
+ cpu_type sparcv9
845
+ crtime 23312663.3760962
846
+ current_clock_Hz 1165379264
847
+ device_ID 44
848
+ fpu_type sparcv9
849
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
850
+ pg_id 19
851
+ snaptime 23630289.1608683
852
+ state on-line
853
+ state_begin 1315099348
854
+ supported_frequencies_Hz 1165379264
855
+
856
+ module: cpu_info instance: 45
857
+ name: cpu_info45 class: misc
858
+ brand UltraSPARC-T2
859
+ chip_id 0
860
+ clock_MHz 1165
861
+ core_id 552
862
+ cpu_fru hc:///component=
863
+ cpu_type sparcv9
864
+ crtime 23312663.3784792
865
+ current_clock_Hz 1165379264
866
+ device_ID 45
867
+ fpu_type sparcv9
868
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
869
+ pg_id 19
870
+ snaptime 23630289.1624495
871
+ state on-line
872
+ state_begin 1315099349
873
+ supported_frequencies_Hz 1165379264
874
+
875
+ module: cpu_info instance: 46
876
+ name: cpu_info46 class: misc
877
+ brand UltraSPARC-T2
878
+ chip_id 0
879
+ clock_MHz 1165
880
+ core_id 552
881
+ cpu_fru hc:///component=
882
+ cpu_type sparcv9
883
+ crtime 23312663.3809418
884
+ current_clock_Hz 1165379264
885
+ device_ID 46
886
+ fpu_type sparcv9
887
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
888
+ pg_id 19
889
+ snaptime 23630289.1640098
890
+ state on-line
891
+ state_begin 1315099349
892
+ supported_frequencies_Hz 1165379264
893
+
894
+ module: cpu_info instance: 47
895
+ name: cpu_info47 class: misc
896
+ brand UltraSPARC-T2
897
+ chip_id 0
898
+ clock_MHz 1165
899
+ core_id 552
900
+ cpu_fru hc:///component=
901
+ cpu_type sparcv9
902
+ crtime 23312663.3833624
903
+ current_clock_Hz 1165379264
904
+ device_ID 47
905
+ fpu_type sparcv9
906
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
907
+ pg_id 19
908
+ snaptime 23630289.1655756
909
+ state on-line
910
+ state_begin 1315099349
911
+ supported_frequencies_Hz 1165379264
912
+
913
+ module: cpu_info instance: 48
914
+ name: cpu_info48 class: misc
915
+ brand UltraSPARC-T2
916
+ chip_id 0
917
+ clock_MHz 1165
918
+ core_id 559
919
+ cpu_fru hc:///component=
920
+ cpu_type sparcv9
921
+ crtime 23312663.3857846
922
+ current_clock_Hz 1165379264
923
+ device_ID 48
924
+ fpu_type sparcv9
925
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
926
+ pg_id 20
927
+ snaptime 23630289.1671529
928
+ state on-line
929
+ state_begin 1315099349
930
+ supported_frequencies_Hz 1165379264
931
+
932
+ module: cpu_info instance: 49
933
+ name: cpu_info49 class: misc
934
+ brand UltraSPARC-T2
935
+ chip_id 0
936
+ clock_MHz 1165
937
+ core_id 559
938
+ cpu_fru hc:///component=
939
+ cpu_type sparcv9
940
+ crtime 23312663.3883379
941
+ current_clock_Hz 1165379264
942
+ device_ID 49
943
+ fpu_type sparcv9
944
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
945
+ pg_id 20
946
+ snaptime 23630289.1687334
947
+ state on-line
948
+ state_begin 1315099349
949
+ supported_frequencies_Hz 1165379264
950
+
951
+ module: cpu_info instance: 50
952
+ name: cpu_info50 class: misc
953
+ brand UltraSPARC-T2
954
+ chip_id 0
955
+ clock_MHz 1165
956
+ core_id 559
957
+ cpu_fru hc:///component=
958
+ cpu_type sparcv9
959
+ crtime 23312663.3908908
960
+ current_clock_Hz 1165379264
961
+ device_ID 50
962
+ fpu_type sparcv9
963
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
964
+ pg_id 20
965
+ snaptime 23630289.1703504
966
+ state on-line
967
+ state_begin 1315099349
968
+ supported_frequencies_Hz 1165379264
969
+
970
+ module: cpu_info instance: 51
971
+ name: cpu_info51 class: misc
972
+ brand UltraSPARC-T2
973
+ chip_id 0
974
+ clock_MHz 1165
975
+ core_id 559
976
+ cpu_fru hc:///component=
977
+ cpu_type sparcv9
978
+ crtime 23312663.3933023
979
+ current_clock_Hz 1165379264
980
+ device_ID 51
981
+ fpu_type sparcv9
982
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
983
+ pg_id 20
984
+ snaptime 23630289.1719139
985
+ state on-line
986
+ state_begin 1315099349
987
+ supported_frequencies_Hz 1165379264
988
+
989
+ module: cpu_info instance: 52
990
+ name: cpu_info52 class: misc
991
+ brand UltraSPARC-T2
992
+ chip_id 0
993
+ clock_MHz 1165
994
+ core_id 559
995
+ cpu_fru hc:///component=
996
+ cpu_type sparcv9
997
+ crtime 23312663.3957577
998
+ current_clock_Hz 1165379264
999
+ device_ID 52
1000
+ fpu_type sparcv9
1001
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1002
+ pg_id 22
1003
+ snaptime 23630289.1734706
1004
+ state on-line
1005
+ state_begin 1315099349
1006
+ supported_frequencies_Hz 1165379264
1007
+
1008
+ module: cpu_info instance: 53
1009
+ name: cpu_info53 class: misc
1010
+ brand UltraSPARC-T2
1011
+ chip_id 0
1012
+ clock_MHz 1165
1013
+ core_id 559
1014
+ cpu_fru hc:///component=
1015
+ cpu_type sparcv9
1016
+ crtime 23312663.3982132
1017
+ current_clock_Hz 1165379264
1018
+ device_ID 53
1019
+ fpu_type sparcv9
1020
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1021
+ pg_id 22
1022
+ snaptime 23630289.1750473
1023
+ state on-line
1024
+ state_begin 1315099349
1025
+ supported_frequencies_Hz 1165379264
1026
+
1027
+ module: cpu_info instance: 54
1028
+ name: cpu_info54 class: misc
1029
+ brand UltraSPARC-T2
1030
+ chip_id 0
1031
+ clock_MHz 1165
1032
+ core_id 559
1033
+ cpu_fru hc:///component=
1034
+ cpu_type sparcv9
1035
+ crtime 23312663.4008234
1036
+ current_clock_Hz 1165379264
1037
+ device_ID 54
1038
+ fpu_type sparcv9
1039
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1040
+ pg_id 22
1041
+ snaptime 23630289.1767452
1042
+ state on-line
1043
+ state_begin 1315099349
1044
+ supported_frequencies_Hz 1165379264
1045
+
1046
+ module: cpu_info instance: 55
1047
+ name: cpu_info55 class: misc
1048
+ brand UltraSPARC-T2
1049
+ chip_id 0
1050
+ clock_MHz 1165
1051
+ core_id 559
1052
+ cpu_fru hc:///component=
1053
+ cpu_type sparcv9
1054
+ crtime 23312663.4032588
1055
+ current_clock_Hz 1165379264
1056
+ device_ID 55
1057
+ fpu_type sparcv9
1058
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1059
+ pg_id 22
1060
+ snaptime 23630289.1783072
1061
+ state on-line
1062
+ state_begin 1315099349
1063
+ supported_frequencies_Hz 1165379264
1064
+
1065
+ module: cpu_info instance: 56
1066
+ name: cpu_info56 class: misc
1067
+ brand UltraSPARC-T2
1068
+ chip_id 0
1069
+ clock_MHz 1165
1070
+ core_id 566
1071
+ cpu_fru hc:///component=
1072
+ cpu_type sparcv9
1073
+ crtime 23312663.4057018
1074
+ current_clock_Hz 1165379264
1075
+ device_ID 56
1076
+ fpu_type sparcv9
1077
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1078
+ pg_id 23
1079
+ snaptime 23630289.1798837
1080
+ state on-line
1081
+ state_begin 1315099349
1082
+ supported_frequencies_Hz 1165379264
1083
+
1084
+ module: cpu_info instance: 57
1085
+ name: cpu_info57 class: misc
1086
+ brand UltraSPARC-T2
1087
+ chip_id 0
1088
+ clock_MHz 1165
1089
+ core_id 566
1090
+ cpu_fru hc:///component=
1091
+ cpu_type sparcv9
1092
+ crtime 23312663.4083202
1093
+ current_clock_Hz 1165379264
1094
+ device_ID 57
1095
+ fpu_type sparcv9
1096
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1097
+ pg_id 23
1098
+ snaptime 23630289.1814739
1099
+ state on-line
1100
+ state_begin 1315099349
1101
+ supported_frequencies_Hz 1165379264
1102
+
1103
+ module: cpu_info instance: 58
1104
+ name: cpu_info58 class: misc
1105
+ brand UltraSPARC-T2
1106
+ chip_id 0
1107
+ clock_MHz 1165
1108
+ core_id 566
1109
+ cpu_fru hc:///component=
1110
+ cpu_type sparcv9
1111
+ crtime 23312663.4108088
1112
+ current_clock_Hz 1165379264
1113
+ device_ID 58
1114
+ fpu_type sparcv9
1115
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1116
+ pg_id 23
1117
+ snaptime 23630289.1830437
1118
+ state on-line
1119
+ state_begin 1315099349
1120
+ supported_frequencies_Hz 1165379264
1121
+
1122
+ module: cpu_info instance: 59
1123
+ name: cpu_info59 class: misc
1124
+ brand UltraSPARC-T2
1125
+ chip_id 0
1126
+ clock_MHz 1165
1127
+ core_id 566
1128
+ cpu_fru hc:///component=
1129
+ cpu_type sparcv9
1130
+ crtime 23312663.4133075
1131
+ current_clock_Hz 1165379264
1132
+ device_ID 59
1133
+ fpu_type sparcv9
1134
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1135
+ pg_id 23
1136
+ snaptime 23630289.1846328
1137
+ state on-line
1138
+ state_begin 1315099349
1139
+ supported_frequencies_Hz 1165379264
1140
+
1141
+ module: cpu_info instance: 60
1142
+ name: cpu_info60 class: misc
1143
+ brand UltraSPARC-T2
1144
+ chip_id 0
1145
+ clock_MHz 1165
1146
+ core_id 566
1147
+ cpu_fru hc:///component=
1148
+ cpu_type sparcv9
1149
+ crtime 23312663.4157926
1150
+ current_clock_Hz 1165379264
1151
+ device_ID 60
1152
+ fpu_type sparcv9
1153
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1154
+ pg_id 25
1155
+ snaptime 23630289.1862341
1156
+ state on-line
1157
+ state_begin 1315099349
1158
+ supported_frequencies_Hz 1165379264
1159
+
1160
+ module: cpu_info instance: 61
1161
+ name: cpu_info61 class: misc
1162
+ brand UltraSPARC-T2
1163
+ chip_id 0
1164
+ clock_MHz 1165
1165
+ core_id 566
1166
+ cpu_fru hc:///component=
1167
+ cpu_type sparcv9
1168
+ crtime 23312663.4217917
1169
+ current_clock_Hz 1165379264
1170
+ device_ID 61
1171
+ fpu_type sparcv9
1172
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1173
+ pg_id 25
1174
+ snaptime 23630289.1878047
1175
+ state on-line
1176
+ state_begin 1315099349
1177
+ supported_frequencies_Hz 1165379264
1178
+
1179
+ module: cpu_info instance: 62
1180
+ name: cpu_info62 class: misc
1181
+ brand UltraSPARC-T2
1182
+ chip_id 0
1183
+ clock_MHz 1165
1184
+ core_id 566
1185
+ cpu_fru hc:///component=
1186
+ cpu_type sparcv9
1187
+ crtime 23312663.4243642
1188
+ current_clock_Hz 1165379264
1189
+ device_ID 62
1190
+ fpu_type sparcv9
1191
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1192
+ pg_id 25
1193
+ snaptime 23630289.1894041
1194
+ state on-line
1195
+ state_begin 1315099349
1196
+ supported_frequencies_Hz 1165379264
1197
+
1198
+ module: cpu_info instance: 63
1199
+ name: cpu_info63 class: misc
1200
+ brand UltraSPARC-T2
1201
+ chip_id 0
1202
+ clock_MHz 1165
1203
+ core_id 566
1204
+ cpu_fru hc:///component=
1205
+ cpu_type sparcv9
1206
+ crtime 23312663.4268942
1207
+ current_clock_Hz 1165379264
1208
+ device_ID 63
1209
+ fpu_type sparcv9
1210
+ implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
1211
+ pg_id 25
1212
+ snaptime 23630289.1910039
1213
+ state on-line
1214
+ state_begin 1315099349
1215
+ supported_frequencies_Hz 1165379264
1216
+