⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ioctl32.h

📁 是关于linux2.5.1的完全源码
💻 H
字号:
/* *   32bit -> 64bit ioctl helpers *   Copyright (c) by Takashi Iwai <tiwai@suse.de> * *   This program is free software; you can redistribute it and/or modify *   it under the terms of the GNU General Public License as published by *   the Free Software Foundation; either version 2 of the License, or *   (at your option) any later version. * *   This program is distributed in the hope that it will be useful, *   but WITHOUT ANY WARRANTY; without even the implied warranty of *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *   GNU General Public License for more details. * *   You should have received a copy of the GNU General Public License *   along with this program; if not, write to the Free Software *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA * * * This file registers the converters from 32-bit ioctls to 64-bit ones. * The converter assumes that a 32-bit user-pointer can be casted by A(x) * macro to a valid 64-bit pointer which is accessible via copy_from/to_user. * */#ifndef __ALSA_IOCTL32_H#define __ALSA_IOCTL32_H#define TO_PTR(x)  A(x)#define COPY(x)  (dst->x = src->x)#define CPTR(x)	 (dst->x = (typeof(dst->x))A(src->x))#define convert_from_32(type, dstp, srcp)\{\	struct sndrv_##type *dst = dstp;\	struct sndrv_##type##32 *src = srcp;\	CVT_##sndrv_##type();\}#define convert_to_32(type, dstp, srcp)\{\	struct sndrv_##type *src = srcp;\	struct sndrv_##type##32 *dst = dstp;\	CVT_##sndrv_##type();\}#define DEFINE_ALSA_IOCTL(type) \static int snd_ioctl32_##type(unsigned int fd, unsigned int cmd, unsigned long arg, struct file *file)\{\	struct sndrv_##type##32 data32;\	struct sndrv_##type data;\	int err;\	if (copy_from_user(&data32, (void*)arg, sizeof(data32)))\		return -EFAULT;\	memset(&data, 0, sizeof(data));\	convert_from_32(type, &data, &data32);\	err = file->f_op->ioctl(file->f_dentry->d_inode, file, cmd, (unsigned long)&data);\	if (err < 0)\		return err;\	if (cmd & (_IOC_READ << _IOC_DIRSHIFT)) {\		convert_to_32(type, &data32, &data);\		if (copy_to_user((void*)arg, &data32, sizeof(data32)))\			return -EFAULT;\	}\	return err;\}struct ioctl32_mapper {	unsigned int cmd;	int (*handler)(unsigned int, unsigned int, unsigned long, struct file * filp);	int registered;};int snd_ioctl32_register(struct ioctl32_mapper *mappers);void snd_ioctl32_unregister(struct ioctl32_mapper *mappers);#endif /* __ALSA_IOCTL32_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -