Bart Van Assche
Bart Van Assche
Hi Ronnie, have you considered to use the rdma_rxe driver and LIO to set up an iSER target stack?
The README was outdated. Please take a look at https://github.com/sahlberg/libiscsi/blob/master/README.md
Thanks for having reported this. This should have been fixed.
Same problem for https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=51529.
Is `set -o errexit` equivalent to `set -e`? Do others have a preference for one of these two alternatives? I slightly prefer `set -e`. `set -e` already occurs in the...
How about using this alternative for ignoring an error status: ``` if command_that_may_fail; then :; fi ```
> 1- Avoid the instability of soft-roce and soft-iwarp (soft-iwarp is more stable now). I haven't encountered any stability issues with the soft-iWARP driver in the past few years. Did...
What is the kernel version that triggered this failure (`uname -a`)?
That's not the version number of an upstream kernel. Please report issues encountered with Red Hat kernels to Red Hat.
Thanks for having taken the time to provide a detailed reply. However, it is not clear to me why `[ ... ] || return $?` is considered bad style? My...