- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Which process make the most use of "sigprocmask" s...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 03:09 AM
03-01-2004 03:09 AM
Which process make the most use of "sigprocmask" system call?
How can I figure out which process(es) make(s) these system calls (thru gpm, glance, other...)
Thanks in advance.
Romaric.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 04:19 AM
03-01-2004 04:19 AM
Re: Which process make the most use of "sigprocmask" system call?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 04:59 AM
03-01-2004 04:59 AM
Re: Which process make the most use of "sigprocmask" system call?
I would use a small adviser syntax file to find out the process that is making a lot of system calls and then see if that is the process.
$cat syntax_file
PROCESS LOOP
PRINT proc_cpu_syscall_util," ", proc_proc_name
$glance -j 1 -iterations 2 -syntax proc -adviser_only > /tmp/advisor.out
$sort /tmp/advisor.out |tail -10
will show you top 10 processes w.r.to system call utilization.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2004 01:00 AM
03-02-2004 01:00 AM
Re: Which process make the most use of "sigprocmask" system call?
Your adviser file produced the following output:
1.4 sh
2.2 ps
2.2 ps
2.2 ps
2.9 ps
7.2 glance
11.4 glance
26.8 ioconfigd
28.8 ioconfigd
14223.1 vxfsd
I'm currently facing a pure System CPU bottleneck (most of the time spent in the kernel: GBL_CPU_SYS_MODE_UTIL > 50%) and vxfsd seems therefore to be the root cause of all these system calls "sigprocmask".
Now that we've found vxfsd is involved in the bottleneck, the tricky part is determining why?
Any idea?
Thanks in advance for your valuable help.
Romaric.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2004 02:39 AM
03-02-2004 02:39 AM