Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef CCISS_IOCTLH
|
|
#define CCISS_IOCTLH
|
|
|
|
#include <uapi/linux/cciss_ioctl.h>
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
/* 32 bit compatible ioctl structs */
|
|
typedef struct _IOCTL32_Command_struct {
|
|
LUNAddr_struct LUN_info;
|
|
RequestBlock_struct Request;
|
|
ErrorInfo_struct error_info;
|
|
WORD buf_size; /* size in bytes of the buf */
|
|
__u32 buf; /* 32 bit pointer to data buffer */
|
|
} IOCTL32_Command_struct;
|
|
|
|
typedef struct _BIG_IOCTL32_Command_struct {
|
|
LUNAddr_struct LUN_info;
|
|
RequestBlock_struct Request;
|
|
ErrorInfo_struct error_info;
|
|
DWORD malloc_size; /* < MAX_KMALLOC_SIZE in cciss.c */
|
|
DWORD buf_size; /* size in bytes of the buf */
|
|
/* < malloc_size * MAXSGENTRIES */
|
|
__u32 buf; /* 32 bit pointer to data buffer */
|
|
} BIG_IOCTL32_Command_struct;
|
|
|
|
#define CCISS_PASSTHRU32 _IOWR(CCISS_IOC_MAGIC, 11, IOCTL32_Command_struct)
|
|
#define CCISS_BIG_PASSTHRU32 _IOWR(CCISS_IOC_MAGIC, 18, BIG_IOCTL32_Command_struct)
|
|
|
|
#endif /* CONFIG_COMPAT */
|
|
#endif
|