Re: [PATCH v2] drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init

2022-06-11 Thread Chia-I Wu
On Thu, Jun 2, 2022 at 3:42 AM Miaoqian Lin wrote: > > Since drm_prime_pages_to_sg() function return error pointers. > The drm_gem_shmem_get_sg_table() function returns error pointers too. > Using IS_ERR() to check the return value to fix this. > > Fixes: 2f2aa13724d5 ("drm/virtio: move

Re: [GIT PULL] virtio,vdpa: fixes

2022-06-11 Thread pr-tracker-bot
The pull request you sent on Sat, 11 Jun 2022 03:48:48 -0400: > https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/abe71eb32f3051f461d2975c674c0857549d0b93 Thank you! -- Deet-doot-dot, I am a

ICITS'2023 | Cusco, Peru | Deadline: September 4

2022-06-11 Thread ICITS-2023
* Google Scholar H5-Index = 13 * Indexed in SCOPUS, WOS, DBLP, etc. ICITS'23 - The 6th International Conference on Information Technology & Systems Cusco, Peru, 8 - 10 February

[GIT PULL] virtio,vdpa: fixes

2022-06-11 Thread Michael S. Tsirkin
The following changes since commit f2906aa863381afb0015a9eb7fefad885d4e5a56: Linux 5.19-rc1 (2022-06-05 17:18:54 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus for you to fetch changes up to

[PATCH v10 1/1] crypto: Introduce RSA algorithm

2022-06-11 Thread zhenwei pi
There are two parts in this patch: 1, support akcipher service by cryptodev-builtin driver 2, virtio-crypto driver supports akcipher service In principle, we should separate this into two patches, to avoid compiling error, merge them into one. Then virtio-crypto gets request from guest side, and

[PATCH v10 0/1] Introduce akcipher service for virtio-crypto

2022-06-11 Thread zhenwei pi
v9 - v10: - Minor fix of coding style by v9. v8 - v9: - Fix compiling error reported by clang-13/14: opt->hash_alg = cryptodev_builtin_get_rsa_hash_algo(); this leads implicit convertion from 'int' to 'uint32'. 'if (opt->hash_alg < 0)' is always false. Thanks to Philippe Mathieu-Daudé. v7