Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[media] media/dvb-core: Race condition when writing to CAM
It started with a sporadic message in syslog: "CAM tried to send a buffer larger than the ecount size" This message is not the fault itself, but a consecutive fault, after a read error from the CAM. This happens only on several CAMs, several hardware, and of course sporadic. It is a consecutive fault, if the last read from the CAM did fail. I guess this will not happen on all CAMs, but at least it did on mine. There was a write error to the CAM and during the re-initialization procedure, the CAM finished the last read, although it got a RS. The write error to the CAM happened because a race condition between HC write, checking DA and FR. This patch added an additional check for DA(RE), just after checking FR. It is important to read the CAMs status register again, to give the CAM the necessary time for a proper reaction to HC. Please note the description within the source code (patch below). [[email protected]: make checkpatch happy] Signed-off-by: Jasmin jessich <[email protected]> Tested-by: Ralph Metzler <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
- Loading branch information