Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9df8a3f authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Greg Kroah-Hartman
Browse files

media: cx25821: Fix a bug when reallocating some dma memory



[ Upstream commit b2de3643c5024fc4fd128ba7767c7fb8b714bea7 ]

This function looks like a realloc.

However, if 'risc->cpu != NULL', the memory will be freed, but never
reallocated with the bigger 'size'.
Explicitly set 'risc->cpu' to NULL, so that the reallocation is
correctly performed a few lines below.

[hverkuil: NULL != risc->cpu -> risc->cpu]

Fixes: 5ede94c7 ("[media] cx25821: remove bogus btcx_risc dependency)
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent e601efd0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -990,8 +990,10 @@ int cx25821_riscmem_alloc(struct pci_dev *pci,
	__le32 *cpu;
	dma_addr_t dma = 0;

	if (NULL != risc->cpu && risc->size < size)
	if (risc->cpu && risc->size < size) {
		pci_free_consistent(pci, risc->size, risc->cpu, risc->dma);
		risc->cpu = NULL;
	}
	if (NULL == risc->cpu) {
		cpu = pci_zalloc_consistent(pci, size, &dma);
		if (NULL == cpu)