Patch "staging: vchiq: Fix bulk transfers on 64-bit builds" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    staging: vchiq: Fix bulk transfers on 64-bit builds

to the 5.10-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     staging-vchiq-fix-bulk-transfers-on-64-bit-builds.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 2cb62d9fcd2fb1edd5adf8e0bc3849996cf0f0e8
Author: Phil Elwell <phil@xxxxxxxxxxxxxxx>
Date:   Tue Jan 5 16:20:29 2021 +0000

    staging: vchiq: Fix bulk transfers on 64-bit builds
    
    [ Upstream commit 88753cc19f087abe0d39644b844e67a59cfb5a3d ]
    
    The recent change to the bulk transfer compat function missed the fact
    the relevant ioctl command is VCHIQ_IOC_QUEUE_BULK_TRANSMIT32, not
    VCHIQ_IOC_QUEUE_BULK_TRANSMIT, as any attempt to send a bulk block
    to the VPU would have shown.
    
    Fixes: a4367cd2b231 ("staging: vchiq: convert compat bulk transfer")
    Acked-by: Arnd Bergmann <arnd@xxxxxxxx>
    Acked-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx>
    Signed-off-by: Phil Elwell <phil@xxxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20210105162030.1415213-3-phil@xxxxxxxxxxxxxxx
    Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
index 5bc9b394212b8..3d378da119e7a 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
@@ -1714,7 +1714,7 @@ vchiq_compat_ioctl_queue_bulk(struct file *file,
 {
 	struct vchiq_queue_bulk_transfer32 args32;
 	struct vchiq_queue_bulk_transfer args;
-	enum vchiq_bulk_dir dir = (cmd == VCHIQ_IOC_QUEUE_BULK_TRANSMIT) ?
+	enum vchiq_bulk_dir dir = (cmd == VCHIQ_IOC_QUEUE_BULK_TRANSMIT32) ?
 				  VCHIQ_BULK_TRANSMIT : VCHIQ_BULK_RECEIVE;
 
 	if (copy_from_user(&args32, argp, sizeof(args32)))



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux