Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
00344b00
Commit
00344b00
authored
Mar 26, 2012
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use PVE::ProcFSTools::read_cpuinfo to get numbert of sockets
parent
8c846a7b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
22 deletions
+3
-22
Subscription.pm
PVE/API2/Subscription.pm
+3
-22
No files found.
PVE/API2/Subscription.pm
View file @
00344b00
...
...
@@ -9,6 +9,7 @@ use LWP::UserAgent;
use
JSON
;
use
PVE::
Tools
;
use
PVE::
ProcFSTools
;
use
PVE::
Exception
qw(raise_param_exc)
;
use
PVE::
INotify
;
use
PVE::
Cluster
qw (cfs_read_file
cfs_write_file
);
...
...
@@ -47,29 +48,9 @@ sub get_hwaddress {
return
$hwaddress
;
}
my
$hwsockets
;
sub
get_sockets
{
return
$hwsockets
if
$hwsockets
;
my
$fh
=
IO::
File
->
new
('
/proc/cpuinfo
',
"
r
")
||
die
"
can't read cpu info - $!
\n
";
my
$sockets
=
0
;
while
(
defined
(
my
$line
=
<
$fh
>
))
{
if
(
$line
=~
m/^physical id\s*:\s*(\d+)\s*$/i
)
{
my
$sid
=
$1
+
1
;
$sockets
=
$sid
if
$sid
>
$sockets
;
}
}
close
(
$fh
);
die
"
unable to get socket count
\n
"
if
!
$sockets
;
$hwsockets
=
$sockets
;
return
$hwsockets
;
my
$info
=
PVE::ProcFSTools::
read_cpuinfo
();
return
$info
->
{
sockets
};
}
sub
parse_key
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment