search for: qat

Displaying 20 results from an estimated 35 matches for "qat".

Did you mean: at
2018 Jan 22
2
Inconsistent rank in qr()
...n the fact column pivoting is activated in the called lapack routine (dgeqp3) and diagonal term in qr matrix are put in decreasing order (according to their absolute values). Serguei. How to reproduce: a=diag(2) a[2,2]=0 qaf=qr(a, LAPACK=FALSE) qaf$rank # shows 1. OK it's the true rank value qat=qr(a, LAPACK=TRUE) qat$rank #shows 2. Bad, it's not the expected value.
2016 Dec 01
1
[PATCH v4 1/1] crypto: add virtio-crypto driver
...her request should be freed > by skcipher_request_free(): zeroize and free request data structure. > > I need to use kzfree() for key as well. I'll also check other stuffs. Thanks. > > > > + > > > + spin_lock(&vcrypto->ctrl_lock); > > > > The QAT accelerator driver doesn't spin while talking to the device in > > virtio_crypto_alg_ablkcipher_init_session(). I didn't find any other > > driver examples in the kernel tree, but this function seems like a > > weakness in the virtio-crypto device. > > > The con...
2016 Dec 01
1
[PATCH v4 1/1] crypto: add virtio-crypto driver
...her request should be freed > by skcipher_request_free(): zeroize and free request data structure. > > I need to use kzfree() for key as well. I'll also check other stuffs. Thanks. > > > > + > > > + spin_lock(&vcrypto->ctrl_lock); > > > > The QAT accelerator driver doesn't spin while talking to the device in > > virtio_crypto_alg_ablkcipher_init_session(). I didn't find any other > > driver examples in the kernel tree, but this function seems like a > > weakness in the virtio-crypto device. > > > The con...
2010 Jun 14
0
[LLVMdev] Patch to remove Warnings
Hi all, Speaking about warnings, we're seeing the following warnings when building LLVM/Clang on FreeBSD/amd64. When using GCC: http://amd64-clang-bot.qat.freebsd.org:8010/builders/freebsd-clang-amd64/builds/20/steps/compile-llvm.1/logs/warnings When using Clang: http://amd64-clang-bot.qat.freebsd.org:8010/builders/freebsd-clang-amd64/builds/20/steps/compile-llvm.2/logs/warnings -- Ed Schouten <ed at 80386.nl> WWW: http://80386.nl/ ------...
2010 Jun 14
1
[LLVMdev] Patch to remove Warnings
On Jun 14, 2010, at 2:26 AM, Ed Schouten wrote: > Hi all, > > Speaking about warnings, we're seeing the following warnings when > building LLVM/Clang on FreeBSD/amd64. > > When using GCC: > http://amd64-clang-bot.qat.freebsd.org:8010/builders/freebsd-clang-amd64/builds/20/steps/compile-llvm.1/logs/warnings > > When using Clang: > http://amd64-clang-bot.qat.freebsd.org:8010/builders/freebsd-clang-amd64/builds/20/steps/compile-llvm.2/logs/warnings I fixed a few of these. I don't know how to fix t...
2016 Nov 30
3
[PATCH v4 1/1] crypto: add virtio-crypto driver
...+ > + if (!cipher_key) > + return -ENOMEM; > + > + memcpy(cipher_key, key, keylen); Are there any rules on handling key material in the kernel? This buffer is just kfreed later. Do you need to zero it out before freeing it? > + > + spin_lock(&vcrypto->ctrl_lock); The QAT accelerator driver doesn't spin while talking to the device in virtio_crypto_alg_ablkcipher_init_session(). I didn't find any other driver examples in the kernel tree, but this function seems like a weakness in the virtio-crypto device. While QEMU is servicing the create session command t...
2016 Nov 30
3
[PATCH v4 1/1] crypto: add virtio-crypto driver
...+ > + if (!cipher_key) > + return -ENOMEM; > + > + memcpy(cipher_key, key, keylen); Are there any rules on handling key material in the kernel? This buffer is just kfreed later. Do you need to zero it out before freeing it? > + > + spin_lock(&vcrypto->ctrl_lock); The QAT accelerator driver doesn't spin while talking to the device in virtio_crypto_alg_ablkcipher_init_session(). I didn't find any other driver examples in the kernel tree, but this function seems like a weakness in the virtio-crypto device. While QEMU is servicing the create session command t...
2018 Jan 22
3
Inconsistent rank in qr()
...nal term in qr matrix are put in decreasing order (according to their absolute values). >> >> Serguei. >> >> How to reproduce: >> >> a=diag(2) >> a[2,2]=0 >> qaf=qr(a, LAPACK=FALSE) >> qaf$rank # shows 1. OK it's the true rank value >> qat=qr(a, LAPACK=TRUE) >> qat$rank #shows 2. Bad, it's not the expected value. >> >> ______________________________________________ >> R-devel at r-project.org mailing list >> https://stat.ethz.ch/mailman/listinfo/r-devel > -- Serguei Sokol Ingenieur de recherche...
2010 Jun 12
6
[LLVMdev] Patch to remove Warnings
Dear all, When I tried to compile LLVM, I found these annoying warnings. I actually found several other, but this patch deals with the trivial ones Regards, Rizky Herucakra -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100612/d2171b49/attachment.html> -------------- next part -------------- A
2016 Dec 01
0
[PATCH v4 1/1] crypto: add virtio-crypto driver
...stions. For kernel crypto core, each cipher request should be freed by skcipher_request_free(): zeroize and free request data structure. I need to use kzfree() for key as well. I'll also check other stuffs. Thanks. > > + > > + spin_lock(&vcrypto->ctrl_lock); > > The QAT accelerator driver doesn't spin while talking to the device in > virtio_crypto_alg_ablkcipher_init_session(). I didn't find any other > driver examples in the kernel tree, but this function seems like a > weakness in the virtio-crypto device. > The control queues of virtio-net...
2018 Jan 23
1
Inconsistent rank in qr()
...i. > >>> > >>> How to reproduce: > >>> > >>> a=diag(2) > >>> a[2,2]=0 > >>> qaf=qr(a, LAPACK=FALSE) > >>> qaf$rank # shows 1. OK it's the true rank value > >>> qat=qr(a, LAPACK=TRUE) > >>> qat$rank #shows 2. Bad, it's not the expected value. > >>> > > > -- > > Serguei Sokol > > Ingenieur de recherche INRA > > > Cellule math?matique > > LISBP, INSA/INRA UMR 792,...
2018 Jan 22
0
Inconsistent rank in qr()
...apack routine (dgeqp3) > and diagonal term in qr matrix are put in decreasing order (according to their absolute values). > > Serguei. > > How to reproduce: > > a=diag(2) > a[2,2]=0 > qaf=qr(a, LAPACK=FALSE) > qaf$rank # shows 1. OK it's the true rank value > qat=qr(a, LAPACK=TRUE) > qat$rank #shows 2. Bad, it's not the expected value. > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel
2018 Jan 23
0
Inconsistent rank in qr()
...es). >>> >>> Serguei. >>> >>> How to reproduce: >>> >>> a=diag(2) >>> a[2,2]=0 >>> qaf=qr(a, LAPACK=FALSE) >>> qaf$rank # shows 1. OK it's the true rank value >>> qat=qr(a, LAPACK=TRUE) >>> qat$rank #shows 2. Bad, it's not the expected value. >>> > -- > Serguei Sokol > Ingenieur de recherche INRA > Cellule math?matique > LISBP, INSA/INRA UMR 792, INSA/CNRS UMR 5504 > 135 Avenue de Rangue...
2022 Oct 04
40
[Bug 3480] New: tracking bug for openssh-9.1
https://bugzilla.mindrot.org/show_bug.cgi?id=3480 Bug ID: 3480 Summary: tracking bug for openssh-9.1 Product: Portable OpenSSH Version: -current Hardware: Other OS: Linux Status: NEW Keywords: meta Severity: enhancement Priority: P5 Component: Miscellaneous Assignee:
2016 Nov 29
2
[PATCH v4 0/1] virtio-crypto: add Linux driver
...ule, which is similar with other virtio devices, such as virtio-net, virtio-input etc. 3) virtio_crypto_mgr.c is used to manage the virtio crypto devices in the system. We support up to 32 virtio-crypto devices currently. I use a global list to store the virtio crypto devices which refer to Intel QAT driver. Meanwhile, the file includs the functions of add/del/search/start/stop for virtio crypto devices. 4) virtio_crypto_common.h is a private header file for virtio crypto driver, includes structure definations, and function declarations. 5) virtio_crypto_algs.c is the realization of algs base...
2016 Nov 29
2
[PATCH v4 0/1] virtio-crypto: add Linux driver
...ule, which is similar with other virtio devices, such as virtio-net, virtio-input etc. 3) virtio_crypto_mgr.c is used to manage the virtio crypto devices in the system. We support up to 32 virtio-crypto devices currently. I use a global list to store the virtio crypto devices which refer to Intel QAT driver. Meanwhile, the file includs the functions of add/del/search/start/stop for virtio crypto devices. 4) virtio_crypto_common.h is a private header file for virtio crypto driver, includes structure definations, and function declarations. 5) virtio_crypto_algs.c is the realization of algs base...
2016 Nov 22
5
[PATCH v2 0/2] virtio-crypto: add Linux driver
...ule, which is similar with other virtio devices, such as virtio-net, virtio-input etc. 3) virtio_crypto_mgr.c is used to manage the virtio crypto devices in the system. We support up to 32 virtio-crypto devices currently. I use a global list to store the virtio crypto devices which refer to Intel QAT driver. Meanwhile, the file includs the functions of add/del/search/start/stop for virtio crypto devices. 4) virtio_crypto_common.h is a private header file for virtio crypto driver, includes structure definations, and function declarations. 5) virtio_crypto_algs.c is the realization of algs base...
2016 Nov 22
5
[PATCH v2 0/2] virtio-crypto: add Linux driver
...ule, which is similar with other virtio devices, such as virtio-net, virtio-input etc. 3) virtio_crypto_mgr.c is used to manage the virtio crypto devices in the system. We support up to 32 virtio-crypto devices currently. I use a global list to store the virtio crypto devices which refer to Intel QAT driver. Meanwhile, the file includs the functions of add/del/search/start/stop for virtio crypto devices. 4) virtio_crypto_common.h is a private header file for virtio crypto driver, includes structure definations, and function declarations. 5) virtio_crypto_algs.c is the realization of algs base...
2013 May 12
3
FreeBSD Quarterly Status Report, January-March 2013
...ving member of the team. Mark had spent many long hours refactoring and documenting the portbuild software to ensure that pointyhat services could be restored. After a security review, redports.org was turned back on, restoring Tinderbox services to contributors, along with post commit QATs. In addition, pointyhat infrastructure had also undergone a review and work begain on restoring the package build system. Erwin Lansing (erwin) and Martin Wilke (miwi) took on the principle roles of getting the portbuild software installed and running on pointyhat. As a result of a...
2016 Dec 15
2
[PATCH v8 0/1] virtio-crypto: add Linux driver
...ule, which is similar with other virtio devices, such as virtio-net, virtio-input etc. 3) virtio_crypto_mgr.c is used to manage the virtio crypto devices in the system. We support up to 32 virtio-crypto devices currently. I use a global list to store the virtio crypto devices which refer to Intel QAT driver. Meanwhile, the file includs the functions of add/del/search/start/stop for virtio crypto devices. 4) virtio_crypto_common.h is a private header file for virtio crypto driver, includes structure definations, and function declarations. 5) virtio_crypto_algs.c is the realization of algs base...