Colin Ian King
Colin Ian King
the install.sh script currently does not enable MPI and so when it is run with mpiexec it just runs on a single thread. A possible fix is: ``` tar -zxvf...
dd has a nice status=LEVEL option that shows the progress of dd. I think godd should use this ;-)
err is not being used, so remove it. Signed-off-by: Colin Ian King
alsaloop/pcmjob.c, pcmjob_start: the comparison loop->play->channels == loop->play->channels looks dubious to me, shouldn't it be oop->play->channels == loop->capt->channels if (loop->play->access == loop->capt->access && loop->play->format == loop->capt->format && loop->play->rate == loop->capt->rate &&...
…message BugLink: https://bugs.launchpad.net/bugs/2045910 Add a naïve check to see if fwts is running inside a snap by checking for the $SNAP environment variable being set. Add a --devnode help error...
Sync up with latest stress-ng, add exponential math, fractal generator, logarithmic math, power math, tigonometric math, jpeg compression, bitonicsort and radixsort stressors.
in qat_hw_sha3.c, in function qat_sha3_session_data_init there is a leak of session_data when the call to OPENSSL_zalloc fails: ``` session_data = OPENSSL_zalloc(sizeof(CpaCySymSessionSetupData)); if (NULL == session_data) { WARN("session setup data Malloc...
Hi, I'm trying to get QAT engine 1.4 packaged for Debian Sid (aka Unstable) and I'm hitting an issue with missing headers, these are included using: `#include "crypto_mb/sm3.h"` ..the build...
Hi, I'm working on some debian packaging for QAT_Engine and discovered that in the configure script there is PCI H/W detection that uses lspci to detect if a feature should...
In function qat_sha3_update() in source qat_hw_sha3.c there is a division by zero on the corner case where qat_get_sha3_data_size() returns zero when using an unsupported hash algorithm: 1. The function can...