From bmr at redhat.com Wed Oct 1 08:39:19 2014 From: bmr at redhat.com (Bryn M. Reeves) Date: Wed, 1 Oct 2014 09:39:19 +0100 Subject: [sos-devel] [ANNOUNCE] sos-3.2 released In-Reply-To: <20140930174838.GC13549@localhost.localdomain> References: <20140930174838.GC13549@localhost.localdomain> Message-ID: <20141001083918.GB8710@localhost.localdomain> On Tue, Sep 30, 2014 at 06:48:38PM +0100, Bryn M. Reeves wrote: > The sos team is pleased to announce the beta release of sos-3.2. This ^^^^ Correction: *final* :-) > release includes a large number of enhancements and fixes, including: > > * Profiles for plugin selection > * Improved log size limiting > * File archiving enhancements and robustness improvements > * Global plugin options: > * `--verify`, `--log-size`, `--all-logs` > * Better plugin descriptions > * Improved journalctl log capture > * PEP8 compliant code base > * oVirt support improvements > * New plugins: hpasm, ctdb, dbus, oVirt engine hosted, MongoDB, > ActiveMQ, OpenShift 2.0, MegaCLI, FCoE, python, Ubuntu, NUMA, Team > network driver, kpatch > > Tarball and Zip archives of the release are available from GitHub: > > https://github.com/sosreport/sos/releases/tag/3.2 > > Packages for supported distributions will be made available over the > next couple of weeks. Please see the project pages and mailing list > for further information. > > Regards, > Bryn. > > _______________________________________________ > sos-devel mailing list > sos-devel at redhat.com > https://www.redhat.com/mailman/listinfo/sos-devel From notifications at travis-ci.org Thu Oct 9 16:20:27 2014 From: notifications at travis-ci.org (Travis CI) Date: Thu, 09 Oct 2014 16:20:27 +0000 Subject: [sos-devel] Passed: sosreport/sos#578 (bmr-openstack_neutron-pkgcheck - d220acc) In-Reply-To: Message-ID: <5436b5cb5dfe8_24026cc821d8@3f7fb98b-c1d5-4e26-b30d-b74fd0c7faf7.mail> Build Update for sosreport/sos ------------------------------------- Build: #578 Status: Passed Duration: 3 minutes and 54 seconds Commit: d220acc (bmr-openstack_neutron-pkgcheck) Author: Bryn M. Reeves Message: [openstack_neutron] fix legacy component detection test Currently the Neutron plugin will assume it's running on a Neutron (rather than a legacy Quantum) installation if: - '/etc/neutron' exists AND the user specifies quantum=True Otherwise it's assumed to be a Quantum install. This is clearly broken; the sense of the 'openstack_neutron.quantum' part of the test should be inverted. Fixes #420. Signed-off-by: Bryn M. Reeves View the changeset: https://github.com/sosreport/sos/commit/d220accd156f View the full build log and details: https://travis-ci.org/sosreport/sos/builds/37517029 -- You can configure recipients for build notifications in your .travis.yml file. See http://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From aruna at linux.vnet.ibm.com Fri Oct 10 05:58:14 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Fri, 10 Oct 2014 11:28:14 +0530 Subject: [sos-devel] [RFC PATCH] sosreport: Check for rpm database corruption during initialization Message-ID: <20141010055402.25807.45857.stgit@aruna-ThinkPad-T420> sosreport runs an rpm query to get the package list. If rpmdb is corrupted sosreport hangs for ever hence check for rpmdb consistency before running the rpm query. Signed-off-by: Aruna Balakrishnaiah --- When rpmdb is corrupted rpm commands hangs forever, yum check will result in: yum check error: rpmdb: BDB0113 Thread/process 43828/70366497037824 failed: BDB1507 Thread died in Berkeley DB library error: db5 error(-30973) from dbenv->failchk: BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery error: cannot open Packages index using db5 - (-30973) error: cannot open Packages database in /var/lib/rpm CRITICAL:yum.main: Error: rpmdb open failed So look for 'rpmdb open failed', include this check in redhat policy as yum command is specific to redhat. Bryn, Please suggest if there is a better way to do it. Regards, Aruna sos/policies/redhat.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py index 2219246..3007ce1 100644 --- a/sos/policies/redhat.py +++ b/sos/policies/redhat.py @@ -21,6 +21,8 @@ import sys from sos.plugins import RedHatPlugin from sos.policies import LinuxPolicy, PackageManager from sos import _sos as _ +from sos.utilities import is_executable, shell_out +from distutils.log import error sys.path.insert(0, "/usr/share/rhn/") try: @@ -42,6 +44,16 @@ class RedHatPolicy(LinuxPolicy): super(RedHatPolicy, self).__init__() self.report_name = "" self.ticket_number = "" + """ + Check for rpm database corruption + """ + if is_executable("yum"): + yum_info = shell_out("yum check").splitlines() + for info in yum_info: + if 'rpmdb open failed' in info: + error("rpmdb corruption, rebuild rpmdb: rpmdb --rebuildb") + sys.exit(1) + self.package_manager = PackageManager( 'rpm -qa --queryformat "%{NAME}|%{VERSION}\\n"') self.valid_subclasses = [RedHatPlugin] From aruna at linux.vnet.ibm.com Fri Oct 10 06:00:24 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Fri, 10 Oct 2014 11:30:24 +0530 Subject: [sos-devel] [PATCH v2] sosreport: Capture IBM Power RAID storage adapter configuration information In-Reply-To: <20140919055201.13489.67666.stgit@aruna-ThinkPad-T420> References: <20140919055201.13489.67666.stgit@aruna-ThinkPad-T420> Message-ID: <543775F8.7030802@linux.vnet.ibm.com> Bryn, Could you please let me know the status of the patch? Regards, Aruna On Friday 19 September 2014 11:23 AM, Aruna Balakrishnaiah wrote: > Capture information which helps in better understanding of > IBM Power RAID storage adapter configuration. Since iprconfig > is specific to power adding the relevant commands in powerpc plugin. > > Signed-off-by: Aruna Balakrishnaiah > --- > Since lsscsi lists all types of enclosures and we are interested just in > IBM Power RAID enclosures have relyed on iprconfig results. /sys or /proc > does not give enough information to determine if its a RAID enclosure or not. > > Changes from v1: > Move this to a separate plugin > Use call_ext_prog > Use iprconfig results to parse > > sos/plugins/powerpc_iprconfig.py | 116 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 116 insertions(+) > create mode 100644 sos/plugins/powerpc_iprconfig.py > > diff --git a/sos/plugins/powerpc_iprconfig.py b/sos/plugins/powerpc_iprconfig.py > new file mode 100644 > index 0000000..7d64bc5 > --- /dev/null > +++ b/sos/plugins/powerpc_iprconfig.py > @@ -0,0 +1,116 @@ > +# This program is free software; you can redistribute it and/or modify > +# it under the terms of the GNU General Public License as published by > +# the Free Software Foundation; either version 2 of the License, or > +# (at your option) any later version. > + > +# This program is distributed in the hope that it will be useful, > +# but WITHOUT ANY WARRANTY; without even the implied warranty of > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > +# GNU General Public License for more details. > + > +# You should have received a copy of the GNU General Public License > +# along with this program; if not, write to the Free Software > +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. > + > +# This plugin enables collection of logs for Power systems > + > +import os > +import re > +from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin > + > +class iprconfig(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): > + """IBM Power RAID storage adapter configuration information > + """ > + > + plugin_name = 'powerpc_iprconfig' > + > + def check_enabled(self): > + return (self.policy().get_arch() == "ppc64") > + > + def setup(self): > + try: > + with open('/proc/cpuinfo', 'r') as fp: > + contents = fp.read() > + ispSeries = "pSeries" in contents > + isPowerNV = "PowerNV" in contents > + except: > + ispSeries = False > + isPowerNV = False > + > + if ispSeries or isPowerNV: > + self.add_cmd_outputs([ > + "iprconfig -c show-config", > + "iprconfig -c show-alt-config", > + "iprconfig -c show-arrays", > + "iprconfig -c show-jbod-disks", > + "iprconfig -c show-ioas", > + ]) > + > + iprconfig_result = self.call_ext_prog("iprconfig -c show-ioas") > + if not (iprconfig_result['status'] == 0): > + return > + > + iprconfig_output = iprconfig_result['output'] > + devices = [] > + if iprconfig_output: > + for line in iprconfig_output.splitlines(): > + temp = line.split(' ') > + p = re.compile('sg') > + # temp[0] holds the device name > + if p.search(temp[0]): > + devices.append(temp[0]) > + > + for device in devices: > + self.add_cmd_output("iprconfig -c show-details %s" % (device,)) > + > + # Look for IBM Power RAID enclosures (iprconfig lists them) > + ipr_result = self.call_ext_prog("iprconfig -c show-config") > + if not (ipr_result['status'] == 0): > + return > + > +# iprconfig -c show-config > +# Name PCI/SCSI Location Description Status > +# ------ ------------------------- ------------------------- ----------------- > +# 0005:60:00.0/0: PCI-E SAS RAID Adapter Operational > +# sda 0005:60:00.0/0:0:0:0 Physical Disk Active > +# sdb 0005:60:00.0/0:1:0:0 Physical Disk Active > +# sdc 0005:60:00.0/0:2:0:0 Physical Disk Active > +# sdd 0005:60:00.0/0:3:0:0 Physical Disk Active > +# sde 0005:60:00.0/0:4:0:0 Physical Disk Active > +# sdf 0005:60:00.0/0:5:0:0 Physical Disk Active > +# 0005:60:00.0/0:8:0:0 Enclosure Active > +# 0005:60:00.0/0:8:1:0 Enclosure Active > + > + ipr_output = ipr_result['output'] > + if ipr_output: > + for line in ipr_output.splitlines(): > + if "Enclosure" in line: > + temp = re.split('\s+', line) > + # temp[1] holds the PCI/SCSI location > + pci, scsi = temp[1].split('/') > + altconfig_result = self.call_ext_prog("iprconfig -c " > + "show-alt-config") > + if not (altconfig_result['status'] == 0): > + return > + > +# iprconfig -c show-alt-config > +# Name Resource Path/Address Vendor Product ID Status > +# ------ -------------------------- -------- ---------------- ----------------- > +# sg9 0: IBM 57C7001SISIOA Operational > +# sg0 0:0:0:0 IBM MBF2300RC Active > +# sg1 0:1:0:0 IBM MBF2300RC Active > +# sg2 0:2:0:0 IBM HUC106030CSS600 Active > +# sg3 0:3:0:0 IBM HUC106030CSS600 Active > +# sg4 0:4:0:0 IBM HUC106030CSS600 Active > +# sg5 0:5:0:0 IBM HUC106030CSS600 Active > +# sg7 0:8:0:0 IBM VSBPD6E4A 3GSAS Active > +# sg8 0:8:1:0 IBM VSBPD6E4B 3GSAS Active > + > + altconfig_output = altconfig_result['output'] > + if altconfig_output: > + for line in altconfig_output.splitlines(): > + if scsi in line: > + temp = line.split(' ') > + # temp[0] holds device name > + self.add_cmd_output("iprconfig -c " > + "query-ses-mode %s" % (temp[0],)) > > _______________________________________________ > sos-devel mailing list > sos-devel at redhat.com > https://www.redhat.com/mailman/listinfo/sos-devel > From aruna at linux.vnet.ibm.com Fri Oct 10 06:05:35 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Fri, 10 Oct 2014 11:35:35 +0530 Subject: [sos-devel] [RFC PATCH] sosreport: Check for rpm database corruption during initialization In-Reply-To: <20141010055402.25807.45857.stgit@aruna-ThinkPad-T420> References: <20141010055402.25807.45857.stgit@aruna-ThinkPad-T420> Message-ID: <5437772F.4080804@linux.vnet.ibm.com> Bryn, I am attaching the strace-log for the issue https://github.com/sosreport/sos/issues/407 here. This patch addresses the same. Regards, Aruna On Friday 10 October 2014 11:28 AM, Aruna Balakrishnaiah wrote: > sosreport runs an rpm query to get the package list. If rpmdb is corrupted > sosreport hangs for ever hence check for rpmdb consistency before running > the rpm query. > > Signed-off-by: Aruna Balakrishnaiah > --- > When rpmdb is corrupted rpm commands hangs forever, > yum check will result in: > > yum check > error: rpmdb: BDB0113 Thread/process 43828/70366497037824 failed: BDB1507 Thread died in Berkeley DB library > error: db5 error(-30973) from dbenv->failchk: BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery > error: cannot open Packages index using db5 - (-30973) > error: cannot open Packages database in /var/lib/rpm > CRITICAL:yum.main: > > Error: rpmdb open failed > > So look for 'rpmdb open failed', include this check in redhat policy as > yum command is specific to redhat. > > Bryn, > Please suggest if there is a better way to do it. > > Regards, > Aruna > > sos/policies/redhat.py | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py > index 2219246..3007ce1 100644 > --- a/sos/policies/redhat.py > +++ b/sos/policies/redhat.py > @@ -21,6 +21,8 @@ import sys > from sos.plugins import RedHatPlugin > from sos.policies import LinuxPolicy, PackageManager > from sos import _sos as _ > +from sos.utilities import is_executable, shell_out > +from distutils.log import error > > sys.path.insert(0, "/usr/share/rhn/") > try: > @@ -42,6 +44,16 @@ class RedHatPolicy(LinuxPolicy): > super(RedHatPolicy, self).__init__() > self.report_name = "" > self.ticket_number = "" > + """ > + Check for rpm database corruption > + """ > + if is_executable("yum"): > + yum_info = shell_out("yum check").splitlines() > + for info in yum_info: > + if 'rpmdb open failed' in info: > + error("rpmdb corruption, rebuild rpmdb: rpmdb --rebuildb") > + sys.exit(1) > + > self.package_manager = PackageManager( > 'rpm -qa --queryformat "%{NAME}|%{VERSION}\\n"') > self.valid_subclasses = [RedHatPlugin] > > _______________________________________________ > sos-devel mailing list > sos-devel at redhat.com > https://www.redhat.com/mailman/listinfo/sos-devel > -------------- next part -------------- execve("/usr/sbin/sosreport", ["sosreport"], [/* 24 vars */]) = 0 brk(0) = 0x100114b0000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=42118, ...}) = 0 mmap(NULL, 42118, PROT_READ, MAP_PRIVATE, 3, 0) = 0x3fff9a5b0000 close(3) = 0 open("/lib64/libpython2.7.so.1.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0%\200\10"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0555, st_size=2453616, ...}) = 0 mmap(NULL, 2603720, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3fff9a330000 mmap(0x3fff9a540000, 393216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x200000) = 0x3fff9a540000 mmap(0x3fff9a5a0000, 47816, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5a0000 close(3) = 0 open("/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\3\1\20"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=181024, ...}) = 0 mmap(NULL, 219456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3fff9a2f0000 mmap(0x3fff9a310000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x3fff9a310000 close(3) = 0 open("/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=74304, ...}) = 0 mmap(NULL, 132200, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3fff9a2c0000 mmap(0x3fff9a2d0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0) = 0x3fff9a2d0000 close(3) = 0 open("/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=74016, ...}) = 0 mmap(NULL, 132152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3fff9a290000 mmap(0x3fff9a2a0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0) = 0x3fff9a2a0000 close(3) = 0 open("/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\r\2\20"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=910720, ...}) = 0 mmap(NULL, 907096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3fff9a1b0000 mmap(0x3fff9a270000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb0000) = 0x3fff9a270000 close(3) = 0 open("/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\36\26\20"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=2224912, ...}) = 0 mmap(NULL, 2033600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3fff99fb0000 mmap(0x3fff9a180000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x3fff9a180000 mmap(0x3fff9a1a0000, 1984, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3fff9a1a0000 close(3) = 0 mprotect(0x3fff9a180000, 65536, PROT_READ) = 0 mprotect(0x3fff9a270000, 65536, PROT_READ) = 0 mprotect(0x3fff9a2a0000, 65536, PROT_READ) = 0 mprotect(0x3fff9a2d0000, 65536, PROT_READ) = 0 mprotect(0x3fff9a310000, 65536, PROT_READ) = 0 mprotect(0x3fff9a540000, 65536, PROT_READ) = 0 mprotect(0x10010000, 65536, PROT_READ) = 0 mprotect(0x3fff9a610000, 65536, PROT_READ) = 0 munmap(0x3fff9a5b0000, 42118) = 0 set_tid_address(0x3fff9a625ed0) = 36282 set_robust_list(0x3fff9a625ee0, 24) = 0 rt_sigaction(SIGRTMIN, {0x3fff9a3200c0, [], SA_SIGINFO}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {0x3fff9a3200b0, [], SA_RESTART|SA_SIGINFO}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0 brk(0) = 0x100114b0000 brk(0x100114e0000) = 0x100114e0000 brk(0) = 0x100114e0000 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff99f60000 fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 11), ...}) = 0 fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 11), ...}) = 0 fstat(1, {st_mode=S_IFREG|0644, st_size=4598, ...}) = 0 fstat(2, {st_mode=S_IFREG|0644, st_size=4654, ...}) = 0 readlink("/usr/bin/python", "python2", 4096) = 7 readlink("/usr/bin/python2", "python2.7", 4096) = 9 readlink("/usr/bin/python2.7", 0x3fffc6555d80, 4096) = -1 EINVAL (Invalid argument) stat("/usr/bin/Modules/Setup", 0x3fffc6553be0) = -1 ENOENT (No such file or directory) stat("/usr/bin/lib64/python2.7/os.py", 0x3fffc6553b60) = -1 ENOENT (No such file or directory) stat("/usr/bin/lib64/python2.7/os.pyc", 0x3fffc6553b60) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/os.py", {st_mode=S_IFREG|0644, st_size=25769, ...}) = 0 stat("/usr/bin/pybuilddir.txt", 0x3fffc6553be0) = -1 ENOENT (No such file or directory) stat("/usr/bin/lib64/python2.7/lib-dynload", 0x3fffc6553be0) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 brk(0) = 0x100114e0000 brk(0x10011510000) = 0x10011510000 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff99f10000 rt_sigaction(SIGPIPE, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGXFSZ, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGKILL, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [], 0}, 8) = 0 rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGCONT, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGSTOP, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGTSTP, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGTTIN, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGTTOU, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGXFSZ, NULL, {SIG_IGN, [], 0}, 8) = 0 rt_sigaction(SIGVTALRM, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGPROF, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGWINCH, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGIO, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGPWR, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGSYS, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_2, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_3, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_4, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_5, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_6, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_7, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_8, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_9, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_10, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_11, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_12, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_13, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_14, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_15, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_16, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_17, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_18, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_19, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_20, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_21, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_22, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_23, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_24, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_25, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_26, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_27, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_28, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_29, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_30, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_31, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGRT_32, NULL, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGINT, {0x3fff9a592e68, [], 0}, {SIG_DFL, [], 0}, 8) = 0 stat("/usr/lib64/python27.zip", 0x3fffc6552328) = -1 ENOENT (No such file or directory) stat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=36864, ...}) = 0 stat("/usr/lib64/python27.zip", 0x3fffc6555360) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0 stat("/usr/lib64/python2.7/", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0 stat("/usr/lib64/python2.7/site", 0x3fffc6555660) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sitemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=20078, ...}) = 0 open("/usr/lib64/python2.7/site.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=19568, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sp\1\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=19568, ...}) = 0 read(4, "\1\0\0\0R\0\0\0\0t\5\0\0\0isdirR\10\0\0\0R\24\0\0\0t\t\0"..., 12288) = 12288 read(4, "\0\0\0C\0\0\0sg\0\0\0y\20\0d\1\0d\2\0l\0\0}\0\0WnP\0\4"..., 4096) = 3184 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/os", 0x3fffc6554c50) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/os.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/os.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=25769, ...}) = 0 open("/usr/lib64/python2.7/os.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=25557, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0s\372\6\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=25557, ...}) = 0 read(5, "ive.\n\n N(\t\0\0\0R\t\0\0\0t\5\0\0\0splitt"..., 20480) = 20480 read(5, "\"\0\0\0t\24\0\0\0builtin_module_namest\6\0"..., 4096) = 981 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 5 fstat(5, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "MemTotal: 132809344 kB\nMem"..., 1024) = 1024 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 brk(0) = 0x10011510000 brk(0x10011540000) = 0x10011540000 stat("/usr/lib64/python2.7/posixpath", 0x3fffc6554240) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/posixpath.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/posixpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/posixpath.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=13591, ...}) = 0 open("/usr/lib64/python2.7/posixpath.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=11297, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0&\0\0\0@\0\0\0s\31\2\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=11297, ...}) = 0 read(6, "ISLNKt\7\0\0\0st_mode(\2\0\0\0R3\0\0\0t\2\0\0\0"..., 4096) = 4096 read(6, "\0\0R6\0\0\0(\7\0\0\0R3\0\0\0Rn\0\0\0R8\0\0\0t\1\0\0\0"..., 4096) = 3105 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/stat", 0x3fffc6553830) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/stat.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=1842, ...}) = 0 open("/usr/lib64/python2.7/stat.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=2751, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0s{\1\0\0d\0"..., 4096) = 2751 fstat(7, {st_mode=S_IFREG|0644, st_size=2751, ...}) = 0 read(7, "", 4096) = 0 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff99ed0000 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(6) = 0 stat("/usr/lib64/python2.7/genericpath", 0x3fffc6553830) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/genericpath.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/genericpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/genericpath.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=3015, ...}) = 0 open("/usr/lib64/python2.7/genericpath.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=3263, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\221\0\0\0d\0"..., 4096) = 3263 fstat(7, {st_mode=S_IFREG|0644, st_size=3263, ...}) = 0 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(6) = 0 stat("/usr/lib64/python2.7/warnings", 0x3fffc6553830) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/warnings.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/warningsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/warnings.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=14044, ...}) = 0 open("/usr/lib64/python2.7/warnings.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=13150, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0sS\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=13150, ...}) = 0 read(7, "yss\7\0\0\0defaults\6\0\0\0modules\4\0\0\0on"..., 8192) = 8192 read(7, "\0\0(\0\0\0\0s \0\0\0/usr/lib64/python2.7"..., 4096) = 862 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/linecache", 0x3fffc6552e20) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/linecache.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/linecachemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/linecache.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=3964, ...}) = 0 open("/usr/lib64/python2.7/linecache.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=3211, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3211 fstat(8, {st_mode=S_IFREG|0644, st_size=3211, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(7) = 0 stat("/usr/lib64/python2.7/types", 0x3fffc6552e20) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/types.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/types.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=2040, ...}) = 0 open("/usr/lib64/python2.7/types.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=2506, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s/\2\0\0d\0"..., 4096) = 2506 fstat(8, {st_mode=S_IFREG|0644, st_size=2506, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(7) = 0 close(6) = 0 close(5) = 0 stat("/usr/lib64/python2.7/UserDict", 0x3fffc6554240) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/UserDict.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/UserDictmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/UserDict.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=5811, ...}) = 0 open("/usr/lib64/python2.7/UserDict.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=8820, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=8820, ...}) = 0 read(6, "/lib64/python2.7/UserDict.pyR*\0\0"..., 4096) = 4096 read(6, "\6\0\0\0R\2\0\0\0R\v\0\0\0R8\0\0\0R\6\0\0\0R\35\0\0\0R\f\0"..., 4096) = 628 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/_abcoll", 0x3fffc6553830) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_abcoll.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_abcollmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_abcoll.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=17865, ...}) = 0 open("/usr/lib64/python2.7/_abcoll.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=24982, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0sI\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=24982, ...}) = 0 read(7, "\1\0\0\0R(\0\0\0(\2\0\0\0R\34\0\0\0t\1\0\0\0x(\0\0\0\0(\0"..., 20480) = 20480 read(7, "\4\17\5\t\4\t\6\t\5\f\10\t\6(\0\0\0\0(\0\0\0\0(\0\0\0\0(\0\0\0"..., 4096) = 406 read(7, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff99e80000 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/abc", 0x3fffc6552e20) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/abc.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/abcmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/abc.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=7145, ...}) = 0 open("/usr/lib64/python2.7/abc.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=6143, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s}\0\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=6143, ...}) = 0 read(8, "abc.pyt\10\0\0\0registeri\0\0\0s\20\0\0\0\0\2\30\1"..., 4096) = 2047 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/_weakrefset", 0x3fffc6552410) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_weakrefset.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_weakrefsetmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_weakrefset.py", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=5607, ...}) = 0 open("/usr/lib64/python2.7/_weakrefset.pyc", O_RDONLY) = 9 fstat(9, {st_mode=S_IFREG|0644, st_size=9477, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(9, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 4096 fstat(9, {st_mode=S_IFREG|0644, st_size=9477, ...}) = 0 read(9, "sr/lib64/python2.7/_weakrefset.p"..., 4096) = 4096 read(9, "\0}\1\0t\0\0|\1\0\210\0\0j\1\0\203\2\0V\1q\3\0d\0\0S(\1\0\0"..., 4096) = 1285 read(9, "", 4096) = 0 close(9) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(8) = 0 close(7) = 0 close(6) = 0 close(5) = 0 stat("/usr/lib64/python2.7/copy_reg", 0x3fffc6554240) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/copy_reg.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/copy_regmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/copy_reg.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0 open("/usr/lib64/python2.7/copy_reg.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=5113, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\326\0\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=5113, ...}) = 0 read(6, "e for key %s(\5\0\0\0t\3\0\0\0intt\n\0\0\0Va"..., 4096) = 1017 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib64/python2.7/traceback", 0x3fffc6554c50) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/traceback.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=11255, ...}) = 0 open("/usr/lib64/python2.7/traceback.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=11623, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0sB\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=11623, ...}) = 0 read(5, "None.\n R!\0\0\0i\0\0\0\0i\1\0\0\0N(\20\0\0\0R"..., 4096) = 4096 read(5, "\1\0\203\5\0\1Wd\1\0d\1\0\4}\2\0\4}\3\0}\4\0Xd\1\0S(\2\0"..., 4096) = 3431 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(4) = 0 stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0 stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0 stat("/usr/lib64/python2.7/sysconfig", 0x3fffc6554a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sysconfig.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sysconfigmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sysconfig.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=22405, ...}) = 0 open("/usr/lib64/python2.7/sysconfig.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=17645, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\266z\10Tc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\v\5\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=17645, ...}) = 0 read(5, "posixR\f\0\0\0(\2\0\0\0s\5\0\0\0posixs\2\0\0\0nt"..., 12288) = 12288 read(5, "\1\f\1\f\1c\0\0\0\0\0\0\0\0\3\0\0\0C\0\0\0sd\0\0\0d\1\0t\0"..., 4096) = 1261 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/usr/bin", {st_mode=S_IFDIR|0555, st_size=36864, ...}) = 0 lstat("/usr/bin/python", {st_mode=S_IFLNK|0777, st_size=7, ...}) = 0 readlink("/usr/bin/python", "python2", 4096) = 7 lstat("/usr/bin/python2", {st_mode=S_IFLNK|0777, st_size=9, ...}) = 0 readlink("/usr/bin/python2", "python2.7", 4096) = 9 lstat("/usr/bin/python2.7", {st_mode=S_IFREG|0755, st_size=68696, ...}) = 0 stat("/usr/bin/Modules/Setup.dist", 0x3fffc65552a0) = -1 ENOENT (No such file or directory) stat("/usr/bin/Modules/Setup.local", 0x3fffc65552a0) = -1 ENOENT (No such file or directory) close(4) = 0 stat("/usr/bin/Modules/Setup.dist", 0x3fffc6555cb0) = -1 ENOENT (No such file or directory) stat("/usr/bin/Modules/Setup.local", 0x3fffc6555cb0) = -1 ENOENT (No such file or directory) geteuid() = 0 getuid() = 0 getegid() = 0 getgid() = 0 stat("/usr/lib64/python2.7/re", 0x3fffc6554000) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/re.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/re.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=12959, ...}) = 0 open("/usr/lib64/python2.7/re.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=13094, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s'\2\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=13094, ...}) = 0 read(5, " Match a regular expression pat"..., 8192) = 8192 read(5, "\0\0\1\6\1\t\1\25\1\6\1\3\1\t\1\6\1\4\1\f\1\f\1\4\1\30\1\17\1\t\1\30"..., 4096) = 806 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/sre_compile", 0x3fffc65535f0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_compile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_compilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_compile.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=16454, ...}) = 0 open("/usr/lib64/python2.7/sre_compile.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=11088, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s~\1\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=11088, ...}) = 0 read(6, "\24\1\16\1\27\2\16\1\f\0\n\1\16\1\16\1\24\1\24\1\f\1\21\2\21\1\f\1\n\1\16\1"..., 4096) = 4096 read(6, "\6\0k\10\0r\330\1|\v\0d\2\0\31r\330\1|\v\0d\2\0\31d\1\0\31\\\2\0"..., 4096) = 2896 read(6, "", 4096) = 0 brk(0) = 0x10011540000 brk(0x10011570000) = 0x10011570000 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/sre_parse", 0x3fffc6552be0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_parse.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_parsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_parse.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=27505, ...}) = 0 open("/usr/lib64/python2.7/sre_parse.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=19488, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\332\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=19488, ...}) = 0 read(7, "sr/lib64/python2.7/sre_parse.pyt"..., 12288) = 12288 read(7, "\3\f\2\f\1\f\1\t\1\t\2\22\2\f\1\f\1\f\1\6\1\f\2\n\1\r\2\33\3\23\2c"..., 4096) = 3104 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/sre_constants", 0x3fffc65521d0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_constants.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_constantsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sre_constants.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=7113, ...}) = 0 open("/usr/lib64/python2.7/sre_constants.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0 \0\0\0@\0\0\0s\371\4\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0 read(8, "efine SRE_INFO_CHARSET %d\nt\4\0\0\0d"..., 4096) = 2021 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(7) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff99e30000 close(6) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib64/python2.7/_sysconfigdata", 0x3fffc6553e20) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_sysconfigdata.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_sysconfigdatamodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_sysconfigdata.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=17690, ...}) = 0 open("/usr/lib64/python2.7/_sysconfigdata.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=20883, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\210\16\0\0i\22"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=20883, ...}) = 0 read(5, "dlt\10\0\0\0AST_ASDLs\23\0\0\0Python/Pytho"..., 16384) = 16384 read(5, "\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7"..., 4096) = 403 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(4) = 0 brk(0) = 0x10011570000 brk(0x100115a0000) = 0x100115a0000 brk(0) = 0x100115a0000 brk(0) = 0x100115a0000 brk(0x10011590000) = 0x10011590000 brk(0) = 0x10011590000 stat("/root/.local/lib/python2.7/site-packages", 0x3fffc6555cb0) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 openat(AT_FDCWD, "/usr/lib64/python2.7/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4 getdents(4, /* 164 entries */, 32768) = 6256 getdents(4, /* 0 entries */, 32768) = 0 close(4) = 0 open("/usr/lib64/python2.7/site-packages/PIL.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=4, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=4, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "PIL\n", 8192) = 4 read(4, "", 4096) = 0 stat("/usr/lib64/python2.7/site-packages/PIL", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 read(4, "", 8192) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 open("/usr/lib64/python2.7/site-packages/pygtk.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "gtk-2.0\n", 8192) = 8 read(4, "", 4096) = 0 stat("/usr/lib64/python2.7/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 read(4, "", 8192) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 openat(AT_FDCWD, "/usr/lib/python2.7/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4 getdents(4, /* 251 entries */, 32768) = 10008 getdents(4, /* 0 entries */, 32768) = 0 close(4) = 0 open("/usr/lib/python2.7/site-packages/Paste-1.7.5.1-py2.7-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=304, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=304, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "import sys,types,os; p = os.path"..., 8192) = 304 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/site-packages/paste/__init__.py", 0x3fffc6555220) = -1 ENOENT (No such file or directory) read(4, "", 8192) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 open("/usr/lib/python2.7/site-packages/PasteDeploy-1.5.0-py2.7-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=304, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=304, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "import sys,types,os; p = os.path"..., 8192) = 304 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/site-packages/paste/__init__.py", 0x3fffc6555220) = -1 ENOENT (No such file or directory) read(4, "", 8192) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 open("/usr/lib/python2.7/site-packages/dogpile.cache-0.5.0-py2.7-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=310, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=310, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "import sys,types,os; p = os.path"..., 8192) = 310 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/site-packages/dogpile/__init__.py", 0x3fffc6555220) = -1 ENOENT (No such file or directory) read(4, "", 8192) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 open("/usr/lib/python2.7/site-packages/dogpile.core-0.4.1-py2.7-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=310, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=310, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "import sys,types,os; p = os.path"..., 8192) = 310 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/site-packages/dogpile/__init__.py", 0x3fffc6555220) = -1 ENOENT (No such file or directory) read(4, "", 8192) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 open("/usr/lib/python2.7/site-packages/repoze.lru-0.4-py2.7-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=307, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=307, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "import sys,types,os; p = os.path"..., 8192) = 307 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/site-packages/repoze/__init__.py", 0x3fffc6555220) = -1 ENOENT (No such file or directory) read(4, "", 8192) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 open("/usr/lib/python2.7/site-packages/setuptools.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=34, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=34, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "./setuptools-0.6c11-py2.7.egg-in"..., 8192) = 34 read(4, "", 4096) = 0 read(4, "", 8192) = 0 stat("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/site-python", 0x3fffc6555cb0) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/sitecustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/plat-linux2/sitecustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-tk", 0x3fffc6551558) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0 stat("/usr/lib64/python2.7/lib-tk", 0x3fffc6554590) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-old", 0x3fffc6551558) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0 stat("/usr/lib64/python2.7/lib-old", 0x3fffc6554590) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/lib-dynload/sitecustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib64/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/sitecustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/PIL", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/PIL/sitecustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/gtk-2.0/sitecustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sitecustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 open("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 fstat(4, {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 lseek(4, 0, SEEK_SET) = 0 read(4, "Metadata-Version: 1.0\nName: setu"..., 122) = 122 read(4, " xxx\nDescription: xxx\n", 4096) = 22 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 stat("/usr/lib64/python2.7/usercustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/usercustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/usercustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/usercustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL/usercustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0/usercustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/usercustomize", 0x3fffc6554890) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(3) = 0 open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=109659472, ...}) = 0 mmap(NULL, 109659472, PROT_READ, MAP_PRIVATE, 3, 0) = 0x3fff93590000 close(3) = 0 stat("/usr/lib64/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib64/python2.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0 stat("/usr/lib64/python2.7/encodings/__init__", 0x3fffc6555860) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/__init__.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0 open("/usr/lib64/python2.7/encodings/__init__.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=4378, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=4378, ...}) = 0 read(4, "\1\26\1\24\1\24\1$\1$\0016\0016\1\3\1\3\1\26\1\"\0015\1\22\3\n\4\3\1\20"..., 4096) = 282 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib64/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib64/python2.7/encodings/codecs", 0x3fffc6554e50) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/codecs", 0x3fffc6554e50) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/codecs.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=35266, ...}) = 0 open("/usr/lib64/python2.7/codecs.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=36602, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\30\0\0\0@\0\0\0s7\3\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=36602, ...}) = 0 read(5, "\0\0t\0\0\202\1\0d\1\0S(\2\0\0\0s\372\2\0\0 Decodes t"..., 28672) = 28672 read(5, "\0\0/usr/lib64/python2.7/codecs.py"..., 4096) = 3834 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(4) = 0 stat("/usr/lib64/python2.7/encodings/encodings", 0x3fffc6554e50) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/encodings.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/encodingsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/encodings.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/encodings.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/encodings/aliases", 0x3fffc6554e40) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/aliases.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/aliasesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/aliases.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=14848, ...}) = 0 open("/usr/lib64/python2.7/encodings/aliases.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=8770, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0su\10\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=8770, ...}) = 0 read(5, "ibm860t\6\0\0\0ibm860t\5\0\0\0cp861t\3\0\0\0"..., 4096) = 4096 read(5, "\7\3\7\3\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7\1\7\3\7\1"..., 4096) = 578 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(4) = 0 stat("/usr/lib64/python2.7/encodings/__builtin__", 0x3fffc6554e50) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/__builtin__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/__builtin__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/__builtin__.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/__builtin__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(3) = 0 stat("/usr/lib64/python2.7/encodings/utf_8", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/utf_8.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/utf_8module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/utf_8.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0 open("/usr/lib64/python2.7/encodings/utf_8.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\230\0\0\0d\0"..., 4096) = 1966 fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(3) = 0 ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0 ioctl(1, TCGETS, 0x3fffc6556be0) = -1 ENOTTY (Inappropriate ioctl for device) ioctl(2, TCGETS, 0x3fffc6556be0) = -1 ENOTTY (Inappropriate ioctl for device) readlink("/usr/sbin/sosreport", 0x3fffc6554018, 4096) = -1 EINVAL (Invalid argument) lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/usr/sbin", {st_mode=S_IFDIR|0555, st_size=20480, ...}) = 0 lstat("/usr/sbin/sosreport", {st_mode=S_IFREG|0755, st_size=889, ...}) = 0 stat("/usr/sbin/sosreport", {st_mode=S_IFREG|0755, st_size=889, ...}) = 0 open("/usr/sbin/sosreport", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0755, st_size=889, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 fstat(3, {st_mode=S_IFREG|0755, st_size=889, ...}) = 0 lseek(3, 0, SEEK_SET) = 0 read(3, "#!/usr/bin/python\n# This program"..., 867) = 867 read(3, ")\n\n# vim:ts=4 et sw=4\n", 4096) = 22 close(3) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/sosreport", {st_mode=S_IFREG|0755, st_size=889, ...}) = 0 open("/usr/sbin/sosreport", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0755, st_size=889, ...}) = 0 ioctl(3, TCGETS, 0x3fffc6556ed0) = -1 ENOTTY (Inappropriate ioctl for device) fstat(3, {st_mode=S_IFREG|0755, st_size=889, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 lseek(3, 0, SEEK_CUR) = 0 read(3, "#!/usr/bin/python\n# This program"..., 4096) = 889 lseek(3, 889, SEEK_SET) = 889 brk(0) = 0x10011590000 brk(0x100115c0000) = 0x100115c0000 read(3, "", 4096) = 0 brk(0) = 0x100115c0000 brk(0) = 0x100115c0000 brk(0x100115b0000) = 0x100115b0000 brk(0) = 0x100115b0000 close(3) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin", {st_mode=S_IFDIR|0555, st_size=20480, ...}) = 0 stat("/usr/sbin", {st_mode=S_IFDIR|0555, st_size=20480, ...}) = 0 stat("/usr/sbin/sos", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/sbin/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/sos", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/sos", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/sos", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/sos", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL/sos", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0/sos", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/__init__.py", {st_mode=S_IFREG|0644, st_size=1126, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/__init__", 0x3fffc65552b0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/__init__.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=1126, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/__init__.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=658, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sG\0\0\0d\0"..., 4096) = 658 fstat(4, {st_mode=S_IFREG|0644, st_size=658, ...}) = 0 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/gettext", 0x3fffc65548a0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/gettext.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/gettext.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/gettext.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/gettext", 0x3fffc65548a0) = -1 ENOENT (No such file or directory) open("/usr/sbin/gettext.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/gettext.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/gettext.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/gettext", 0x3fffc65548a0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/gettext.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/gettext.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=19937, ...}) = 0 open("/usr/lib64/python2.7/gettext.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=15552, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\f\0\0\0@\0\0\0s\264\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=15552, ...}) = 0 read(5, "\16\0d\f\0\204\0\0Z\17\0e\20\0d\16\0d\r\0\204\2\0Z\21\0RS(\17\0\0"..., 8192) = 8192 read(5, "\217\37\0}\v\0t\t\0j\f\0|\t\0|\3\0|\v\0\203\1\0\203\2\0}\n\0Wd"..., 4096) = 3264 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/locale", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/locale.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/locale.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/locale", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/locale.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/locale.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=89428, ...}) = 0 open("/usr/lib64/python2.7/locale.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=49941, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s\315 \0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=49941, ...}) = 0 read(6, "\2d\352\0026d\353\2d\354\0026d\353\2d\355\0026d\210\0d\356\0026d\266\1d\357\2"..., 45056) = 45056 read(6, "\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7"..., 4096) = 789 read(6, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff93540000 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/operator", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/operator.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/operator.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/operator", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/operator.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/operator.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/operator", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/operator.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/operator.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/operator", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/operator.so", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0555, st_size=74880, ...}) = 0 futex(0x3fff9a2e0450, FUTEX_WAKE_PRIVATE, 2147483647) = 0 open("/usr/lib64/python2.7/lib-dynload/operator.so", O_RDONLY|O_CLOEXEC) = 7 read(7, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\27H"..., 832) = 832 fstat(7, {st_mode=S_IFREG|0555, st_size=74880, ...}) = 0 mmap(NULL, 140248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3fff93510000 mmap(0x3fff93520000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0) = 0x3fff93520000 close(7) = 0 mprotect(0x3fff93520000, 65536, PROT_READ) = 0 close(6) = 0 stat("/usr/sbin/functools", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/functools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/functools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/functools", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/functools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/functools.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=4478, ...}) = 0 open("/usr/lib64/python2.7/functools.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=6089, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\\\0\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=6089, ...}) = 0 read(7, "(\3\0\0\0s,\0\0\0Convert a cmp= functio"..., 4096) = 1993 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/_functools", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_functools", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_functools", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_functools", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0555, st_size=69248, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\5`"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0555, st_size=69248, ...}) = 0 mmap(NULL, 133408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff934e0000 mmap(0x3fff934f0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff934f0000 close(8) = 0 mprotect(0x3fff934f0000, 65536, PROT_READ) = 0 close(7) = 0 close(6) = 0 stat("/usr/sbin/_locale", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_locale.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_locale", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_locale.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_locale", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_locale.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_locale", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_localemodule.so", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0555, st_size=69232, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_localemodule.so", O_RDONLY|O_CLOEXEC) = 7 read(7, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\5\20"..., 832) = 832 fstat(7, {st_mode=S_IFREG|0555, st_size=69232, ...}) = 0 mmap(NULL, 133792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3fff934b0000 mmap(0x3fff934c0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0) = 0x3fff934c0000 close(7) = 0 mprotect(0x3fff934c0000, 65536, PROT_READ) = 0 close(6) = 0 brk(0) = 0x100115b0000 brk(0x100115e0000) = 0x100115e0000 brk(0) = 0x100115e0000 brk(0) = 0x100115e0000 brk(0x100115d0000) = 0x100115d0000 brk(0) = 0x100115d0000 brk(0) = 0x100115d0000 brk(0x10011600000) = 0x10011600000 close(5) = 0 stat("/usr/sbin/copy", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/copy.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/copymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/copy.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/copy.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/copy", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/copy.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/copymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/copy.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=11519, ...}) = 0 open("/usr/lib64/python2.7/copy.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=12194, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0s\233\3\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=12194, ...}) = 0 read(6, "\0|\0\0j\1\0\203\0\0St\0\0|\0\0d\2\0\203\2\0rF\0|\0\0j\2\0"..., 4096) = 4096 read(6, "\315\1n\0\0|\10\0d\0\0k\t\0r\22\2x6\0|\10\0D]+\0}\16\0|\2"..., 4096) = 4002 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/weakref", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/weakref.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/weakrefmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/weakref.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/weakref.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/weakref", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/weakref.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/weakrefmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/weakref.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=10693, ...}) = 0 open("/usr/lib64/python2.7/weakref.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=14048, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\f\0\0\0@\0\0\0s\350\0\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=14048, ...}) = 0 read(7, "elds the weak references to the "..., 8192) = 8192 read(7, "l cause the garbage collector to"..., 4096) = 1760 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(6) = 0 stat("/usr/sbin/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/org", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(5) = 0 stat("/usr/sbin/struct", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/struct.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/struct", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/struct.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=82, ...}) = 0 open("/usr/lib64/python2.7/struct.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=239, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\2\0\0\0@\0\0\0s.\0\0\0d\0"..., 4096) = 239 fstat(6, {st_mode=S_IFREG|0644, st_size=239, ...}) = 0 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/_struct", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/_struct.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_struct.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_struct", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_struct.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_struct.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_struct", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_struct.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_struct.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_struct", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_struct.so", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0555, st_size=75072, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_struct.so", O_RDONLY|O_CLOEXEC) = 7 read(7, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\27\200"..., 832) = 832 fstat(7, {st_mode=S_IFREG|0555, st_size=75072, ...}) = 0 mmap(NULL, 140168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3fff93480000 mmap(0x3fff93490000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0) = 0x3fff93490000 close(7) = 0 mprotect(0x3fff93490000, 65536, PROT_READ) = 0 close(6) = 0 close(5) = 0 close(4) = 0 close(3) = 0 stat("/usr/lib/python2.7/site-packages/sos/sosreport", 0x3fffc6555360) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sosreport.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sosreportmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sosreport.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=40428, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/sosreport.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=39170, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sC\2\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=39170, ...}) = 0 read(4, "\0d\3\0d\0\0\203\3\0|\0\0_\10\0|\0\0j\10\0j\6\0d\0\0d\4\0d"..., 32768) = 32768 read(4, "\3\1\f\1\6\2\v\3\17\2\34\1\r\2c\1\0\0\0\1\0\0\0\3\0\0\0C\0\0\0s"..., 4096) = 2306 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/sys", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/traceback", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/os", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/os.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/os.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/logging", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/logging.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/loggingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/logging.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/logging.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/logging", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/sbin/logging.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/loggingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/logging.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/logging.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/logging/__init__.py", {st_mode=S_IFREG|0644, st_size=60276, ...}) = 0 stat("/usr/lib64/python2.7/logging/__init__", 0x3fffc65548a0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/__init__.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=60276, ...}) = 0 open("/usr/lib64/python2.7/logging/__init__.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=57476, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0%\0\0\0@\0\0\0sc\5\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=57476, ...}) = 0 read(5, "Error(\2\0\0\0R1\0\0\0t\2\0\0\0rv(\0\0\0\0(\0\0\0\0"..., 53248) = 53248 read(5, "\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\n\3\t\20\t\r\t\27\6\1"..., 4096) = 132 read(5, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff93430000 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/logging/sys", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging/os", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/os.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/os.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging/time", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/time.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/time", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/time.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/time", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/time.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/time", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/time.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/time", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/timemodule.so", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0555, st_size=73056, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/timemodule.so", O_RDONLY|O_CLOEXEC) = 6 read(6, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\23`"..., 832) = 832 fstat(6, {st_mode=S_IFREG|0555, st_size=73056, ...}) = 0 mmap(NULL, 138208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3fff93400000 mmap(0x3fff93410000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0) = 0x3fff93410000 close(6) = 0 mprotect(0x3fff93410000, 65536, PROT_READ) = 0 time(NULL) = 1412818045 open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0 fstat(6, {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\6\0\0\0\0"..., 4096) = 3559 lseek(6, -2272, SEEK_CUR) = 1287 read(6, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0\7\0\0\0\0"..., 4096) = 2272 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3559, ...}) = 0 close(5) = 0 stat("/usr/lib64/python2.7/logging/cStringIO", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/cStringIO", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/cStringIO", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/cStringIO", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/cStringIO", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/cStringIO.so", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0555, st_size=72064, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/cStringIO.so", O_RDONLY|O_CLOEXEC) = 6 read(6, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\17 "..., 832) = 832 fstat(6, {st_mode=S_IFREG|0555, st_size=72064, ...}) = 0 mmap(NULL, 136400, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3fff933d0000 mmap(0x3fff933e0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0) = 0x3fff933e0000 close(6) = 0 mprotect(0x3fff933e0000, 65536, PROT_READ) = 0 close(5) = 0 stat("/usr/lib64/python2.7/logging/traceback", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging/warnings", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/warnings.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/warningsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/warnings.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/warnings.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging/weakref", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/weakref.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/weakrefmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/weakref.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/weakref.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging/codecs", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging/thread", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/thread.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/threadmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/thread.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/thread.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/logging/threading", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/threading.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/threading.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/threading", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/threading.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/threading.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/threading", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/threading.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=47324, ...}) = 0 open("/usr/lib64/python2.7/threading.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=42677, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s \3\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=42677, ...}) = 0 read(6, "\21\1\r\1\4\1\3\1i\1\0\0\0c\2\0\0\0\4\0\0\0\4\0\0\0C\0\0\0s\226"..., 36864) = 36864 read(6, "\0\0\0\0\1\20\1\6\1\22\1\n\1\35\1(\4\0\0\0R,\0\0\0R-\0\0\0R "..., 4096) = 1717 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/collections", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/collections.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/collections.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/collections", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/collections.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/collections.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=25883, ...}) = 0 open("/usr/lib64/python2.7/collections.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=24570, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\202\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=24570, ...}) = 0 read(7, "q\7\0Wd\1\0S(\2\0\0\0s2\0\0\0od.itervalues "..., 20480) = 20474 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/_collections", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_collections", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_collections", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_collections", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0555, st_size=72744, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\20`"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0555, st_size=72744, ...}) = 0 mmap(NULL, 137664, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff933a0000 mmap(0x3fff933b0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff933b0000 close(8) = 0 mprotect(0x3fff933b0000, 65536, PROT_READ) = 0 close(7) = 0 stat("/usr/sbin/keyword", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/keyword.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/keywordmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/keyword.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/keyword.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/keyword", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/keyword.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/keywordmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/keyword.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0755, st_size=1996, ...}) = 0 open("/usr/lib64/python2.7/keyword.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=2105, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\37\0\0\0@\0\0\0s\247\0\0\0d\0"..., 4096) = 2105 fstat(8, {st_mode=S_IFREG|0644, st_size=2105, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(7) = 0 stat("/usr/sbin/heapq", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/heapq.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/heapq.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/heapq", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/heapq.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=18191, ...}) = 0 open("/usr/lib64/python2.7/heapq.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=14473, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\321\1\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=14473, ...}) = 0 read(8, "ementing schedulers (this is wha"..., 8192) = 8192 read(8, "\0\0s(\0\0\0\0(\0\0\0\0s\35\0\0\0/usr/lib64/pyt"..., 4096) = 2185 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/itertools", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/itertoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/itertools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/itertools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/itertools", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/itertoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/itertools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/itertools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/itertools", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/itertoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/itertools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/itertools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/itertools", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0555, st_size=85296, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so", O_RDONLY|O_CLOEXEC) = 9 read(9, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2>`"..., 832) = 832 fstat(9, {st_mode=S_IFREG|0555, st_size=85296, ...}) = 0 mmap(NULL, 150104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x3fff93370000 mmap(0x3fff93380000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0) = 0x3fff93380000 close(9) = 0 mprotect(0x3fff93380000, 65536, PROT_READ) = 0 close(8) = 0 stat("/usr/sbin/_heapq", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/_heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_heapq.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_heapq.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_heapq", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_heapq.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_heapq.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_heapq", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_heapq.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_heapqmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_heapq.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_heapq.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_heapq", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_heapq.so", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0755, st_size=76328, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_heapq.so", O_RDONLY|O_CLOEXEC) = 9 read(9, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\34\220"..., 832) = 832 fstat(9, {st_mode=S_IFREG|0755, st_size=76328, ...}) = 0 mmap(NULL, 139232, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x3fff93340000 mmap(0x3fff93350000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0) = 0x3fff93350000 close(9) = 0 mprotect(0x3fff93350000, 65536, PROT_READ) = 0 brk(0) = 0x10011600000 brk(0x10011630000) = 0x10011630000 close(8) = 0 close(7) = 0 close(6) = 0 close(5) = 0 stat("/usr/lib64/python2.7/logging/atexit", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/atexit.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/atexit.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/logging/atexit.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/atexit", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/atexit.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/atexit.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/atexit.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/atexit", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/atexit.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/atexit.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=1705, ...}) = 0 open("/usr/lib64/python2.7/atexit.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=2203, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\300\0\0\0d\0"..., 4096) = 2203 fstat(6, {st_mode=S_IFREG|0644, st_size=2203, ...}) = 0 read(6, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff932f0000 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib/python2.7/site-packages/sos/optparse", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/optparse.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/optparse.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/optparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/optparse", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/sbin/optparse.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/optparse.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/optparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/optparse", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/optparse.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/optparse.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=61124, ...}) = 0 open("/usr/lib64/python2.7/optparse.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=54049, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\300\2\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=54049, ...}) = 0 read(5, "\2\0d\1\0\204\0\0Z\3\0d\2\0\204\0\0Z\4\0RS(\3\0\0\0s]\0\0\0"..., 49152) = 49152 read(5, "n 'wordmap' for which 's' is an "..., 4096) = 801 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/textwrap", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/sbin/textwrap.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/textwrap.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/textwrap.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/textwrap", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/textwrap.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/textwrap.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=17037, ...}) = 0 open("/usr/lib64/python2.7/textwrap.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=11899, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\354\0\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=11899, ...}) = 0 read(6, "\32\0\0\0t\4\0\0\0text(\0\0\0\0(\0\0\0\0s \0\0\0/usr"..., 4096) = 4096 read(6, "expanded with string.expandtabs("..., 4096) = 3707 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/string", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/sbin/string.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/string.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/string.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/string", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/string.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/string.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=20756, ...}) = 0 open("/usr/lib64/python2.7/string.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=20008, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\226\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=20008, ...}) = 0 read(7, "elim)s(?:\n (?P%(de"..., 12288) = 12288 read(7, "old replaced by new. If the opti"..., 4096) = 3624 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/strop", 0x3fffc6552b20) = -1 ENOENT (No such file or directory) open("/usr/sbin/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/strop.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/strop.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/strop", 0x3fffc6552b20) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/strop.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/strop.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/strop", 0x3fffc6552b20) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/strop.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/strop.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/strop", 0x3fffc6552b20) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/stropmodule.so", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0555, st_size=72664, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/stropmodule.so", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\21\350"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0555, st_size=72664, ...}) = 0 mmap(NULL, 137048, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff932c0000 mmap(0x3fff932d0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff932d0000 close(8) = 0 mprotect(0x3fff932d0000, 65536, PROT_READ) = 0 close(7) = 0 close(6) = 0 close(5) = 0 stat("/usr/share/locale/en_IN.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x3fffc65549c0) = -1 ENOENT (No such file or directory) close(4) = 0 stat("/usr/lib/python2.7/site-packages/sos/sos", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins/__init__.py", {st_mode=S_IFREG|0644, st_size=25787, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins/__init__", 0x3fffc65548a0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/__init__.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=25787, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/plugins/__init__.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=26894, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\5\0\0\0@\200\0\0s\206\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=26894, ...}) = 0 read(5, "package $package_name installed?"..., 20480) = 20480 read(5, "le__R\347\0\0\0R?\0\0\0R8\0\0\0R\214\0\0\0t\r\0\0\0req"..., 4096) = 2318 read(5, "", 4096) = 0 mmap(NULL, 851968, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff931f0000 munmap(0x3fff99ed0000, 262144) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins/__future__", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/__future__.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/__future__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/__future__", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/__future__.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/__future__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/__future__", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/__future__.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=4380, ...}) = 0 open("/usr/lib64/python2.7/__future__.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=4228, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\355\0\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=4228, ...}) = 0 read(6, "\0\0/usr/lib64/python2.7/__future_"..., 4096) = 132 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(5) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins/sos", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/utilities", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/utilities.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/utilitiesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/utilities.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=8501, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/utilities.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=9627, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\5\0\0\0@\200\0\0si\1\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=9627, ...}) = 0 read(6, "1\0\0\0/usr/lib/python2.7/site-pack"..., 4096) = 4096 read(6, "\\\2\0}\2\0}\3\0t\1\0j\2\0|\2\0\203\1\0}\4\0|\3\0j\3\0t\4"..., 4096) = 1435 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/__future__", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/__future__.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/__future__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/re", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/re.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/re.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/re.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/inspect", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/inspect.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/inspectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/inspect.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/inspect.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/inspect", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/inspect.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/inspectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/inspect.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/inspect.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/inspect", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/inspect.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/inspectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/inspect.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=42464, ...}) = 0 open("/usr/lib64/python2.7/inspect.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=39977, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s\316\3\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=39977, ...}) = 0 brk(0) = 0x10011630000 brk(0x10011660000) = 0x10011660000 read(7, ". __name__ is\n usually sensi"..., 32768) = 32768 read(7, "a list of lines of context from\n"..., 4096) = 3113 read(7, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff931a0000 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/dis", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/dis.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/dismodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/dis.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/dis.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/dis", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/dis.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/dismodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/dis.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=6499, ...}) = 0 open("/usr/lib64/python2.7/dis.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=6228, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\354\0\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=6228, ...}) = 0 read(8, "\316\0|\3\0|\2\0k\0\0r\350\0|\0\0|\3\0\31}\4\0t\1\0|\4\0\203\1"..., 4096) = 2132 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/opcode", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/opcode.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/opcodemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/opcode.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/opcode.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/opcode", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/opcode.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/opcodemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/opcode.py", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=5474, ...}) = 0 open("/usr/lib64/python2.7/opcode.pyc", O_RDONLY) = 9 fstat(9, {st_mode=S_IFREG|0644, st_size=6147, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(9, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\f\0\0\0@\0\0\0sQ\7\0\0d\0"..., 4096) = 4096 fstat(9, {st_mode=S_IFREG|0644, st_size=6147, ...}) = 0 read(9, "iG\0\0\0t\r\0\0\0PRINT_NEWLINEiH\0\0\0t\r\0\0"..., 4096) = 2051 read(9, "", 4096) = 0 close(9) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(8) = 0 close(7) = 0 stat("/usr/sbin/tokenize", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/tokenize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tokenizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tokenize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tokenize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/tokenize", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tokenize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tokenizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tokenize.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=16542, ...}) = 0 open("/usr/lib64/python2.7/tokenize.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=13934, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0s\350\4\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=13934, ...}) = 0 read(8, "\0\0\0br's\3\0\0\0br\"s\3\0\0\0Br's\3\0\0\0Br\"s\3"..., 8192) = 8192 read(8, "\25\1\24\1\f\1\26\1\27\1\f\1\n\1\22\1\6\1\17\1\r\1\35\2\f\1\n\1\6\1\4\1"..., 4096) = 1646 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/token", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/token.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tokenmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/token.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/token.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/token", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/token.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tokenmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/token.py", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0755, st_size=2946, ...}) = 0 open("/usr/lib64/python2.7/token.pyc", O_RDONLY) = 9 fstat(9, {st_mode=S_IFREG|0644, st_size=3816, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(9, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\337\1\0\0d\0"..., 4096) = 3816 fstat(9, {st_mode=S_IFREG|0644, st_size=3816, ...}) = 0 read(9, "", 4096) = 0 close(9) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(8) = 0 close(7) = 0 brk(0) = 0x10011660000 brk(0x10011690000) = 0x10011690000 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff93150000 close(6) = 0 stat("/usr/lib/python2.7/site-packages/sos/stat", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/subprocess", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/subprocess.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/subprocess.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/subprocess", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/subprocess.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/subprocess.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/subprocess", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/subprocess.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=59068, ...}) = 0 open("/usr/lib64/python2.7/subprocess.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=41915, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s`\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=41915, ...}) = 0 read(7, " end-of-line convention, '\\r', t"..., 36864) = 36864 read(7, "ss.pyt\v\0\0\0_demo_posix\27\6\0\0s*\0\0\0\0\4"..., 4096) = 955 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/select", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/select.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/selectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/select.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/select.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/select", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/select.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/selectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/select.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/select.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/select", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/select.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/selectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/select.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/select.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/select", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/select.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/selectmodule.so", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0555, st_size=73072, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/selectmodule.so", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\23\10"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0555, st_size=73072, ...}) = 0 mmap(NULL, 137872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff99ee0000 mmap(0x3fff99ef0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff99ef0000 close(8) = 0 mprotect(0x3fff99ef0000, 65536, PROT_READ) = 0 close(7) = 0 stat("/usr/sbin/fcntl", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/fcntl", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/fcntl", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/fcntl", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/fcntlmodule.so", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0555, st_size=71528, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/fcntlmodule.so", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\16x"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0555, st_size=71528, ...}) = 0 mmap(NULL, 135624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff93120000 mmap(0x3fff93130000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff93130000 close(8) = 0 mprotect(0x3fff93130000, 65536, PROT_READ) = 0 close(7) = 0 stat("/usr/sbin/pickle", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/pickle.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/picklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/pickle.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/pickle.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/pickle", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/pickle.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/picklemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/pickle.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=45151, ...}) = 0 open("/usr/lib64/python2.7/pickle.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=38463, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s\355\3\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=38463, ...}) = 0 read(8, "ike object for writing a pickle "..., 32768) = 32768 read(8, "\0\1c\2\0\0\0\3\0\0\0\3\0\0\0C\0\0\0s)\0\0\0t\0\0\203\0\0}\2"..., 4096) = 1599 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/org", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/binascii", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/binascii", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/binascii", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/binascii", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/binascii.so", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0555, st_size=69720, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/binascii.so", O_RDONLY|O_CLOEXEC) = 9 read(9, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\6\330"..., 832) = 832 fstat(9, {st_mode=S_IFREG|0555, st_size=69720, ...}) = 0 mmap(NULL, 133808, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x3fff930f0000 mmap(0x3fff93100000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0) = 0x3fff93100000 close(9) = 0 mprotect(0x3fff93100000, 65536, PROT_READ) = 0 close(8) = 0 close(7) = 0 getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=4*1024}) = 0 close(6) = 0 stat("/usr/lib/python2.7/site-packages/sos/zipfile", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/zipfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/zipfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/zipfile.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/zipfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/zipfile", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/zipfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/zipfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/zipfile.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/zipfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/zipfile", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/zipfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/zipfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/zipfile.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=57805, ...}) = 0 open("/usr/lib64/python2.7/zipfile.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=41301, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s9\4\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=41301, ...}) = 0 read(7, "\5\0d\1\0k\5\0r\272\1|\2\0|\5\0|\5\0t\2\0\27!}\6\0t\6\0|"..., 36864) = 36864 read(7, "R\311\0\0\0R\251\0\0\0R\6\0\0\0R\7\0\0\0R\242\1\0\0R\t\0\0\0(\0"..., 4096) = 341 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/shutil", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/shutil.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/shutil.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/shutil.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/shutil", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/shutil.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/shutil.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=18435, ...}) = 0 open("/usr/lib64/python2.7/shutil.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=18347, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\273\2\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=18347, ...}) = 0 read(8, "e a directory.\n\n N(\7\0\0\0R\37\0\0\0R"..., 12288) = 12288 read(8, "\0d\3\0006}\n\0y\16\0t\10\0|\1\0\31}\v\0Wn\36\0\4t\t\0k\n\0"..., 4096) = 1963 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/fnmatch", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/fnmatch.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/fnmatchmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/fnmatch.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/fnmatch.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/fnmatch", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/fnmatch.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/fnmatchmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/fnmatch.py", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=3239, ...}) = 0 open("/usr/lib64/python2.7/fnmatch.pyc", O_RDONLY) = 9 fstat(9, {st_mode=S_IFREG|0644, st_size=3534, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(9, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sa\0\0\0d\0"..., 4096) = 3534 fstat(9, {st_mode=S_IFREG|0644, st_size=3534, ...}) = 0 read(9, "", 4096) = 0 close(9) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(8) = 0 stat("/usr/sbin/grp", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/grp.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/grpmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/grp.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/grp.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/grp", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/grp.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/grpmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/grp.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/grp.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/grp", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/grp.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/grpmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/grp.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/grp.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/grp", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/grp.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/grpmodule.so", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0555, st_size=68752, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/grpmodule.so", O_RDONLY|O_CLOEXEC) = 9 read(9, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\3\310"..., 832) = 832 fstat(9, {st_mode=S_IFREG|0555, st_size=68752, ...}) = 0 mmap(NULL, 133224, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x3fff930c0000 mmap(0x3fff930d0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0) = 0x3fff930d0000 close(9) = 0 mprotect(0x3fff930d0000, 65536, PROT_READ) = 0 close(8) = 0 close(7) = 0 stat("/usr/sbin/io", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/io.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/iomodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/io.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/io.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/io", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/io.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/iomodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/io.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=3197, ...}) = 0 open("/usr/lib64/python2.7/io.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=3478, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0s\245\1\0\0d\0"..., 4096) = 3478 fstat(8, {st_mode=S_IFREG|0644, st_size=3478, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/_io", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/sbin/_io.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_iomodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_io.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_io.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_io", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_io.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_iomodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_io.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_io.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_io", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_io.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_iomodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_io.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_io.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_io", 0x3fffc6552060) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_io.so", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0755, st_size=241128, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_io.so", O_RDONLY|O_CLOEXEC) = 9 read(9, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\4\210\20"..., 832) = 832 fstat(9, {st_mode=S_IFREG|0755, st_size=241128, ...}) = 0 mmap(NULL, 305856, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x3fff93070000 mmap(0x3fff930a0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x20000) = 0x3fff930a0000 close(9) = 0 mprotect(0x3fff930a0000, 65536, PROT_READ) = 0 close(8) = 0 close(7) = 0 stat("/usr/sbin/zlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/zlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/zlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/zlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/zlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/zlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/zlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/zlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/zlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/zlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/zlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/zlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/zlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/zlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/zlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/zlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/zlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/zlibmodule.so", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0555, st_size=72104, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/zlibmodule.so", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\17\350"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0555, st_size=72104, ...}) = 0 mmap(NULL, 136600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff93040000 mmap(0x3fff93050000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff93050000 close(8) = 0 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=42118, ...}) = 0 mmap(NULL, 42118, PROT_READ, MAP_PRIVATE, 8, 0) = 0x3fff9a5b0000 close(8) = 0 open("/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\3\0`"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=136560, ...}) = 0 mmap(NULL, 199816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff93000000 mmap(0x3fff93020000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x10000) = 0x3fff93020000 close(8) = 0 mprotect(0x3fff93020000, 65536, PROT_READ) = 0 mprotect(0x3fff93050000, 65536, PROT_READ) = 0 munmap(0x3fff9a5b0000, 42118) = 0 close(7) = 0 brk(0) = 0x10011690000 brk(0x100116c0000) = 0x100116c0000 close(6) = 0 stat("/usr/lib/python2.7/site-packages/sos/tarfile", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tarfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tarfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tarfile.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tarfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/tarfile", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/tarfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tarfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tarfile.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tarfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/tarfile", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tarfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tarfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tarfile.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=89136, ...}) = 0 open("/usr/lib64/python2.7/tarfile.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=75152, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s=\6\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=75152, ...}) = 0 read(7, "deErrort\6\0\0\0appendt\4\0\0\0join(\5\0\0\0"..., 69632) = 69632 read(7, "f\0\0\0Return True if name points t"..., 4096) = 1424 read(7, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92fb0000 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(6) = 0 stat("/usr/lib/python2.7/site-packages/sos/hashlib", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/hashlib", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/hashlib", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/hashlib.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=4824, ...}) = 0 open("/usr/lib64/python2.7/hashlib.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=4283, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\322\0\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=4283, ...}) = 0 read(7, "ht\v\0\0\0ImportErrort\v\0\0\0__func_nam"..., 4096) = 187 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/_hashlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/_hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_hashlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_hashlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_hashlib", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_hashlib.so", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0755, st_size=71880, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_hashlib.so", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\t@"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=71880, ...}) = 0 mmap(NULL, 135816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92f80000 mmap(0x3fff92f90000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff92f90000 close(8) = 0 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=42118, ...}) = 0 mmap(NULL, 42118, PROT_READ, MAP_PRIVATE, 8, 0) = 0x3fff9a5b0000 close(8) = 0 open("/lib64/libssl.so.10", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\tUx"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=563664, ...}) = 0 mmap(NULL, 631864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92ee0000 mmap(0x3fff92f60000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x70000) = 0x3fff92f60000 close(8) = 0 open("/lib64/libcrypto.so.10", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0'\262`"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=2616912, ...}) = 0 mmap(NULL, 2698320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92c40000 mmap(0x3fff92e90000, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x240000) = 0x3fff92e90000 mmap(0x3fff92ed0000, 11344, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3fff92ed0000 close(8) = 0 open("/lib64/libgssapi_krb5.so.2", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\7\v\310"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=411160, ...}) = 0 mmap(NULL, 478520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92bc0000 mmap(0x3fff92c20000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x50000) = 0x3fff92c20000 close(8) = 0 open("/lib64/libkrb5.so.3", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\21\16\320"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=1152608, ...}) = 0 mmap(NULL, 1159216, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92aa0000 mmap(0x3fff92ba0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x100000) = 0x3fff92ba0000 close(8) = 0 open("/lib64/libcom_err.so.2", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\0\10"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=69464, ...}) = 0 mmap(NULL, 132680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92a70000 mmap(0x3fff92a80000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff92a80000 close(8) = 0 open("/lib64/libk5crypto.so.3", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\5\0("..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=270960, ...}) = 0 mmap(NULL, 338408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92a10000 mmap(0x3fff92a50000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x30000) = 0x3fff92a50000 close(8) = 0 open("/lib64/libkrb5support.so.0", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\3\0\270"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=137872, ...}) = 0 mmap(NULL, 202272, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff929d0000 mmap(0x3fff929f0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x10000) = 0x3fff929f0000 close(8) = 0 open("/lib64/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\0\0"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=69304, ...}) = 0 mmap(NULL, 132240, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff929a0000 mmap(0x3fff929b0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0) = 0x3fff929b0000 close(8) = 0 open("/lib64/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\3\0\210"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=152664, ...}) = 0 mmap(NULL, 210208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92960000 mmap(0x3fff92980000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x10000) = 0x3fff92980000 close(8) = 0 open("/lib64/libselinux.so.1", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\4\0X"..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=206872, ...}) = 0 mmap(NULL, 280472, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92910000 mmap(0x3fff92940000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x20000) = 0x3fff92940000 close(8) = 0 open("/lib64/libpcre.so.1", O_RDONLY|O_CLOEXEC) = 8 read(8, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\10\0 "..., 832) = 832 fstat(8, {st_mode=S_IFREG|0755, st_size=464512, ...}) = 0 mmap(NULL, 527616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3fff92880000 mmap(0x3fff928f0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x60000) = 0x3fff928f0000 close(8) = 0 mprotect(0x3fff928f0000, 65536, PROT_READ) = 0 mprotect(0x3fff92940000, 65536, PROT_READ) = 0 mprotect(0x3fff92980000, 65536, PROT_READ) = 0 mprotect(0x3fff929b0000, 65536, PROT_READ) = 0 mprotect(0x3fff929f0000, 65536, PROT_READ) = 0 mprotect(0x3fff92a50000, 65536, PROT_READ) = 0 mprotect(0x3fff92a80000, 65536, PROT_READ) = 0 mprotect(0x3fff92ba0000, 65536, PROT_READ) = 0 mprotect(0x3fff92c20000, 65536, PROT_READ) = 0 mprotect(0x3fff92e90000, 131072, PROT_READ) = 0 mprotect(0x3fff92f60000, 65536, PROT_READ) = 0 mprotect(0x3fff92f90000, 65536, PROT_READ) = 0 statfs("/sys/fs/selinux", {f_type=0xf97cff8c, f_bsize=65536, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=65536}) = 0 statfs("/sys/fs/selinux", {f_type=0xf97cff8c, f_bsize=65536, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=65536}) = 0 stat("/sys/fs/selinux", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0 access("/etc/system-fips", F_OK) = -1 ENOENT (No such file or directory) munmap(0x3fff9a5b0000, 42118) = 0 brk(0) = 0x100116c0000 brk(0x100116f0000) = 0x100116f0000 close(7) = 0 close(6) = 0 stat("/usr/lib/python2.7/site-packages/sos/fnmatch", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/fnmatch.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/fnmatchmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/fnmatch.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/fnmatch.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/contextlib", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/contextlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/contextlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/contextlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/contextlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/contextlib", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/contextlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/contextlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/contextlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/contextlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/contextlib", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/contextlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/contextlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/contextlib.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=4424, ...}) = 0 open("/usr/lib64/python2.7/contextlib.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=4454, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\211\0\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=4454, ...}) = 0 read(7, "(\0\0\0\0s\"\0\0\0/usr/lib64/python2.7/c"..., 4096) = 358 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(6) = 0 stat("/usr/lib/python2.7/site-packages/sos/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/sbin/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/six", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/six.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=22857, ...}) = 0 open("/usr/lib/python2.7/site-packages/six.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=22317, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\260\321\312Rc\0\0\0\0\0\0\0\0008\0\0\0@\0\0\0s\237\16\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=22317, ...}) = 0 read(7, "es/six.pyt\7\0\0\0__len__8\0\0\0s\2\0\0\0\0\1"..., 16384) = 16384 read(7, "\2\17\vI\0\0\0\200\0\0\0\0i\377\377\377\177I\0\0\0\200\0\0\0\0i\377\377\377\177l"..., 4096) = 1837 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/StringIO", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/sbin/StringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/StringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/StringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/StringIO", 0x3fffc6552a70) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/StringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/StringIO.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=10662, ...}) = 0 open("/usr/lib64/python2.7/StringIO.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=11480, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s|\0\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=11480, ...}) = 0 read(8, "The mode argument is optional an"..., 4096) = 4096 read(8, " return value.\n Nt\1\0\0\0\0R\5"..., 4096) = 3288 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(7) = 0 close(6) = 0 stat("/usr/lib/python2.7/site-packages/sos/time", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/time.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(5) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins/os", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/os.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/os.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/glob", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/glob.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/globmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/glob.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/glob.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/glob", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/glob.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/globmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/glob.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/glob.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/glob", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/glob.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/globmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/glob.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=2928, ...}) = 0 open("/usr/lib64/python2.7/glob.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=2897, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\266\0\0\0d\0"..., 4096) = 2897 fstat(6, {st_mode=S_IFREG|0644, st_size=2897, ...}) = 0 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(5) = 0 stat("/usr/lib/python2.7/site-packages/sos/plugins/re", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/re.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/re.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/re.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/traceback", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/stat", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/time", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/time.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/itertools", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/itertools.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/itertoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/itertools.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/itertools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/logging", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/logging.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/loggingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/logging.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/logging.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/fnmatch", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/fnmatch.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/fnmatchmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/fnmatch.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/fnmatch.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/six", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/plugins/json", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/plugins/json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/json", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/json", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/json/__init__.py", {st_mode=S_IFREG|0644, st_size=14750, ...}) = 0 stat("/usr/lib64/python2.7/json/__init__", 0x3fffc6553de0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/__init__.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=14750, ...}) = 0 open("/usr/lib64/python2.7/json/__init__.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=13955, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s,\1\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=13955, ...}) = 0 read(6, "ode``, ``int``, ``long``, ``floa"..., 8192) = 8192 read(6, "ead of the ``dict``.\n This fe"..., 4096) = 1667 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/json", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/json", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/json/decoder", 0x3fffc65533d0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/decoder.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/decodermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/decoder.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=13882, ...}) = 0 open("/usr/lib64/python2.7/json/decoder.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=11991, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\243\1\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=11991, ...}) = 0 read(7, "\3\0k\2\0r\316\0|\5\0d\0\0k\t\0r\237\0|\5\0|\n\0\203\1\0}\r\0"..., 4096) = 4096 read(7, "and its return value will be use"..., 4096) = 3799 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/json/re", 0x3fffc65529c0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/re.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/re.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/re.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/json/sys", 0x3fffc65529c0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/json/struct", 0x3fffc65529c0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/struct.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/json/json", 0x3fffc65529c0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/json/scanner", 0x3fffc65529b0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/scanner.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/scannermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/scanner.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=2297, ...}) = 0 open("/usr/lib64/python2.7/json/scanner.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=2229, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\205\0\0\0d\0"..., 4096) = 2229 fstat(8, {st_mode=S_IFREG|0644, st_size=2229, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/json/_json", 0x3fffc6551fa0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/_json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/_jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/_json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/_json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/_json", 0x3fffc6551fa0) = -1 ENOENT (No such file or directory) open("/usr/sbin/_json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_json", 0x3fffc6551fa0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_json", 0x3fffc6551fa0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_json", 0x3fffc6551fa0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_json.so", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0755, st_size=72168, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_json.so", O_RDONLY|O_CLOEXEC) = 9 read(9, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\tP"..., 832) = 832 fstat(9, {st_mode=S_IFREG|0755, st_size=72168, ...}) = 0 mmap(NULL, 135544, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x3fff92850000 mmap(0x3fff92860000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0) = 0x3fff92860000 close(9) = 0 mprotect(0x3fff92860000, 65536, PROT_READ) = 0 close(8) = 0 close(7) = 0 stat("/usr/lib64/python2.7/encodings/hex_codec", 0x3fffc6552090) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/hex_codec.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/hex_codecmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/hex_codec.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=2309, ...}) = 0 open("/usr/lib64/python2.7/encodings/hex_codec.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=3780, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(8, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\306\0\0\0d\0"..., 4096) = 3780 fstat(8, {st_mode=S_IFREG|0644, st_size=3780, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/encodings/binascii", 0x3fffc6551680) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/encodings/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(7) = 0 close(6) = 0 stat("/usr/lib64/python2.7/json/encoder", 0x3fffc65533d0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/encoder.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/encodermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/json/encoder.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=16389, ...}) = 0 open("/usr/lib64/python2.7/json/encoder.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=13710, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(7, "\3\363\r\n\252z\10Tc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s|\1\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=13710, ...}) = 0 read(7, "bjects will be checked for circu"..., 8192) = 8192 read(7, "\0\210\2\0|\0\0\203\1\0V\1ne\1|\0\0d\0\0k\10\0r1\0d\1\0V\1"..., 4096) = 1422 read(7, "", 4096) = 0 close(7) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(6) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib/python2.7/site-packages/sos/collections", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/collections.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/collections.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/textwrap", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/textwrap.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/textwrap.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/textwrap.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/tempfile", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tempfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tempfile.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/tempfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/tempfile", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/sbin/tempfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tempfile.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/tempfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/tempfile", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tempfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/tempfile.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=18335, ...}) = 0 open("/usr/lib64/python2.7/tempfile.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=19814, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\f\3\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=19814, ...}) = 0 brk(0) = 0x100116f0000 brk(0x10011720000) = 0x10011720000 read(5, " \0\0\0/usr/lib64/python2.7/tempfil"..., 12288) = 12288 read(5, "pyR\240\0\0\0%\2\0\0s\2\0\0\0\0\2c\1\0\0\0\1\0\0\0\1\0\0\0C"..., 4096) = 3430 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/random", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/sbin/random.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/random.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/random", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/random.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/random.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=32205, ...}) = 0 open("/usr/lib64/python2.7/random.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=25585, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\31\0\0\0@ \0\0s\243\2\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=25585, ...}) = 0 read(6, "domness source if available.\n\n "..., 20480) = 20480 read(6, "\360?(\2\0\0\0g\232\231\231\231\231\231\271?g\0\0\0\0\0\0\0@(\2\0\0\0g\0"..., 4096) = 1009 read(6, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92800000 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/math", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/sbin/math.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/math.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/math", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/math.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/math.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/math", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/math.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/math.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/math", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/math.so", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0555, st_size=73592, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/math.so", O_RDONLY|O_CLOEXEC) = 7 read(7, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\21\20"..., 832) = 832 fstat(7, {st_mode=S_IFREG|0555, st_size=73592, ...}) = 0 mmap(NULL, 138368, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3fff927d0000 mmap(0x3fff927e0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0) = 0x3fff927e0000 close(7) = 0 mprotect(0x3fff927e0000, 65536, PROT_READ) = 0 close(6) = 0 stat("/usr/sbin/_random", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/sbin/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_random.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/_random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/_random", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_random.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/_random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/_random", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_random.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/_random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/_random", 0x3fffc6553530) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/_randommodule.so", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0555, st_size=68648, ...}) = 0 open("/usr/lib64/python2.7/lib-dynload/_randommodule.so", O_RDONLY|O_CLOEXEC) = 7 read(7, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\2\2\370"..., 832) = 832 fstat(7, {st_mode=S_IFREG|0555, st_size=68648, ...}) = 0 mmap(NULL, 132984, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3fff927a0000 mmap(0x3fff927b0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0) = 0x3fff927b0000 close(7) = 0 mprotect(0x3fff927b0000, 65536, PROT_READ) = 0 close(6) = 0 time(NULL) = 1412818045 open("/dev/urandom", O_RDONLY) = 6 read(6, "\304 \343w\343\224y\37\234d\4\213\325\306\1\221", 16) = 16 close(6) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/__init__.py", {st_mode=S_IFREG|0644, st_size=12822, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/__init__", 0x3fffc65548a0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/__init__.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=12822, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/policies/__init__.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=17170, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\np$4Tc\0\0\0\0\0\0\0\0\3\0\0\0@\200\0\0sS\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=17170, ...}) = 0 read(5, "\0__module__t\7\0\0\0__doc__R\f\0\0\0R\36\0\0"..., 12288) = 12288 read(5, "\0\0\0raw_inputR\206\0\0\0RE\0\0\0RF\0\0\0R\204\0\0\0"..., 4096) = 786 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/__future__", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/__future__.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/__future__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/os", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/os.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/os.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/re", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/re.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/re.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/re.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/platform", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/platform.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/platformmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/platform.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/platform.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/platform", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/sbin/platform.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/platformmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/platform.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/platform.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/platform", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/platform.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/platformmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/platform.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0755, st_size=53229, ...}) = 0 open("/usr/lib64/python2.7/platform.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=36929, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0s\362\3\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=36929, ...}) = 0 read(6, "\1\0}\1\0q1\0|\6\0d\5\0k\2\0r1\0t\5\0j\6\0|\7\0d\6\0"..., 32768) = 32768 read(6, "\1\n\3\22\2\25W\6\2\t\211\t\t\t\n\t\t\t\t\t\t\t\16\6\1\t\4\6\1\t\5\6"..., 4096) = 65 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(5) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/time", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/time.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/time.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/fnmatch", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/fnmatch.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/fnmatchmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/fnmatch.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/fnmatch.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/sys", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/tempfile", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/tempfile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/tempfile.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/tempfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/sos", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sos.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sos.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sos.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/hashlib", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/textwrap", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/textwrap.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/textwrap.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/textwrap.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/six", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/six.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/sixmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/six.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/six.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN.ISO8859-1/LC_MESSAGES/sos.mo", 0x3fffc6554620) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en_IN/LC_MESSAGES/sos.mo", 0x3fffc6554620) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/sos.mo", 0x3fffc6554620) = -1 ENOENT (No such file or directory) stat("/usr/share/locale/en/LC_MESSAGES/sos.mo", {st_mode=S_IFREG|0644, st_size=410, ...}) = 0 open("/usr/share/locale/en/LC_MESSAGES/sos.mo", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=410, ...}) = 0 fstat(5, {st_mode=S_IFREG|0644, st_size=410, ...}) = 0 lseek(5, 0, SEEK_CUR) = 0 fstat(5, {st_mode=S_IFREG|0644, st_size=410, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 lseek(5, 0, SEEK_CUR) = 0 read(5, "\225\4\22\336\0\0\0\0\0\0\0\1\0\0\0\34\0\0\0$\0\0\0\3\0\0\0,\0\0\0\0"..., 4096) = 410 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(4) = 0 stat("/usr/lib/python2.7/site-packages/sos/archive", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/archive.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/archivemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/archive.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=10907, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/archive.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=12975, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\24\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=12975, ...}) = 0 read(5, "\1\0\203\1\0}\3\0t\5\0j\7\0|\2\0|\3\0j\10\0|\3\0j\t\0\203\3\0"..., 8192) = 8192 read(5, "\0\0R&\0\0\0t\10\0\0\0file_obj(\0\0\0\0(\0\0\0\0s/"..., 4096) = 687 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/shutil", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shutil.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shutil.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shutil.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/shlex", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shlex.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shlexmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shlex.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/shlex.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/shlex", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/sbin/shlex.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/shlexmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/shlex.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/shlex.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/shlex", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/shlex.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/shlexmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/shlex.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=11137, ...}) = 0 open("/usr/lib64/python2.7/shlex.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=7542, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\25\1\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=7542, ...}) = 0 read(6, "Hn\0\0t\22\0d\f\0\202\2\0n\0\0|\3\0|\0\0j\7\0k\2\0rv\2|"..., 4096) = 3446 read(6, "", 4096) = 0 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(5) = 0 stat("/usr/lib/python2.7/site-packages/sos/selinux", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/selinux", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/sbin/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/selinux", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/selinux", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/selinux", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/selinux.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/selinuxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/selinux.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/selinux.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/selinux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/selinux/__init__.py", {st_mode=S_IFREG|0644, st_size=113329, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/selinux/__init__", 0x3fffc6553e90) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/__init__.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=113329, ...}) = 0 open("/usr/lib64/python2.7/site-packages/selinux/__init__.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=107780, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(6, "\3\363\r\n\352f\361Rc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\356:\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=107780, ...}) = 0 brk(0) = 0x10011720000 brk(0x10011750000) = 0x10011750000 read(6, "j\216\1Z\216\1e\3\0j\217\1Z\217\1e\3\0j\220\1Z\220\1e\3\0j\221\1Z\221"..., 102400) = 102400 read(6, "\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1\t\1"..., 4096) = 1284 read(6, "", 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92750000 close(6) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib64/python2.7/site-packages/selinux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/selinux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib64/python2.7/site-packages/selinux/sys", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/selinux/os", 0x3fffc65532a0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/os.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/os.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/selinux/imp", 0x3fffc65532a0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/imp.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/impmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/imp.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/imp.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/selinux/_selinux", 0x3fffc65535f0) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/_selinux.so", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0755, st_size=420432, ...}) = 0 fstat(6, {st_mode=S_IFREG|0755, st_size=420432, ...}) = 0 open("/usr/lib64/python2.7/site-packages/selinux/_selinux.so", O_RDONLY|O_CLOEXEC) = 7 read(7, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\7;\350"..., 832) = 832 fstat(7, {st_mode=S_IFREG|0755, st_size=420432, ...}) = 0 mmap(NULL, 488160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x3fff926d0000 mmap(0x3fff92730000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x50000) = 0x3fff92730000 close(7) = 0 mprotect(0x3fff92730000, 65536, PROT_READ) = 0 stat("/usr/sbin/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/sbin/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/swig_runtime_data4", 0x3fffc6552d00) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/swig_runtime_data4.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/swig_runtime_data4module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/swig_runtime_data4.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/swig_runtime_data4.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) brk(0) = 0x10011750000 brk(0x10011780000) = 0x10011780000 close(6) = 0 stat("/usr/lib64/python2.7/site-packages/selinux/shutil", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/shutil.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/shutilmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/shutil.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/shutil.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/selinux/stat", 0x3fffc6553480) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/selinux/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) brk(0) = 0x10011780000 brk(0x100117d0000) = 0x100117d0000 close(5) = 0 close(4) = 0 stat("/usr/lib/python2.7/site-packages/sos/reporting", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/reporting.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/reportingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/reporting.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=3111, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/reporting.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=6397, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s&\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=6397, ...}) = 0 read(5, "\0N(\1\0\0\0R\4\0\0\0(\2\0\0\0R\5\0\0\0t\7\0\0\0conte"..., 4096) = 2301 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/json", 0x3fffc6553f40) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/json.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/jsonmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/json.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/json.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(4) = 0 stat("/usr/lib/python2.7/site-packages/sos/ConfigParser", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/ConfigParser.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/ConfigParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/ConfigParser.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/ConfigParser.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/ConfigParser", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/sbin/ConfigParser.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/ConfigParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/ConfigParser.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/ConfigParser.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/ConfigParser", 0x3fffc6554950) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/ConfigParser.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/ConfigParsermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/ConfigParser.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=27746, ...}) = 0 open("/usr/lib64/python2.7/ConfigParser.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=25213, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(5, "\3\363\r\n\250z\10Tc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s\275\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=25213, ...}) = 0 read(5, "etter for 'message'; needed only"..., 20480) = 20480 read(5, "rrorRM\0\0\0Rm\0\0\0R\253\0\0\0R\243\0\0\0R;\0\0\0R\202\0"..., 4096) = 637 read(5, "", 4096) = 0 close(5) = 0 munmap(0x3fff9a5b0000, 4096) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92680000 close(4) = 0 close(3) = 0 stat("/usr/lib/python2.7/site-packages/sos/libxml2", 0x3fffc6553e60) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/sbin/libxml2", 0x3fffc6553e60) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/libxml2", 0x3fffc6553e60) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/libxml2", 0x3fffc6553e60) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/libxml2", 0x3fffc6553e60) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/libxml2", 0x3fffc6553e60) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/libxml2.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/libxml2module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/libxml2.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=345539, ...}) = 0 open("/usr/lib64/python2.7/site-packages/libxml2.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=449468, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\240\321\336Rc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\332-\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=449468, ...}) = 0 read(4, "\203\0\0YZ\235\1d\267\1f\0\0d\270\1\204\0\0\203\0\0YZ\236\1d\271\1e!\0"..., 4096) = 4096 read(4, "-\4d\350\3Z.\4d\351\3Z/\4d\352\3Z0\4d\353\3Z1\4d\354\3Z2\4"..., 4096) = 4096 read(4, "\0\0\0(\3\0\0\0t\2\0\0\0idt\3\0\0\0syst\7\0\0\0maxs"..., 4096) = 4096 read(4, "k\3\0r,\0t\3\0j\4\0|\0\0j\1\0\203\1\0\1n\0\0d\0\0|\0\0_"..., 4096) = 4096 read(4, "comment has been found, content "..., 4096) = 4096 read(4, "FalseR,\0\0\0t\21\0\0\0compareNodesEqual"..., 4096) = 4096 read(4, "\0\0t\10\0\0\0encodingt\6\0\0\0format(\0\0\0\0("..., 4096) = 4096 read(4, "\0\0\0\0\0\0\1\0\0\0B\0\0\0s#\0\0\0e\0\0Z\1\0d\0\0\204\0\0Z"..., 4096) = 4096 read(4, "s\4\0\0\0d\0\0S(\1\0\0\0N(\0\0\0\0(\3\0\0\0R\22\0\0\0t\4"..., 4096) = 4096 read(4, "ackR\347\0\0\0R\244\0\0\0(\2\0\0\0t\4\0\0\0funcR\352\0\0\0"..., 4096) = 4096 read(4, "\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/usr/lib64/pyth"..., 4096) = 4096 read(4, "\0\0\0s\23\0\0\0t\0\0j\1\0|\0\0\203\1\0}\1\0|\1\0S(\1\0\0\0"..., 4096) = 4096 read(4, "thon2.7/site-packages/libxml2.py"..., 4096) = 4096 read(4, "\2\0\0\0R\\\1\0\0R$\0\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/us"..., 4096) = 4096 read(4, "sDefaultValue\272\4\0\0s\4\0\0\0\0\1\17\1c\1\0\0\0\2"..., 4096) = 4096 read(4, "ue also\n affect autogenerat"..., 4096) = 4096 read(4, "ackages/libxml2.pyt\10\0\0\0readFileZ"..., 4096) = 4096 read(4, "elow doesn't try to cope with ex"..., 4096) = 4096 read(4, "h(\4\0\0\0R\216\0\0\0R\37\1\0\0R\333\1\0\0R$\0\0\0(\0\0\0\0("..., 4096) = 4096 read(4, "\0t\0\0j\1\0\203\0\0\1d\1\0S(\2\0\0\0s\222\1\0\0Cleanup"..., 4096) = 4096 read(4, "xt node. s\23\0\0\0xmlNewText() faile"..., 4096) = 4096 read(4, "lidation. (\2\0\0\0R,\0\0\0t\23\0\0\0xmlBuil"..., 4096) = 4096 read(4, "\0\0\0R,\0\0\0t\20\0\0\0xmlCheckFilename(\2\0"..., 4096) = 4096 read(4, "$\0\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/usr/lib64/py"..., 4096) = 4096 read(4, "8Size(\2\0\0\0t\3\0\0\0utfR$\0\0\0(\0\0\0\0(\0\0\0"..., 4096) = 4096 read(4, ",\0\0\0t\16\0\0\0xmlUCSIsArrows(\2\0\0\0R\227\2\0"..., 4096) = 4096 read(4, "lsSupplement(\2\0\0\0R\227\2\0\0R$\0\0\0(\0\0\0\0"..., 4096) = 4096 read(4, "sCatLu(\2\0\0\0R\227\2\0\0R$\0\0\0(\0\0\0\0(\0\0\0\0s"..., 4096) = 4096 read(4, ".pyt\t\0\0\0uCSIsCatSK\t\0\0s\4\0\0\0\0\2\17\1c\1"..., 4096) = 4096 read(4, "labary(\2\0\0\0R\227\2\0\0R$\0\0\0(\0\0\0\0(\0\0\0\0s"..., 4096) = 4096 read(4, "\0S(\1\0\0\0s:\0\0\0Check whether the ch"..., 4096) = 4096 read(4, " (\2\0\0\0R,\0\0\0t\17\0\0\0xmlUCSIsKannada("..., 4096) = 4096 read(4, "pyt\16\0\0\0uCSIsMalayalam\241\n\0\0s\4\0\0\0\0\2"..., 4096) = 4096 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92630000 read(4, "er is part of Oriya UCS Block (\2"..., 4096) = 4096 read(4, " (\2\0\0\0R,\0\0\0t$\0\0\0xmlUCSIsSuppleme"..., 4096) = 4096 read(4, "e character is part of\n Va"..., 4096) = 4096 read(4, "(\0\0\0\0s-\0\0\0/usr/lib64/python2.7/s"..., 4096) = 4096 read(4, "cument it is first\n unl"..., 4096) = 4096 read(4, "references. R\6\0\0\0N(\5\0\0\0R,\0\0\0t\24\0\0"..., 4096) = 4096 read(4, "sTextR\33\0\0\0(\2\0\0\0R\22\0\0\0R$\0\0\0(\0\0\0\0(\0"..., 4096) = 4096 read(4, "\0\0newNsProp-\r\0\0s\20\0\0\0\0\3\f\0\t\1\t\1\33\1\f\0"..., 4096) = 4096 read(4, "ce we don't have back reference "..., 4096) = 4096 read(4, "p. xmlEncodeSpecialChars(). N(\3\0"..., 4096) = 4096 read(4, " is not\n freed If one n"..., 4096) = 4096 read(4, "\0}\3\0|\3\0S(\2\0\0\0s'\0\0\0Compare two no"..., 4096) = 4096 read(4, "\0t\4\0d\1\0\203\1\0\202\1\0n\0\0t\5\0d\2\0|\3\0\203\0\1}\4\0|"..., 4096) = 4096 read(4, " attribute nodes and namespac"..., 4096) = 4096 read(4, "\0\0R\225\4\0\0R\230\4\0\0R\232\4\0\0R\234\4\0\0R\236\4\0\0R\240\4\0\0"..., 4096) = 4096 read(4, "\25\0d\1\0}\5\0n\t\0|\2\0j\1\0}\5\0t\2\0j\3\0|\1\0|\0\0"..., 4096) = 4096 read(4, "\0R,\0\0\0t\17\0\0\0xmlAddDtdEntityR\33\0\0\0R"..., 4096) = 4096 read(4, "\0k\10\0r\25\0d\1\0}\3\0n\t\0|\1\0j\1\0}\3\0|\2\0d\1\0k"..., 4096) = 4096 read(4, "\0d\1\0\203\1\0\202\1\0n\0\0t\5\0d\2\0|\1\0\203\0\1}\2\0|\2\0S"..., 4096) = 4096 read(4, "ment. s\26\0\0\0xmlNewDocProp() faile"..., 4096) = 4096 read(4, "\0\0R\32\0\0\0R\33\0\0\0R,\0\0\0R8\4\0\0(\5\0\0\0R\22\0\0\0"..., 4096) = 4096 read(4, " warning is generated to c"..., 4096) = 4096 read(4, "ent\4\22\0\0s\4\0\0\0\0\3\25\1c\3\0\0\0\6\0\0\0\4\0\0\0C\0\0"..., 4096) = 4096 read(4, "dtd__oR$\0\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/usr/l"..., 4096) = 4096 read(4, "lib64/python2.7/site-packages/li"..., 4096) = 4096 read(4, "\0R,\0\0\0R\271\4\0\0R\20\0\0\0R\272\4\0\0(\7\0\0\0R\22\0\0\0t"..., 4096) = 4096 read(4, " from a parser context. (\3\0\0\0R,\0"..., 4096) = 4096 read(4, "if parsing a\n file. The"..., 4096) = 4096 read(4, "-formed if it matches the produc"..., 4096) = 4096 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff925e0000 read(4, "alue of an\n internal pa"..., 4096) = 4096 read(4, "\0\0\0(\1\0\0\0R\22\0\0\0(\0\0\0\0(\0\0\0\0s-\0\0\0/usr"..., 4096) = 4096 read(4, "S(\2\0\0\0ss\3\0\0parse Markup declarat"..., 4096) = 4096 read(4, "\n this is handled. N(\3"..., 4096) = 4096 read(4, "ral [11] SystemLiteral ::= ('\"'"..., 4096) = 4096 read(4, "\0\0popInput\222\25\0\0s\4\0\0\0\0\3\22\1c\1\0\0\0\2\0\0\0"..., 4096) = 4096 read(4, "|\0\0j\1\0\203\2\0}\3\0|\3\0d\3\0k\10\0rN\0t\4\0d\1\0\203\1"..., 4096) = 4096 read(4, "\0j\2\0|\1\0\203\2\0}\2\0|\2\0S(\1\0\0\0s!\0\0\0Remov"..., 4096) = 4096 read(4, "TD for the description of this e"..., 4096) = 4096 read(4, "\0\0s\23\0\0\0Cleanup the error. N(\3\0\0\0"..., 4096) = 4096 read(4, " allow entities references,\n "..., 4096) = 4096 read(4, "\0\0j\1\0|\0\0j\2\0\203\1\0\1d\1\0S(\2\0\0\0s\367\0\0\0Nam"..., 4096) = 4096 read(4, "\0\0(\4\0\0\0R\22\0\0\0R#\0\0\0R\313\4\0\0R$\0\0\0(\0\0\0\0"..., 4096) = 4096 read(4, "\0\0C\0\0\0s\26\0\0\0t\0\0j\1\0|\0\0j\2\0\203\1\0}\1\0|\1\0"..., 4096) = 4096 read(4, "ages/libxml2.pyR\200\6\0\0^\30\0\0s\f\0\0\0\6\1\f"..., 4096) = 4096 read(4, "ite-packages/libxml2.pyR\23\0\0\0\351\30\0\0"..., 4096) = 4096 read(4, "xml2.pyRy\5\0\0F\31\0\0s\n\0\0\0\0\2\f\0\t\1\t\1\25\1c"..., 4096) = 4096 read(4, "\226\0\0\0This method releases any res"..., 4096) = 4096 read(4, "hon2.7/site-packages/libxml2.pyt"..., 4096) = 4096 read(4, "de. (\3\0\0\0R,\0\0\0t\32\0\0\0xmlTextReader"..., 4096) = 4096 read(4, "es/libxml2.pyt\v\0\0\0NextSiblingy\32\0"..., 4096) = 4096 read(4, "\0\0R\217\6\0\0(\4\0\0\0R\22\0\0\0R\214\6\0\0t\t\0\0\0schem"..., 4096) = 4096 read(4, "\0\0\0s-\0\0\0/usr/lib64/python2.7/sit"..., 4096) = 4096 read(4, "RI. N(\3\0\0\0R,\0\0\0t\17\0\0\0xmlURISetOpa"..., 4096) = 4096 read(4, " (#x20) character. \n Al"..., 4096) = 4096 read(4, " XML-1.0 recommendation: - "..., 4096) = 4096 read(4, "/usr/lib64/python2.7/site-packag"..., 4096) = 4096 read(4, "\20\0\0\0xmlXPathNsLookupR\33\0\0\0(\3\0\0\0R\22"..., 4096) = 4096 read(4, "ackages/libxml2.pyt\7\0\0\0context\375\34"..., 4096) = 4096 read(4, "XPath objects content:\n "..., 4096) = 4096 read(4, "containing the local part of the"..., 4096) = 4096 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92590000 read(4, "\0R\243\4\0\0R\27\0\0\0R\261\0\0\0(\5\0\0\0R\22\0\0\0R\371\0\0\0R"..., 4096) = 4096 read(4, "s; the nodes are ordered\n "..., 4096) = 4096 read(4, "\0\0\0\0\3\22\1c\1\0\0\0\2\0\0\0\2\0\0\0C\0\0\0s\26\0\0\0t\0\0"..., 4096) = 4096 read(4, " context node as its only member"..., 4096) = 4096 read(4, "ubstring(\"12345\", -42, 1 div 0) "..., 4096) = 4096 read(4, "iQ\0\0\0iR\0\0\0iS\0\0\0iT\0\0\0iU\0\0\0iV\0\0\0iW"..., 4096) = 4096 read(4, "\226\1\0\0R\230\1\0\0R\232\1\0\0R\234\1\0\0R\236\1\0\0R\240\1\0\0R\242\1"..., 4096) = 4096 read(4, "Dt\n\0\0\0XML_ERR_OKt\26\0\0\0XML_ERR_INT"..., 4096) = 4096 read(4, "\32\0\0\0XML_DTD_NOTATION_REDEFINEDt\26"..., 4096) = 4096 read(4, "VALUE_NO_CONTENTt\23\0\0\0XML_RNGP_XM"..., 4096) = 4096 read(4, "PLEXCONTENT_CHILDt%\0\0\0XML_SCHEMA"..., 4096) = 4096 read(4, "C_ELT_5_2_2_1t\35\0\0\0XML_SCHEMAV_CV"..., 4096) = 4096 read(4, "C_REDEFINEt\26\0\0\0XML_SCHEMAP_SRC_I"..., 4096) = 4096 read(4, "XPATH_UNCLOSED_ERRORt\30\0\0\0XPATH_U"..., 4096) = 4096 read(4, "MATRON_OUT_XMLt\30\0\0\0XML_SCHEMATRO"..., 4096) = 4096 read(4, "\t\7\t\6\t\7\t\5\t\5\t\5\t\5\t\t\t\7\t\6\t\10\t\26\t\t\t\5\t\6\t\10"..., 4096) = 3004 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/sbin/libxml2mod", 0x3fffc6553450) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/libxml2mod", 0x3fffc6553450) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/libxml2mod", 0x3fffc6553450) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/libxml2mod", 0x3fffc6553450) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2mod.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2modmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2mod.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/libxml2mod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/libxml2mod", 0x3fffc6553450) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/libxml2mod.so", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0755, st_size=583824, ...}) = 0 open("/usr/lib64/python2.7/site-packages/libxml2mod.so", O_RDONLY|O_CLOEXEC) = 5 read(5, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\tu\210"..., 832) = 832 fstat(5, {st_mode=S_IFREG|0755, st_size=583824, ...}) = 0 mmap(NULL, 659808, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x3fff924e0000 mmap(0x3fff92560000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x70000) = 0x3fff92560000 mmap(0x3fff92580000, 4448, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3fff92580000 close(5) = 0 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=42118, ...}) = 0 mmap(NULL, 42118, PROT_READ, MAP_PRIVATE, 5, 0) = 0x3fff9a5b0000 close(5) = 0 open("/lib64/libxml2.so.2", O_RDONLY|O_CLOEXEC) = 5 read(5, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\36\23\200"..., 832) = 832 fstat(5, {st_mode=S_IFREG|0755, st_size=1954560, ...}) = 0 mmap(NULL, 2024984, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x3fff922f0000 mmap(0x3fff924c0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x1c0000) = 0x3fff924c0000 close(5) = 0 open("/lib64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 5 read(5, "\177ELF\2\2\1\0\0\0\0\0\0\0\0\0\0\3\0\25\0\0\0\1\0\0\0\0\0\4\0\0"..., 832) = 832 fstat(5, {st_mode=S_IFREG|0755, st_size=204976, ...}) = 0 mmap(NULL, 268672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x3fff922a0000 mmap(0x3fff922d0000, 131072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x20000) = 0x3fff922d0000 close(5) = 0 mprotect(0x3fff922d0000, 65536, PROT_READ) = 0 mprotect(0x3fff924c0000, 65536, PROT_READ) = 0 mprotect(0x3fff92560000, 65536, PROT_READ) = 0 munmap(0x3fff9a5b0000, 42118) = 0 time(NULL) = 1412818045 futex(0x3fff924de350, FUTEX_WAKE_PRIVATE, 2147483647) = 0 brk(0) = 0x100117d0000 brk(0x10011800000) = 0x10011800000 close(4) = 0 mmap(NULL, 327680, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92250000 brk(0) = 0x10011800000 brk(0x10011850000) = 0x10011850000 close(3) = 0 stat("/usr/lib/python2.7/site-packages/sos/signal", 0x3fffc65547f0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/signal.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/signalmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/signal.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/signal.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) rt_sigaction(SIGTERM, {0x3fff9a592e68, [], 0}, {SIG_DFL, [], 0}, 8) = 0 open("/etc/sos.conf", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=256, ...}) = 0 fstat(3, {st_mode=S_IFREG|0644, st_size=256, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(3, "[general]\n\n#ftp_upload_url = ftp"..., 4096) = 256 read(3, "", 4096) = 0 close(3) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 openat(AT_FDCWD, "/usr/lib/python2.7/site-packages/sos/policies", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3 getdents(3, /* 20 entries */, 32768) = 624 getdents(3, /* 0 entries */, 32768) = 0 close(3) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/debian.pyo", {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/ubuntu.pyc", {st_mode=S_IFREG|0644, st_size=1371, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/windows.pyc", {st_mode=S_IFREG|0644, st_size=1666, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/__init__.pyc", {st_mode=S_IFREG|0644, st_size=17170, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/redhat.py", {st_mode=S_IFREG|0644, st_size=5741, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/osx.pyo", {st_mode=S_IFREG|0644, st_size=805, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/windows.pyo", {st_mode=S_IFREG|0644, st_size=1666, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/__init__.py", {st_mode=S_IFREG|0644, st_size=12822, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/ubuntu.pyo", {st_mode=S_IFREG|0644, st_size=1371, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/windows.py", {st_mode=S_IFREG|0644, st_size=1608, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/ubuntu.py", {st_mode=S_IFREG|0644, st_size=736, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/redhat.pyc", {st_mode=S_IFREG|0644, st_size=6772, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/__init__.pyo", {st_mode=S_IFREG|0644, st_size=17124, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/debian.pyc", {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/redhat.pyo", {st_mode=S_IFREG|0644, st_size=6772, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/osx.py", {st_mode=S_IFREG|0644, st_size=320, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/debian.py", {st_mode=S_IFREG|0644, st_size=1249, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/osx.pyc", {st_mode=S_IFREG|0644, st_size=805, ...}) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/debian", 0x3fffc6554050) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/debian.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/debianmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/debian.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=1249, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/policies/debian.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sL\0\0\0d\0"..., 4096) = 1938 fstat(4, {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(3) = 0 stat("/etc/debian_version", 0x3fffc6555740) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/osx", 0x3fffc6554050) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/osx.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/osxmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/osx.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=320, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/policies/osx.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=805, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s@\0\0\0d\0"..., 4096) = 805 fstat(4, {st_mode=S_IFREG|0644, st_size=805, ...}) = 0 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 close(3) = 0 access("sw_vers", X_OK) = -1 ENOENT (No such file or directory) access("/usr/local/sbin/sw_vers", X_OK) = -1 ENOENT (No such file or directory) access("/usr/local/bin/sw_vers", X_OK) = -1 ENOENT (No such file or directory) access("/usr/sbin/sw_vers", X_OK) = -1 ENOENT (No such file or directory) access("/usr/bin/sw_vers", X_OK) = -1 ENOENT (No such file or directory) access("/root/bin/sw_vers", X_OK) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/sos/policies/redhat", 0x3fffc6554050) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/redhat.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/redhatmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/redhat.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=5741, ...}) = 0 open("/usr/lib/python2.7/site-packages/sos/policies/redhat.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=6772, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(4, "\3\363\r\n\351\20\33Tc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\345\0\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=6772, ...}) = 0 read(4, " or False.s\17\0\0\0/etc/os-rel"..., 4096) = 2676 read(4, "", 4096) = 0 close(4) = 0 munmap(0x3fff9a5b0000, 4096) = 0 stat("/usr/lib/python2.7/site-packages/sos/policies/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/sos/policies/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/share/rhn/", 0x3fffc6550308) = -1 ENOENT (No such file or directory) stat("/usr/share/rhn", 0x3fffc6550308) = -1 ENOENT (No such file or directory) stat("/usr/share", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/share/rhn/", 0x3fffc6553340) = -1 ENOENT (No such file or directory) stat("/usr/sbin/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/sbin/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/sbin/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/plat-linux2/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/plat-linux2/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/lib-dynload/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/lib-dynload/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/PIL/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/PIL/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib64/python2.7/site-packages/gtk-2.0/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib64/python2.7/site-packages/gtk-2.0/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/site-packages/up2date_client", 0x3fffc6553640) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/up2date_client.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/up2date_clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/up2date_client.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site-packages/up2date_client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(3) = 0 stat("/etc/fedora-release", 0x3fffc6555740) = -1 ENOENT (No such file or directory) stat("/etc/os-release", {st_mode=S_IFREG|0644, st_size=180, ...}) = 0 stat("/etc/fedora-release", 0x3fffc6555740) = -1 ENOENT (No such file or directory) uname({sys="Linux", node="jobkvm.isst.aus.stglabs.ibm.com", ...}) = 0 pipe2([3, 4], O_CLOEXEC) = 0 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x3fff9a625ed0) = 36295 close(4) = 0 fcntl(3, F_SETFD, 0) = 0 fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 mmap(NULL, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 read(3, "ppc64\n", 65536) = 6 fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) read(3, "", 65536) = 0 --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=36295, si_status=0, si_utime=0, si_stime=0} --- close(3) = 0 waitpid(36295, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 36295 munmap(0x3fff9a5b0000, 65536) = 0 fstat(1, {st_mode=S_IFREG|0644, st_size=278613, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff9a5b0000 access("rpm", X_OK) = -1 ENOENT (No such file or directory) access("/bin/rpm", X_OK) = 0 access("/usr/bin/timeout", X_OK) = 0 pipe([3, 4]) = 0 fcntl(3, F_GETFD) = 0 fcntl(3, F_SETFD, FD_CLOEXEC) = 0 fcntl(4, F_GETFD) = 0 fcntl(4, F_SETFD, FD_CLOEXEC) = 0 pipe([5, 6]) = 0 fcntl(5, F_GETFD) = 0 fcntl(5, F_SETFD, FD_CLOEXEC) = 0 fcntl(6, F_GETFD) = 0 fcntl(6, F_SETFD, FD_CLOEXEC) = 0 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x3fff9a625ed0) = 36297 close(6) = 0 mmap(NULL, 1114112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff92140000 read(5, "", 1048576) = 0 mremap(0x3fff92140000, 1114112, 65536, MREMAP_MAYMOVE) = 0x3fff92140000 close(4) = 0 close(5) = 0 munmap(0x3fff92140000, 65536) = 0 fcntl(3, F_GETFL) = 0 (flags O_RDONLY) fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 mmap(NULL, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3fff99ed0000 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) read(3, "libibverbs|1.1.7\n", 65536) = 17 fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) fstat(3, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) read(3, query command rpm -qa --queryformat "%{NAME}|%{VERSION}\n" Traceback (most recent call last): File "/usr/sbin/sosreport", line 23, in main(sys.argv[1:]) File "/usr/lib/python2.7/site-packages/sos/sosreport.py", line 1152, in main sos = SoSReport(args) File "/usr/lib/python2.7/site-packages/sos/sosreport.py", line 526, in __init__ self.policy = sos.policies.load() File "/usr/lib/python2.7/site-packages/sos/policies/__init__.py", line 38, in load cache['policy'] = policy() File "/usr/lib/python2.7/site-packages/sos/policies/redhat.py", line 120, in __init__ super(RHELPolicy, self).__init__() File "/usr/lib/python2.7/site-packages/sos/policies/redhat.py", line 49, in __init__ if self.package_manager.all_pkgs()['filesystem']['version'][0] == '3': File "/usr/lib/python2.7/site-packages/sos/policies/__init__.py", line 108, in all_pkgs self.packages = self.get_pkg_list() File "/usr/lib/python2.7/site-packages/sos/policies/__init__.py", line 93, in get_pkg_list pkg_list = shell_out(self.query_command).splitlines() File "/usr/lib/python2.7/site-packages/sos/utilities.py", line 171, in shell_out return sos_get_command_output(cmd)[1] File "/usr/lib/python2.7/site-packages/sos/utilities.py", line 148, in sos_get_command_output stdout, stderr = p.communicate() File "/usr/lib64/python2.7/subprocess.py", line 792, in communicate stdout = _eintr_retry_call(self.stdout.read) File "/usr/lib64/python2.7/subprocess.py", line 478, in _eintr_retry_call return func(*args) KeyboardInterrupt From aruna at linux.vnet.ibm.com Tue Oct 14 06:10:04 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Tue, 14 Oct 2014 11:40:04 +0530 Subject: [sos-devel] [Proposal] sosreport: Add a command line option to set timeout Message-ID: <543CBE3C.2040903@linux.vnet.ibm.com> Bryn, It would be good to have --timeout command line option to control the default timeout in case the user wants to wait for long or a shorter duration. Though this will not help to control the timeout at the plugin granularity user would be in a position to wait for the specified duration. Regards, Aruna From aruna at linux.vnet.ibm.com Tue Oct 14 06:16:04 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Tue, 14 Oct 2014 11:46:04 +0530 Subject: [sos-devel] [Proposal] sosreport: Add timeout while copying specs Message-ID: <543CBFA4.2020701@linux.vnet.ibm.com> Bryn, While doing a copy of specs there are possibilities of hang or the operation taking a very long duration to complete. Even in this case we might need a timeout parameter. Please suggest. Regards, Aruna From bmr at redhat.com Tue Oct 14 10:59:16 2014 From: bmr at redhat.com (Bryn M. Reeves) Date: Tue, 14 Oct 2014 11:59:16 +0100 Subject: [sos-devel] [Proposal] sosreport: Add a command line option to set timeout In-Reply-To: <543CBE3C.2040903@linux.vnet.ibm.com> References: <543CBE3C.2040903@linux.vnet.ibm.com> Message-ID: <20141014105916.GB8000@localhost.localdomain> On Tue, Oct 14, 2014 at 11:40:04AM +0530, Aruna Balakrishnaiah wrote: > It would be good to have --timeout command line option to control the > default timeout > in case the user wants to wait for long or a shorter duration. > > Though this will not help to control the timeout at the plugin granularity > user would > be in a position to wait for the specified duration. Discussed in issue #337: https://github.com/sosreport/sos/issues/337 Regards, Bryn. From bmr at redhat.com Tue Oct 14 11:01:27 2014 From: bmr at redhat.com (Bryn M. Reeves) Date: Tue, 14 Oct 2014 12:01:27 +0100 Subject: [sos-devel] [Proposal] sosreport: Add timeout while copying specs In-Reply-To: <543CBFA4.2020701@linux.vnet.ibm.com> References: <543CBFA4.2020701@linux.vnet.ibm.com> Message-ID: <20141014110126.GC8000@localhost.localdomain> On Tue, Oct 14, 2014 at 11:46:04AM +0530, Aruna Balakrishnaiah wrote: > While doing a copy of specs there are possibilities of hang or the operation > taking a very long duration to complete. Even in this case we might > need a timeout parameter. Please suggest. Issue #180: https://github.com/sosreport/sos/issues/180 Short version: it's tricky to do this correctly. I have some ideas that would yield most of the functionality without over-complicating the code but as yet I've not had time to implement any of them. Patches and suggestions welcome. Regards, Bryn. From bmr at redhat.com Tue Oct 14 11:49:51 2014 From: bmr at redhat.com (Bryn M. Reeves) Date: Tue, 14 Oct 2014 12:49:51 +0100 Subject: [sos-devel] [RFC PATCH] sosreport: Check for rpm database corruption during initialization In-Reply-To: <20141010055402.25807.45857.stgit@aruna-ThinkPad-T420> References: <20141010055402.25807.45857.stgit@aruna-ThinkPad-T420> Message-ID: <20141014114950.GE8000@localhost.localdomain> On Fri, Oct 10, 2014 at 11:28:14AM +0530, Aruna Balakrishnaiah wrote: > sosreport runs an rpm query to get the package list. If rpmdb is corrupted > sosreport hangs for ever hence check for rpmdb consistency before running > the rpm query. There's quite a bit going on here; let me see if I can set out all the issues. First of all blocking is not a definite sign of corruption; the rpm process is attempting to acquire locks on the database which could simply indicate that another process is accessing the database. > yum check > error: rpmdb: BDB0113 Thread/process 43828/70366497037824 failed: BDB1507 Thread died in Berkeley DB library > error: db5 error(-30973) from dbenv->failchk: BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery > error: cannot open Packages index using db5 - (-30973) > error: cannot open Packages database in /var/lib/rpm > CRITICAL:yum.main: Generally I don't like the idea of using another (higher-level) tool to check for a problem in a lower-level subsystem. It's a bit of a layering violation and I think there is probably a cleaner way to do it. > Error: rpmdb open failed We would need to be absolutely certain that this is both an accurate test that the db is 'corrupt' and also that it cannot block in the same way; otherwise it is no better than we have now. Unfortunately I don't think the latter is true. You just need to take out a read lock on the RPM DB in one process and the "yum check" will hang forever: # rpm -Va .M....... / ^Z [1]+ Stopped rpm -Va # yum check Loaded plugins: langpacks, product-id, subscription-manager [ ... hangs ... ] The "yum check" operation also seems to be quite costly: it verifies the RPM database for dependencies, duplicates, obsoletes, and provides. On my little test VM this took 6m4s; that is not an acceptable delay if this is going to take place for every sos run (most likely users would assume it was stuck and kill it anyway). It would be better to simply subject the initial rpm query to a timeout and bail if it is exceeded. > + if 'rpmdb open failed' in info: > + error("rpmdb corruption, rebuild rpmdb: rpmdb --rebuildb") Aside from the other problems this is unwise; we aren't certain of the state of the database here and suggesting --rebuilddb may not be the correct course of action. Regards, Bryn. From notifications at travis-ci.org Tue Oct 14 14:51:27 2014 From: notifications at travis-ci.org (Travis CI) Date: Tue, 14 Oct 2014 14:51:27 +0000 Subject: [sos-devel] Errored: sosreport/sos#584 (bmr-openstack_neutron-pkgcheck - 7c85915) In-Reply-To: Message-ID: <543d386eda048_21a8d1f65286ed@cb634067-0510-4af5-911c-3a2ee8b5a305.mail> Build Update for sosreport/sos ------------------------------------- Build: #584 Status: Errored Duration: 1 minute and 24 seconds Commit: 7c85915 (bmr-openstack_neutron-pkgcheck) Author: Bryn M. Reeves Message: [kpatch] do not try to read kpatch data if it could not be run Everything the kpatch plugin does requires the list of available kpatch patches obtained from 'kpatch list'. If this fails return immediately from the setup method. Fixes #417. Signed-off-by: Bryn M. Reeves View the changeset: https://github.com/sosreport/sos/compare/234f0104a887...7c8591534135 View the full build log and details: https://travis-ci.org/sosreport/sos/builds/37945136 -- You can configure recipients for build notifications in your .travis.yml file. See http://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From aruna at linux.vnet.ibm.com Wed Oct 15 06:58:03 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Wed, 15 Oct 2014 12:28:03 +0530 Subject: [sos-devel] [RESEND PATCH v2] sosreport: Capture IBM Power RAID storage adapter configuration information Message-ID: <20141015065722.3528.46506.stgit@aruna-ThinkPad-T420> Capture information which helps in better understanding of IBM Power RAID storage adapter configuration. Since iprconfig is specific to power adding the relevant commands in powerpc plugin. Signed-off-by: Aruna Balakrishnaiah --- Bryn, Can you please take a look at the patch. Regards, Aruna sos/plugins/powerpc_iprconfig.py | 116 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 sos/plugins/powerpc_iprconfig.py diff --git a/sos/plugins/powerpc_iprconfig.py b/sos/plugins/powerpc_iprconfig.py new file mode 100644 index 0000000..007b873 --- /dev/null +++ b/sos/plugins/powerpc_iprconfig.py @@ -0,0 +1,116 @@ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +# This plugin enables collection of logs for Power systems + +import os +import re +from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin + +class iprconfig(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): + """IBM Power RAID storage adapter configuration information + """ + + plugin_name = 'powerpc_iprconfig' + + def check_enabled(self): + return (self.policy().get_arch() == "ppc64") + + def setup(self): + try: + with open('/proc/cpuinfo', 'r') as fp: + contents = fp.read() + ispSeries = "pSeries" in contents + isPowerNV = "PowerNV" in contents + except: + ispSeries = False + isPowerNV = False + + if ispSeries or isPowerNV: + self.add_cmd_output([ + "iprconfig -c show-config", + "iprconfig -c show-alt-config", + "iprconfig -c show-arrays", + "iprconfig -c show-jbod-disks", + "iprconfig -c show-ioas", + ]) + + iprconfig_result = self.call_ext_prog("iprconfig -c show-ioas") + if not (iprconfig_result['status'] == 0): + return + + iprconfig_output = iprconfig_result['output'] + devices = [] + if iprconfig_output: + for line in iprconfig_output.splitlines(): + temp = line.split(' ') + p = re.compile('sg') + # temp[0] holds the device name + if p.search(temp[0]): + devices.append(temp[0]) + + for device in devices: + self.add_cmd_output("iprconfig -c show-details %s" % (device,)) + + # Look for IBM Power RAID enclosures (iprconfig lists them) + ipr_result = self.call_ext_prog("iprconfig -c show-config") + if not (ipr_result['status'] == 0): + return + +# iprconfig -c show-config +# Name PCI/SCSI Location Description Status +# ------ ------------------------- ------------------------- ----------------- +# 0005:60:00.0/0: PCI-E SAS RAID Adapter Operational +# sda 0005:60:00.0/0:0:0:0 Physical Disk Active +# sdb 0005:60:00.0/0:1:0:0 Physical Disk Active +# sdc 0005:60:00.0/0:2:0:0 Physical Disk Active +# sdd 0005:60:00.0/0:3:0:0 Physical Disk Active +# sde 0005:60:00.0/0:4:0:0 Physical Disk Active +# sdf 0005:60:00.0/0:5:0:0 Physical Disk Active +# 0005:60:00.0/0:8:0:0 Enclosure Active +# 0005:60:00.0/0:8:1:0 Enclosure Active + + ipr_output = ipr_result['output'] + if ipr_output: + for line in ipr_output.splitlines(): + if "Enclosure" in line: + temp = re.split('\s+', line) + # temp[1] holds the PCI/SCSI location + pci, scsi = temp[1].split('/') + altconfig_result = self.call_ext_prog("iprconfig -c " + "show-alt-config") + if not (altconfig_result['status'] == 0): + return + +# iprconfig -c show-alt-config +# Name Resource Path/Address Vendor Product ID Status +# ------ -------------------------- -------- ---------------- ----------------- +# sg9 0: IBM 57C7001SISIOA Operational +# sg0 0:0:0:0 IBM MBF2300RC Active +# sg1 0:1:0:0 IBM MBF2300RC Active +# sg2 0:2:0:0 IBM HUC106030CSS600 Active +# sg3 0:3:0:0 IBM HUC106030CSS600 Active +# sg4 0:4:0:0 IBM HUC106030CSS600 Active +# sg5 0:5:0:0 IBM HUC106030CSS600 Active +# sg7 0:8:0:0 IBM VSBPD6E4A 3GSAS Active +# sg8 0:8:1:0 IBM VSBPD6E4B 3GSAS Active + + altconfig_output = altconfig_result['output'] + if altconfig_output: + for line in altconfig_output.splitlines(): + if scsi in line: + temp = line.split(' ') + # temp[0] holds device name + self.add_cmd_output("iprconfig -c " + "query-ses-mode %s" % (temp[0],)) From aruna at linux.vnet.ibm.com Wed Oct 15 08:39:34 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Wed, 15 Oct 2014 14:09:34 +0530 Subject: [sos-devel] [RFC PATCH v2] sosreport: Check for rpm database corruption during initialization Message-ID: <20141015083856.17516.93227.stgit@aruna-ThinkPad-T420> sosreport runs an rpm query to get the package list. If rpmdb is corrupted sosreport hangs for ever hence check for rpmdb consistency before running the rpm query Signed-off-by: Aruna Balakrishnaiah --- Changes from v1: Addressed issues of the maintainer Introduce timeout instead of relying on yum. When rpmdb is corrupted rpm commands hangs forever, yum check will result in: yum check error: rpmdb: BDB0113 Thread/process 43828/70366497037824 failed: BDB1507 Thread died in Berkeley DB library error: db5 error(-30973) from dbenv->failchk: BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery error: cannot open Packages index using db5 - (-30973) error: cannot open Packages database in /var/lib/rpm CRITICAL:yum.main: Error: rpmdb open failed sos/policies/__init__.py | 10 ++++++---- sos/policies/redhat.py | 8 +++++++- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/sos/policies/__init__.py b/sos/policies/__init__.py index 9fcbd55..82c1997 100644 --- a/sos/policies/__init__.py +++ b/sos/policies/__init__.py @@ -11,7 +11,8 @@ from os import environ from sos.utilities import (ImporterHelper, import_module, get_hash_name, - shell_out) + shell_out, + is_executable) from sos.plugins import IndependentPlugin from sos import _sos as _ import hashlib @@ -85,14 +86,15 @@ class PackageManager(object): else: return None - def get_pkg_list(self): + def get_pkg_list(self, timeout=300): """ returns a dictionary of packages in the following format: {'package_name': {'name': 'package_name', ' version': 'major.minor.version'}} """ - if self.query_command: - pkg_list = shell_out(self.query_command).splitlines() + if self.query_command and timeout and is_executable("timeout"): + command = "timeout %ds %s" % (timeout, self.query_command) + pkg_list = shell_out(command).splitlines() for pkg in pkg_list: if '|' not in pkg: continue diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py index 2219246..746c4a5 100644 --- a/sos/policies/redhat.py +++ b/sos/policies/redhat.py @@ -46,8 +46,14 @@ class RedHatPolicy(LinuxPolicy): 'rpm -qa --queryformat "%{NAME}|%{VERSION}\\n"') self.valid_subclasses = [RedHatPlugin] + self.pkgs = self.package_manager.all_pkgs() + + # If rpm query timed out after timeout duration exit + if not self.pkgs: + sys.exit(1) + # handle PATH for UsrMove - if self.package_manager.all_pkgs()['filesystem']['version'][0] == '3': + if self.pkgs['filesystem']['version'][0] == '3': self.PATH = "/usr/sbin:/usr/bin:/root/bin" else: self.PATH = "/sbin:/bin:/usr/sbin:/usr/bin:/root/bin" From aruna at linux.vnet.ibm.com Wed Oct 15 08:42:17 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Wed, 15 Oct 2014 14:12:17 +0530 Subject: [sos-devel] [RFC PATCH v2] sosreport: Check for rpm database corruption during initialization In-Reply-To: <20141015083856.17516.93227.stgit@aruna-ThinkPad-T420> References: <20141015083856.17516.93227.stgit@aruna-ThinkPad-T420> Message-ID: <543E3369.7090006@linux.vnet.ibm.com> On Wednesday 15 October 2014 02:09 PM, Aruna Balakrishnaiah wrote: > sosreport runs an rpm query to get the package list. If rpmdb is corrupted > sosreport hangs for ever hence check for rpmdb consistency before running > the rpm query > > Signed-off-by: Aruna Balakrishnaiah > --- > Changes from v1: > Addressed issues of the maintainer > Introduce timeout instead of relying on yum. > > When rpmdb is corrupted rpm commands hangs forever, > yum check will result in: > > yum check > error: rpmdb: BDB0113 Thread/process 43828/70366497037824 failed: BDB1507 Thread died in Berkeley DB library > error: db5 error(-30973) from dbenv->failchk: BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery > error: cannot open Packages index using db5 - (-30973) > error: cannot open Packages database in /var/lib/rpm > CRITICAL:yum.main: > > Error: rpmdb open failed > > sos/policies/__init__.py | 10 ++++++---- > sos/policies/redhat.py | 8 +++++++- > 2 files changed, 13 insertions(+), 5 deletions(-) > > diff --git a/sos/policies/__init__.py b/sos/policies/__init__.py > index 9fcbd55..82c1997 100644 > --- a/sos/policies/__init__.py > +++ b/sos/policies/__init__.py > @@ -11,7 +11,8 @@ from os import environ > from sos.utilities import (ImporterHelper, > import_module, > get_hash_name, > - shell_out) > + shell_out, > + is_executable) > from sos.plugins import IndependentPlugin > from sos import _sos as _ > import hashlib > @@ -85,14 +86,15 @@ class PackageManager(object): > else: > return None > > - def get_pkg_list(self): > + def get_pkg_list(self, timeout=300): > """ > returns a dictionary of packages in the following format: > {'package_name': {'name': 'package_name', ' > version': 'major.minor.version'}} > """ > - if self.query_command: > - pkg_list = shell_out(self.query_command).splitlines() > + if self.query_command and timeout and is_executable("timeout"): > + command = "timeout %ds %s" % (timeout, self.query_command) > + pkg_list = shell_out(command).splitlines() > for pkg in pkg_list: > if '|' not in pkg: > continue > diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py > index 2219246..746c4a5 100644 > --- a/sos/policies/redhat.py > +++ b/sos/policies/redhat.py > @@ -46,8 +46,14 @@ class RedHatPolicy(LinuxPolicy): > 'rpm -qa --queryformat "%{NAME}|%{VERSION}\\n"') > self.valid_subclasses = [RedHatPlugin] > > + self.pkgs = self.package_manager.all_pkgs() > + > + # If rpm query timed out after timeout duration exit > + if not self.pkgs: > + sys.exit(1) Bryn, Is there a better way to handle this instead of doing a sys exit. Can we continue to capture other information? But I see few plugins calling rpm commands, so I chose to do a sys.exit. Please suggest. Regards, Aruna > + > # handle PATH for UsrMove > - if self.package_manager.all_pkgs()['filesystem']['version'][0] == '3': > + if self.pkgs['filesystem']['version'][0] == '3': > self.PATH = "/usr/sbin:/usr/bin:/root/bin" > else: > self.PATH = "/sbin:/bin:/usr/sbin:/usr/bin:/root/bin" > > _______________________________________________ > sos-devel mailing list > sos-devel at redhat.com > https://www.redhat.com/mailman/listinfo/sos-devel > From bmr at redhat.com Wed Oct 15 09:54:36 2014 From: bmr at redhat.com (Bryn M. Reeves) Date: Wed, 15 Oct 2014 10:54:36 +0100 Subject: [sos-devel] [RFC PATCH v2] sosreport: Check for rpm database corruption during initialization In-Reply-To: <20141015083856.17516.93227.stgit@aruna-ThinkPad-T420> References: <20141015083856.17516.93227.stgit@aruna-ThinkPad-T420> Message-ID: <20141015095435.GB4051@localhost.localdomain> On Wed, Oct 15, 2014 at 02:09:34PM +0530, Aruna Balakrishnaiah wrote: > - if self.query_command: > - pkg_list = shell_out(self.query_command).splitlines() > + if self.query_command and timeout and is_executable("timeout"): > + command = "timeout %ds %s" % (timeout, self.query_command) > + pkg_list = shell_out(command).splitlines() utilities::sos_get_command_output() already handles timeouts; there's no need to reinvent it here. Just thread a timeout= kwarg through shell_out if you want to use the wrapper. > self.valid_subclasses = [RedHatPlugin] > > + self.pkgs = self.package_manager.all_pkgs() No need to store this in the Policy object (it's already stored in Policy.package_manager.packages and returned from there). If you want to avoid repeated typing of 'self.package_manager.all_pkgs()' just store it in variable local to __init__. > + # If rpm query timed out after timeout duration exit > + if not self.pkgs: > + sys.exit(1) For now calling exit() is fine but not without telling the user what is going on; I'd suggest something like "could not obtain installed package data" or similar. In the future I'd really like to see a fallback PackageManager implementation that allows us to at least retain some basic functionality even with a catastrophically broken package db. Regards, Bryn. From aruna at linux.vnet.ibm.com Wed Oct 15 09:59:11 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Wed, 15 Oct 2014 15:29:11 +0530 Subject: [sos-devel] [RFC PATCH v2] sosreport: Check for rpm database corruption during initialization In-Reply-To: <20141015095435.GB4051@localhost.localdomain> References: <20141015083856.17516.93227.stgit@aruna-ThinkPad-T420> <20141015095435.GB4051@localhost.localdomain> Message-ID: <543E456F.4000905@linux.vnet.ibm.com> On Wednesday 15 October 2014 03:24 PM, Bryn M. Reeves wrote: > On Wed, Oct 15, 2014 at 02:09:34PM +0530, Aruna Balakrishnaiah wrote: >> - if self.query_command: >> - pkg_list = shell_out(self.query_command).splitlines() >> + if self.query_command and timeout and is_executable("timeout"): >> + command = "timeout %ds %s" % (timeout, self.query_command) >> + pkg_list = shell_out(command).splitlines() > utilities::sos_get_command_output() already handles timeouts; there's no > need to reinvent it here. Just thread a timeout= kwarg through shell_out > if you want to use the wrapper. > >> self.valid_subclasses = [RedHatPlugin] >> >> + self.pkgs = self.package_manager.all_pkgs() > No need to store this in the Policy object (it's already stored in > Policy.package_manager.packages and returned from there). > > If you want to avoid repeated typing of > 'self.package_manager.all_pkgs()' just store it in variable local to > __init__. I stored the policy because calling all_pkgs twice will be calling the command twice so the timeout will be 600s ( 300s * 2). To avoid that stored it as a policy. Will use a local variable instead. Regards, Aruna >> + # If rpm query timed out after timeout duration exit >> + if not self.pkgs: >> + sys.exit(1) > For now calling exit() is fine but not without telling the user what is > going on; I'd suggest something like "could not obtain installed package > data" or similar. > > In the future I'd really like to see a fallback PackageManager > implementation that allows us to at least retain some basic > functionality even with a catastrophically broken package db. > > Regards, > Bryn. > From bmr at redhat.com Wed Oct 15 10:07:32 2014 From: bmr at redhat.com (Bryn M. Reeves) Date: Wed, 15 Oct 2014 11:07:32 +0100 Subject: [sos-devel] [RFC PATCH v2] sosreport: Check for rpm database corruption during initialization In-Reply-To: <543E456F.4000905@linux.vnet.ibm.com> References: <20141015083856.17516.93227.stgit@aruna-ThinkPad-T420> <20141015095435.GB4051@localhost.localdomain> <543E456F.4000905@linux.vnet.ibm.com> Message-ID: <20141015100731.GC4051@localhost.localdomain> On Wed, Oct 15, 2014 at 03:29:11PM +0530, Aruna Balakrishnaiah wrote: > On Wednesday 15 October 2014 03:24 PM, Bryn M. Reeves wrote: > >If you want to avoid repeated typing of > >'self.package_manager.all_pkgs()' just store it in variable local to > >__init__. > > I stored the policy because calling all_pkgs twice will be calling > the command twice so the timeout will be 600s ( 300s * 2). No it won't: 107 def all_pkgs(self): 108 """ 109 Return a list of all packages. 110 """ 111 if not self.packages: 112 self.packages = self.get_pkg_list() 113 return self.packages The PackageManager class caches the result of get_pkg_list() itself and will only call out to query_command once. > To avoid that stored it as a policy. Will use a local variable instead. It's fine to use a local to improve readability but stuffing it into the policy class just clutters it needlessly. Regards, Bryn. From aruna at linux.vnet.ibm.com Wed Oct 15 10:42:38 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Wed, 15 Oct 2014 16:12:38 +0530 Subject: [sos-devel] [PATCH v3] sosreport: Check for rpm database corruption during initialization Message-ID: <20141015104053.32616.94797.stgit@aruna-ThinkPad-T420> sosreport runs an rpm query to get the package list. If rpmdb is corrupted sosreport hangs for ever hence check for rpmdb consistency before running the rpm query Signed-off-by: Aruna Balakrishnaiah --- Changes from v2: Introduce timeout in shell_out wrapper Changes from v1: Addressed issues of the maintainer Introduce timeout instead of relying on yum. When rpmdb is corrupted rpm commands hangs forever, yum check will result in: yum check error: rpmdb: BDB0113 Thread/process 43828/70366497037824 failed: BDB1507 Thread died in Berkeley DB library error: db5 error(-30973) from dbenv->failchk: BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery error: cannot open Packages index using db5 - (-30973) error: cannot open Packages database in /var/lib/rpm CRITICAL:yum.main: Error: rpmdb open failed sos/policies/__init__.py | 5 +++-- sos/policies/redhat.py | 10 +++++++++- sos/utilities.py | 4 ++-- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/sos/policies/__init__.py b/sos/policies/__init__.py index 9fcbd55..f048e43 100644 --- a/sos/policies/__init__.py +++ b/sos/policies/__init__.py @@ -57,8 +57,9 @@ class PackageManager(object): query_command = None - def __init__(self, query_command=None): + def __init__(self, query_command=None, timeout=180): self.packages = {} + self.timeout = timeout if query_command: self.query_command = query_command @@ -92,7 +93,7 @@ class PackageManager(object): version': 'major.minor.version'}} """ if self.query_command: - pkg_list = shell_out(self.query_command).splitlines() + pkg_list = shell_out(self.query_command, self.timeout).splitlines() for pkg in pkg_list: if '|' not in pkg: continue diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py index 2219246..e5a3f3f 100644 --- a/sos/policies/redhat.py +++ b/sos/policies/redhat.py @@ -21,6 +21,7 @@ import sys from sos.plugins import RedHatPlugin from sos.policies import LinuxPolicy, PackageManager from sos import _sos as _ +from distutils.log import error sys.path.insert(0, "/usr/share/rhn/") try: @@ -46,8 +47,15 @@ class RedHatPolicy(LinuxPolicy): 'rpm -qa --queryformat "%{NAME}|%{VERSION}\\n"') self.valid_subclasses = [RedHatPlugin] + pkgs = self.package_manager.all_pkgs() + + # If rpm query timed out after timeout duration exit + if not pkgs: + error("Could not obtain installed package list") + sys.exit(1) + # handle PATH for UsrMove - if self.package_manager.all_pkgs()['filesystem']['version'][0] == '3': + if pkgs['filesystem']['version'][0] == '3': self.PATH = "/usr/sbin:/usr/bin:/root/bin" else: self.PATH = "/sbin:/bin:/usr/sbin:/usr/bin:/root/bin" diff --git a/sos/utilities.py b/sos/utilities.py index 7e8cd7e..f3eea57 100644 --- a/sos/utilities.py +++ b/sos/utilities.py @@ -178,11 +178,11 @@ def import_module(module_fqname, superclasses=None): return modules -def shell_out(cmd, runat=None): +def shell_out(cmd, timeout=180, runat=None): """Shell out to an external command and return the output or the empty string in case of error. """ - return sos_get_command_output(cmd, runat=runat)['output'] + return sos_get_command_output(cmd, timeout=timeout, runat=runat)['output'] class ImporterHelper(object): From bmr at redhat.com Thu Oct 16 09:53:22 2014 From: bmr at redhat.com (Bryn M. Reeves) Date: Thu, 16 Oct 2014 10:53:22 +0100 Subject: [sos-devel] [PATCH v2] sosreport: Capture IBM Power RAID storage adapter configuration information In-Reply-To: <20140919055201.13489.67666.stgit@aruna-ThinkPad-T420> References: <20140919055201.13489.67666.stgit@aruna-ThinkPad-T420> Message-ID: <20141016095321.GA23995@localhost.localdomain> On Fri, Sep 19, 2014 at 11:23:25AM +0530, Aruna Balakrishnaiah wrote: > sos/plugins/powerpc_iprconfig.py | 116 ++++++++++++++++++++++++++++++++++++++ No need for the 'powerpc_' prefix; iprconfig is sufficiently unique on its own and plugin names with underscores are cumbersome to enter at the command line (we put up with it for things like openstack_* but it's something to avoid where possible). > + plugin_name = 'powerpc_iprconfig' > + > + def check_enabled(self): > + return (self.policy().get_arch() == "ppc64") How is the iprconfig command normally provided? If it's an RPM or Deb package then it would be better to use a package check here as it avoids the need to check /proc/cpuinfo. Alternately if it's not usual to find it packaged you can just test is_executable("iprconfig"). > + def setup(self): > + try: > + with open('/proc/cpuinfo', 'r') as fp: > + contents = fp.read() > + ispSeries = "pSeries" in contents > + isPowerNV = "PowerNV" in contents > + except: > + ispSeries = False > + isPowerNV = False > + > + if ispSeries or isPowerNV: > + self.add_cmd_outputs([ > + "iprconfig -c show-config", > + "iprconfig -c show-alt-config", > + "iprconfig -c show-arrays", > + "iprconfig -c show-jbod-disks", > + "iprconfig -c show-ioas", > + ]) > + > + iprconfig_result = self.call_ext_prog("iprconfig -c show-ioas") > + if not (iprconfig_result['status'] == 0): > + return > + > + iprconfig_output = iprconfig_result['output'] > + devices = [] > + if iprconfig_output: > + for line in iprconfig_output.splitlines(): > + temp = line.split(' ') > + p = re.compile('sg') p is a loop invariant; don't compile it on every iteration (python's magix regex caching will catch this but it's still bad practice). > + # temp[0] holds the device name > + if p.search(temp[0]): > + devices.append(temp[0]) > + > + for device in devices: > + self.add_cmd_output("iprconfig -c show-details %s" % (device,)) > + > + # Look for IBM Power RAID enclosures (iprconfig lists them) > + ipr_result = self.call_ext_prog("iprconfig -c show-config") > + if not (ipr_result['status'] == 0): Why a new variable for the 2nd iprconfig call? Just re-use iprconfig_result (or call them both ipr_result; it's more readable). > + ipr_output = ipr_result['output'] > + if ipr_output: Ditto for ipr_output. > + for line in ipr_output.splitlines(): If you assign ipr_output to another name (say 'show_config') then you can again re-use the ipr_result name here and avoid introducing a 3rd temporary variable for holding iprconfig output. > + if "Enclosure" in line: > + temp = re.split('\s+', line) > + # temp[1] holds the PCI/SCSI location > + pci, scsi = temp[1].split('/') > + altconfig_result = self.call_ext_prog("iprconfig -c " > + "show-alt-config") Why is this inside the loop? Nothing in this command changes so we're just running "iprconfig -c show-alt-config" every time round the loop. It seems you just want one set of output for "show-config" (to find the enclosure devices) and one set of "show-alt-config" to match them up to sg device names. Collect both then iterate over the first checking to see if its address exists in the second. Bonus points for using something efficient to do the lookups (although for the number of iterations we're talking about here it doesn't really matter that much). > + altconfig_output = altconfig_result['output'] > + if altconfig_output: > + for line in altconfig_output.splitlines(): > + if scsi in line: > + temp = line.split(' ') > + # temp[0] holds device name > + self.add_cmd_output("iprconfig -c " > + "query-ses-mode %s" % (temp[0],)) Same thing: this doesn't need to be in a nested loop. Regards, Bryn. From aruna at linux.vnet.ibm.com Thu Oct 16 10:55:36 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Thu, 16 Oct 2014 16:25:36 +0530 Subject: [sos-devel] [PATCH v3] Capture information which helps in better understanding of Message-ID: <20141016105505.10730.89092.stgit@aruna-ThinkPad-T420> IBM Power RAID storage adapter configuration. Since iprconfig is specific to power adding the relevant commands in powerpc plugin. Signed-off-by: Aruna Balakrishnaiah --- Changes from v2: Code cleanup sos/plugins/iprconfig.py | 109 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 sos/plugins/iprconfig.py diff --git a/sos/plugins/iprconfig.py b/sos/plugins/iprconfig.py new file mode 100644 index 0000000..5c54e0d --- /dev/null +++ b/sos/plugins/iprconfig.py @@ -0,0 +1,109 @@ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +# This plugin enables collection of logs for Power systems + +import os +import re +from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin +from sos.utilities import is_executable + +class iprconfig(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): + """IBM Power RAID storage adapter configuration information + """ + + plugin_name = 'iprconfig' + + def check_enabled(self): + return (self.policy().get_arch() == "ppc64") + + def setup(self): + if is_executable("iprconfig"): + self.add_cmd_output([ + "iprconfig -c show-config", + "iprconfig -c show-alt-config", + "iprconfig -c show-arrays", + "iprconfig -c show-jbod-disks", + "iprconfig -c show-ioas", + ]) + + show_ioas = self.call_ext_prog("iprconfig -c show-ioas") + if not (show_ioas['status'] == 0): + return + + devices = [] + if show_ioas['output']: + p = re.compile('sg') + for line in show_ioas['output'].splitlines(): + temp = line.split(' ') + # temp[0] holds the device name + if p.search(temp[0]): + devices.append(temp[0]) + + for device in devices: + self.add_cmd_output("iprconfig -c show-details %s" % (device,)) + + # Look for IBM Power RAID enclosures (iprconfig lists them) + show_config = self.call_ext_prog("iprconfig -c show-config") + if not (show_config['status'] == 0): + return + + if not show_config['output']: + return + +# iprconfig -c show-config +# Name PCI/SCSI Location Description Status +# ------ ------------------------- ------------------------- ----------------- +# 0005:60:00.0/0: PCI-E SAS RAID Adapter Operational +# sda 0005:60:00.0/0:0:0:0 Physical Disk Active +# sdb 0005:60:00.0/0:1:0:0 Physical Disk Active +# sdc 0005:60:00.0/0:2:0:0 Physical Disk Active +# sdd 0005:60:00.0/0:3:0:0 Physical Disk Active +# sde 0005:60:00.0/0:4:0:0 Physical Disk Active +# sdf 0005:60:00.0/0:5:0:0 Physical Disk Active +# 0005:60:00.0/0:8:0:0 Enclosure Active +# 0005:60:00.0/0:8:1:0 Enclosure Active + + altconfig = self.call_ext_prog("iprconfig -c " + "show-alt-config") + if not (altconfig['status'] == 0): + return + + if not altconfig['output']: + return + +# iprconfig -c show-alt-config +# Name Resource Path/Address Vendor Product ID Status +# ------ -------------------------- -------- ---------------- ----------------- +# sg9 0: IBM 57C7001SISIOA Operational +# sg0 0:0:0:0 IBM MBF2300RC Active +# sg1 0:1:0:0 IBM MBF2300RC Active +# sg2 0:2:0:0 IBM HUC106030CSS600 Active +# sg3 0:3:0:0 IBM HUC106030CSS600 Active +# sg4 0:4:0:0 IBM HUC106030CSS600 Active +# sg5 0:5:0:0 IBM HUC106030CSS600 Active +# sg7 0:8:0:0 IBM VSBPD6E4A 3GSAS Active +# sg8 0:8:1:0 IBM VSBPD6E4B 3GSAS Active + + for line in show_config['output'].splitlines(): + if "Enclosure" in line: + temp = re.split('\s+', line) + # temp[1] holds the PCI/SCSI location + pci, scsi = temp[1].split('/') + for line in altconfig['output'].splitlines(): + if scsi in line: + temp = line.split(' ') + # temp[0] holds device name + self.add_cmd_output("iprconfig -c " + "query-ses-mode %s" % (temp[0],)) From aruna at linux.vnet.ibm.com Thu Oct 16 11:00:43 2014 From: aruna at linux.vnet.ibm.com (Aruna Balakrishnaiah) Date: Thu, 16 Oct 2014 16:30:43 +0530 Subject: [sos-devel] [RESEND PATCH v3] sosreport: Capture IBM Power RAID storage adapter configuration information Message-ID: <20141016110015.11503.22082.stgit@aruna-ThinkPad-T420> Capture information which helps in better understanding of IBM Power RAID storage adapter configuration. Since iprconfig is specific to power adding the relevant commands in powerpc plugin. Signed-off-by: Aruna Balakrishnaiah --- Missed subject tag in previous version. Changes from v2: Code cleanup sos/plugins/iprconfig.py | 109 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 sos/plugins/iprconfig.py diff --git a/sos/plugins/iprconfig.py b/sos/plugins/iprconfig.py new file mode 100644 index 0000000..5c54e0d --- /dev/null +++ b/sos/plugins/iprconfig.py @@ -0,0 +1,109 @@ +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +# This plugin enables collection of logs for Power systems + +import os +import re +from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin +from sos.utilities import is_executable + +class iprconfig(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): + """IBM Power RAID storage adapter configuration information + """ + + plugin_name = 'iprconfig' + + def check_enabled(self): + return (self.policy().get_arch() == "ppc64") + + def setup(self): + if is_executable("iprconfig"): + self.add_cmd_output([ + "iprconfig -c show-config", + "iprconfig -c show-alt-config", + "iprconfig -c show-arrays", + "iprconfig -c show-jbod-disks", + "iprconfig -c show-ioas", + ]) + + show_ioas = self.call_ext_prog("iprconfig -c show-ioas") + if not (show_ioas['status'] == 0): + return + + devices = [] + if show_ioas['output']: + p = re.compile('sg') + for line in show_ioas['output'].splitlines(): + temp = line.split(' ') + # temp[0] holds the device name + if p.search(temp[0]): + devices.append(temp[0]) + + for device in devices: + self.add_cmd_output("iprconfig -c show-details %s" % (device,)) + + # Look for IBM Power RAID enclosures (iprconfig lists them) + show_config = self.call_ext_prog("iprconfig -c show-config") + if not (show_config['status'] == 0): + return + + if not show_config['output']: + return + +# iprconfig -c show-config +# Name PCI/SCSI Location Description Status +# ------ ------------------------- ------------------------- ----------------- +# 0005:60:00.0/0: PCI-E SAS RAID Adapter Operational +# sda 0005:60:00.0/0:0:0:0 Physical Disk Active +# sdb 0005:60:00.0/0:1:0:0 Physical Disk Active +# sdc 0005:60:00.0/0:2:0:0 Physical Disk Active +# sdd 0005:60:00.0/0:3:0:0 Physical Disk Active +# sde 0005:60:00.0/0:4:0:0 Physical Disk Active +# sdf 0005:60:00.0/0:5:0:0 Physical Disk Active +# 0005:60:00.0/0:8:0:0 Enclosure Active +# 0005:60:00.0/0:8:1:0 Enclosure Active + + altconfig = self.call_ext_prog("iprconfig -c " + "show-alt-config") + if not (altconfig['status'] == 0): + return + + if not altconfig['output']: + return + +# iprconfig -c show-alt-config +# Name Resource Path/Address Vendor Product ID Status +# ------ -------------------------- -------- ---------------- ----------------- +# sg9 0: IBM 57C7001SISIOA Operational +# sg0 0:0:0:0 IBM MBF2300RC Active +# sg1 0:1:0:0 IBM MBF2300RC Active +# sg2 0:2:0:0 IBM HUC106030CSS600 Active +# sg3 0:3:0:0 IBM HUC106030CSS600 Active +# sg4 0:4:0:0 IBM HUC106030CSS600 Active +# sg5 0:5:0:0 IBM HUC106030CSS600 Active +# sg7 0:8:0:0 IBM VSBPD6E4A 3GSAS Active +# sg8 0:8:1:0 IBM VSBPD6E4B 3GSAS Active + + for line in show_config['output'].splitlines(): + if "Enclosure" in line: + temp = re.split('\s+', line) + # temp[1] holds the PCI/SCSI location + pci, scsi = temp[1].split('/') + for line in altconfig['output'].splitlines(): + if scsi in line: + temp = line.split(' ') + # temp[0] holds device name + self.add_cmd_output("iprconfig -c " + "query-ses-mode %s" % (temp[0],)) From notifications at travis-ci.org Mon Oct 20 08:34:16 2014 From: notifications at travis-ci.org (Travis CI) Date: Mon, 20 Oct 2014 08:34:16 +0000 Subject: [sos-devel] Broken: sosreport/sos#589 (master - 3d4cf03) In-Reply-To: Message-ID: <5444c907c350_2f1ad323144ed@6e698385-21e5-4554-9ea0-cdfb1482fb2c.mail> Build Update for sosreport/sos ------------------------------------- Build: #589 Status: Broken Duration: 59 seconds Commit: 3d4cf03 (master) Author: Bryn M. Reeves Message: [mysql] obtain dbpass from the environment Signed-off-by: Bryn M. Reeves View the changeset: https://github.com/sosreport/sos/compare/874cc7d0889a...3d4cf0365d52 View the full build log and details: https://travis-ci.org/sosreport/sos/builds/38473516 -- You can configure recipients for build notifications in your .travis.yml file. See http://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From notifications at travis-ci.org Mon Oct 20 13:42:35 2014 From: notifications at travis-ci.org (Travis CI) Date: Mon, 20 Oct 2014 13:42:35 +0000 Subject: [sos-devel] Fixed: sosreport/sos#590 (master - 6ce5021) In-Reply-To: Message-ID: <5445114a8e558_2178dbb24375f6@f6bc1986-73e5-49e9-b23b-fd64fba7e039.mail> Build Update for sosreport/sos ------------------------------------- Build: #590 Status: Fixed Duration: 1 minute and 44 seconds Commit: 6ce5021 (master) Author: Bryn M. Reeves Message: [mysql] fix pep8 violations The previous commit had a couple of pep8 errors that were fixed in the working tree but not added to the commit; fix them. Signed-off-by: Bryn M. Reeves View the changeset: https://github.com/sosreport/sos/compare/3d4cf0365d52...6ce502113f55 View the full build log and details: https://travis-ci.org/sosreport/sos/builds/38498087 -- You can configure recipients for build notifications in your .travis.yml file. See http://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: