浏览代码

[PATCH] kmsg_write: don't return printk return value

kmsg_write returns with printk, so some programs may be confused by a
successful write() with a return value different than the buffer length.

# /bin/echo something > /dev/kmsg
/bin/echo: write error: Inappropriate ioctl for device

The drawbacks is that the printk return value can no more be quickly
checked from userspace.

Signed-off-by: Guillaume Chazarain <guichaz@yahoo.fr>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Guillaume Chazarain 19 年之前
父节点
当前提交
cd140a5c1f
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      drivers/char/mem.c

+ 4 - 1
drivers/char/mem.c

@@ -817,7 +817,7 @@ static ssize_t kmsg_write(struct file * file, const char __user * buf,
 			  size_t count, loff_t *ppos)
 			  size_t count, loff_t *ppos)
 {
 {
 	char *tmp;
 	char *tmp;
-	int ret;
+	ssize_t ret;
 
 
 	tmp = kmalloc(count + 1, GFP_KERNEL);
 	tmp = kmalloc(count + 1, GFP_KERNEL);
 	if (tmp == NULL)
 	if (tmp == NULL)
@@ -826,6 +826,9 @@ static ssize_t kmsg_write(struct file * file, const char __user * buf,
 	if (!copy_from_user(tmp, buf, count)) {
 	if (!copy_from_user(tmp, buf, count)) {
 		tmp[count] = 0;
 		tmp[count] = 0;
 		ret = printk("%s", tmp);
 		ret = printk("%s", tmp);
+		if (ret > count)
+			/* printk can add a prefix */
+			ret = count;
 	}
 	}
 	kfree(tmp);
 	kfree(tmp);
 	return ret;
 	return ret;