sos/sos-bz673244-add-infiniband-plugin.patch
Bryn M. Reeves 13178ca5fa Update sos to 2.2-29
This synchronises sos in master to the current upstream sos-2.2 branch and
includes all patches from RHEL6 not already present.
2012-06-22 12:16:21 +01:00

37 lines
1.4 KiB
Diff

diff -up sos-2.2/sos/plugins/infiniband.py.orig sos-2.2/sos/plugins/infiniband.py
--- sos-2.2/sos/plugins/infiniband.py.orig 2011-08-12 20:51:28.450712897 +0100
+++ sos-2.2/sos/plugins/infiniband.py 2011-08-12 21:02:17.143789131 +0100
@@ -0,0 +1,32 @@
+## Copyright (C) 2011 Red Hat
+
+### 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.
+
+import sos.plugintools
+
+class infiniband(sos.plugintools.PluginBase):
+ """Infiniband related information
+ """
+
+ def checkenabled(self):
+ if self.cInfo["policy"].pkgByName("libibverbs-utils"):
+ return True
+ return False
+
+ def setup(self):
+ self.collectExtOutput("/usr/bin/ibv_devices")
+ self.collectExtOutput("/usr/bin/ibv_devinfo")
+ return
+