1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
Name: srptools
Version: 1.0.2
Release: 1%{?dist}
Summary: Tools for SRP/IB
Group: Applications/System
License: GPL/BSD
Url: http://www.openfabrics.org/
Source: http://www.openfabrics.org/downloads/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
In conjunction with the kernel ib_srp driver, srptools allows you to
discover and use SCSI devices via the SCSI RDMA Protocol over InfiniBand.
%prep
rm -rf $RPM_BUILD_ROOT
%setup -q -n %{name}-%{version}
%build
%configure
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
%clean
rm -rf $RPM_BUILD_ROOT
%post
if [ $1 = 1 ]; then # 1 : This package is being installed for the first time
for ib_conf_file in /etc/infiniband/openib.conf /etc/rdma/rdma.conf; do
if [ -e $ib_conf_file ] &&
! grep -q '^SRPHA_ENABLE=' $ib_conf_file; then
cat <<EOF >>$ib_conf_file
# Enable SRP High Availability daemon
SRPHA_ENABLE=no
SRP_DAEMON_ENABLE=no
EOF
fi
done
if [ -e /sbin/chkconfig ]; then
/sbin/chkconfig --add srpd
elif [ -e /usr/sbin/update-rc.d ]; then
/usr/sbin/update-rc.d srpd defaults
else
/usr/lib/lsb/install_initd /etc/init.d/srpd
fi
fi
if type systemctl >/dev/null 2>&1; then
systemctl --system daemon-reload
fi
if [ $1 != 1 ]; then
/etc/init.d/srpd condrestart
fi
%preun
if [ $1 = 0 ]; then
/etc/init.d/srpd stop
if [ -e /sbin/chkconfig ]; then
/sbin/chkconfig --del srpd
elif [ -e /usr/sbin/update-rc.d ]; then
/usr/sbin/update-rc.d -f srpd remove
else
/usr/lib/lsb/remove_initd /etc/init.d/srpd
fi
fi
%files
%defattr(-,root,root)
%config(noreplace) /etc/srp_daemon.conf
%config(noreplace) %{_sysconfdir}/logrotate.d/srp_daemon
%config(noreplace) %{_sysconfdir}/rsyslog.d/srp_daemon.conf
%{_sysconfdir}/init.d/srpd
%{_sbindir}/ibsrpdm
%{_sbindir}/run_srp_daemon
%{_sbindir}/srp_daemon
%{_sbindir}/srp_daemon.sh
%{_mandir}/man1/ibsrpdm.1*
%{_mandir}/man1/srp_daemon.1*
%doc README NEWS ChangeLog COPYING
%changelog
* Thu Feb 20 2014 Bart Van Assche <bvanassche@acm.org> - 1.0.2
- Added support for specifying tl_retry_count in srp_daemon.conf. Changed
default behavior for tl_retry_timeout parameter from setting it to 2 into
leaving it at its default value (7). This makes srp_daemon again compatible
with the SRP initiator driver from kernel 3.12 and before.
* Mon Feb 03 2014 Bart Van Assche <bvanassche@acm.org> - 1.0.1
- Make process uniqueness check work.
- Unsubscribe from subnet manager for traps before exiting.
- Added support for the comp_vector and queue_size configuration file options.
* Tue Dec 24 2013 Sagi Grimberg and Bart Van Assche - 1.0.0
- srp_daemon keeps working even if the LID changes of the port it is using to
scan the fabric or if a P_Key change occurs.
- Added P_Key support to srp_daemon and ibsrpdm.
- Fixed month in srp_daemon.log (OFED bug \#2281). srp_daemon now uses syslog
and logrotate for logging.
- srp_daemon is now only started for InfiniBand ports. It is no longer
attempted to start srp_daemon on Ethernet ports.
- Added support for specifying the tl_retry_count parameter. By default use
tl_retry_count=2.
- Allow srp_daemon to be started without configuration file.
- Fixed a memory leak in srp_daemon that was triggered once during every fabric
rescan.
- Reduced memory consumption of the srp_daemon process.
- MAD transaction ID 0 is skipped after 2**32 rescans.
- Installation: SRPHA_ENABLE=no / SRP_DAEMON_ENABLE=no is only added to
/etc/infiniband/openibd.conf if these variables did not yet exist in that
file.
- Changed range of the srp_daemon and ibsrpdm exit codes from 0..127 into 0..1.
- Changed ibsrpdm such that it uses the new umad P_Key ABI. Running ibsrpdm
does no longer cause a warning to be logged ("user_mad: process ibsrpdm did
not enable P_Key index support / user_mad:
Documentation/infiniband/user_mad.txt has info on the new ABI").
- Fixed spelling of several help texts and diagnostic messages.
* Wed Aug 22 2007 Vladimir Sokolovsky <vlad@mellanox.co.il>
- Added srp_daemon.conf
* Tue Sep 5 2006 Vladimir Sokolovsky <vlad@mellanox.co.il>
- Added srp_daemon and scripts to execute this daemon
* Tue Mar 21 2006 Roland Dreier <rdreier@cisco.com> - 0.0.4-1
- Initial attempt at a working spec file
|