summaryrefslogtreecommitdiff
path: root/drivers/md
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2006-06-26 07:27:37 (GMT)
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-26 16:58:36 (GMT)
commit9443a1d1f72c688646278c06d0a9a3c79e895325 (patch)
treef4c536bb90c04bd71502921e85496a51bb033248 /drivers/md
parent8932c2e0dcae52e73430878fd8a7a7800176eada (diff)
downloadlinux-fsl-qoriq-9443a1d1f72c688646278c06d0a9a3c79e895325.tar.xz
[PATCH] md: remove useless ioctl warning
This warning was slightly useful back in 2.2 days, but is more an annoyance now. It makes it awkward to add new ioctls (that we we are likely to do that in the current climate, but it is possible). Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/md.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index f19b874..30a93d6 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -3977,11 +3977,6 @@ static int md_ioctl(struct inode *inode, struct file *file,
goto done_unlock;
default:
- if (_IOC_TYPE(cmd) == MD_MAJOR)
- printk(KERN_WARNING "md: %s(pid %d) used"
- " obsolete MD ioctl, upgrade your"
- " software to use new ictls.\n",
- current->comm, current->pid);
err = -EINVAL;
goto abort_unlock;
}