forked from Minki/linux
fs/ntfs3: Remove fat ioctl's from ntfs3 driver for now
For some reason we have FAT ioctl calls. Even old ntfs driver did not use these. We should not use these because it his hard to get things out of kernel when they are upstream. That's why we remove these for now. More discussion is needed what ioctl should be implemented and what is important. Signed-off-by: Kari Argillander <kari.argillander@gmail.com> Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
e8b8e97f91
commit
a97131c29c
@ -12,7 +12,6 @@
|
|||||||
#include <linux/compat.h>
|
#include <linux/compat.h>
|
||||||
#include <linux/falloc.h>
|
#include <linux/falloc.h>
|
||||||
#include <linux/fiemap.h>
|
#include <linux/fiemap.h>
|
||||||
#include <linux/msdos_fs.h> /* FAT_IOCTL_XXX */
|
|
||||||
#include <linux/nls.h>
|
#include <linux/nls.h>
|
||||||
|
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
@ -52,15 +51,8 @@ static long ntfs_ioctl(struct file *filp, u32 cmd, unsigned long arg)
|
|||||||
{
|
{
|
||||||
struct inode *inode = file_inode(filp);
|
struct inode *inode = file_inode(filp);
|
||||||
struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
|
struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
|
||||||
u32 __user *user_attr = (u32 __user *)arg;
|
|
||||||
|
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case FAT_IOCTL_GET_ATTRIBUTES:
|
|
||||||
return put_user(le32_to_cpu(ntfs_i(inode)->std_fa), user_attr);
|
|
||||||
|
|
||||||
case FAT_IOCTL_GET_VOLUME_ID:
|
|
||||||
return put_user(sbi->volume.ser_num, user_attr);
|
|
||||||
|
|
||||||
case FITRIM:
|
case FITRIM:
|
||||||
return ntfs_ioctl_fitrim(sbi, arg);
|
return ntfs_ioctl_fitrim(sbi, arg);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user