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

📄 ioctl.c

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 C
字号:
/* *  ioctl.c * *  Copyright (C) 1995, 1996 by Volker Lendecke *  Copyright (C) 1997 by Volker Lendecke * *  Please add a note about your changes to smbfs in the ChangeLog file. */#include <linux/errno.h>#include <linux/fs.h>#include <linux/ioctl.h>#include <linux/sched.h>#include <linux/mm.h>#include <linux/highuid.h>#include <linux/smb_fs.h>#include <linux/smb_mount.h>#include <asm/uaccess.h>intsmb_ioctl(struct inode *inode, struct file *filp,	  unsigned int cmd, unsigned long arg){	struct smb_sb_info *server = SMB_SERVER(inode);	struct smb_conn_opt opt;	int result = -EINVAL;	switch (cmd) {	case SMB_IOC_GETMOUNTUID:		result = put_user(NEW_TO_OLD_UID(server->mnt->mounted_uid),				  (uid16_t *) arg);		break;	case SMB_IOC_GETMOUNTUID32:		result = put_user(server->mnt->mounted_uid, (uid_t *) arg);		break;	case SMB_IOC_NEWCONN:		/* require an argument == the mount data, else it is EINVAL */		if (!arg)			break;		result = -EFAULT;		if (!copy_from_user(&opt, (void *)arg, sizeof(opt)))			result = smb_newconn(server, &opt);		break;	default:	}	return result;}

⌨️ 快捷键说明

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