* This patch set is based on: [PATCH V3 0/9] Add new disk status: STATUS_FREE
* The new hpsa plugin is based on HP binary tool -- hpssacli which could be downloaded from: http://downloads.linux.hp.com/SDR/project/spp/ * This patch set introduced these methods support to hpsa plugin: * lsm.Client.systems() * lsm.Client.pools() * lsm.Client.volumes() * lsm.Client.disks() # With Disk.STATUS_FREE support also. * lsm.Client.volume_raid_info() * This patch set only coded and tested on 2 servers(Tony's and mine), a automatic tests is running in our internal lab to test this plugin on more HP SmartArray cards, will provide subsequent patch if found any bug. Gris Ge (7): New plugin: HP SmartArray Plugin. HP SmartArray Plugin: Add systems() support. HP SmartArray Plugin: Add lsm.Client.pools() support. HP SmartArray Plugin: Add lsm.Client.pools() support. HP SmartArray Plugin: Add lsm.Client.disks() support. HP SmartArray Plugin: Add lsm.Client.volume_raid_info() support. Git config: Nicer diff output for python scripts. .gitattributes | 1 + config/Makefile.am | 5 + config/pluginconf.d/hpsa.conf | 1 + configure.ac | 14 ++ doc/man/Makefile.am | 4 + doc/man/hpsa_lsmplugin.1.in | 50 ++++ packaging/libstoragemgmt.spec.in | 39 +++ plugin/Makefile.am | 2 +- plugin/hpsa/Makefile.am | 8 + plugin/hpsa/__init__.py | 1 + plugin/hpsa/hpsa.py | 512 +++++++++++++++++++++++++++++++++++++++ plugin/hpsa/hpsa_lsmplugin | 37 +++ plugin/hpsa/utils.py | 56 +++++ 13 files changed, 729 insertions(+), 1 deletion(-) create mode 100644 .gitattributes create mode 100644 config/pluginconf.d/hpsa.conf create mode 100644 doc/man/hpsa_lsmplugin.1.in create mode 100644 plugin/hpsa/Makefile.am create mode 100644 plugin/hpsa/__init__.py create mode 100644 plugin/hpsa/hpsa.py create mode 100755 plugin/hpsa/hpsa_lsmplugin create mode 100644 plugin/hpsa/utils.py -- 1.8.3.1 ------------------------------------------------------------------------------ Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ Libstoragemgmt-devel mailing list Libstoragemgmt-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/libstoragemgmt-devel