提交 9e69fbb5 编写于 作者: F FUJITA Tomonori 提交者: Jens Axboe

bsg: minor cleanups

This just kills linux/config.h and dprintk warnings.
Signed-off-by: NFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: NJens Axboe <jens.axboe@oracle.com>
上级 ac6b91b8
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
* seperated right now. * seperated right now.
* *
*/ */
#include <linux/config.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/file.h> #include <linux/file.h>
...@@ -347,8 +346,8 @@ static void bsg_rq_end_io(struct request *rq, int uptodate) ...@@ -347,8 +346,8 @@ static void bsg_rq_end_io(struct request *rq, int uptodate)
struct bsg_device *bd = bc->bd; struct bsg_device *bd = bc->bd;
unsigned long flags; unsigned long flags;
dprintk("%s: finished rq %p bio %p, bc %p offset %ld stat %d\n", dprintk("%s: finished rq %p bc %p, bio %p offset %d stat %d\n",
bd->name, rq, bc, bc->bio, bc - bd->cmd_map, uptodate); bd->name, rq, bc, bc->bio, bc - bd->cmd_map, uptodate);
bc->hdr.duration = jiffies_to_msecs(jiffies - bc->hdr.duration); bc->hdr.duration = jiffies_to_msecs(jiffies - bc->hdr.duration);
...@@ -562,7 +561,7 @@ bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) ...@@ -562,7 +561,7 @@ bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
int ret; int ret;
ssize_t bytes_read; ssize_t bytes_read;
dprintk("%s: read %lu bytes\n", bd->name, count); dprintk("%s: read %Zd bytes\n", bd->name, count);
bsg_set_block(bd, file); bsg_set_block(bd, file);
bytes_read = 0; bytes_read = 0;
...@@ -642,7 +641,7 @@ bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) ...@@ -642,7 +641,7 @@ bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
ssize_t bytes_read; ssize_t bytes_read;
int ret; int ret;
dprintk("%s: write %lu bytes\n", bd->name, count); dprintk("%s: write %Zd bytes\n", bd->name, count);
bsg_set_block(bd, file); bsg_set_block(bd, file);
bsg_set_write_perm(bd, file); bsg_set_write_perm(bd, file);
...@@ -657,7 +656,7 @@ bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) ...@@ -657,7 +656,7 @@ bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
if (!bytes_read || (bytes_read && err_block_err(ret))) if (!bytes_read || (bytes_read && err_block_err(ret)))
bytes_read = ret; bytes_read = ret;
dprintk("%s: returning %lu\n", bd->name, bytes_read); dprintk("%s: returning %Zd\n", bd->name, bytes_read);
return bytes_read; return bytes_read;
} }
...@@ -768,7 +767,7 @@ static struct bsg_device *bsg_add_device(struct inode *inode, ...@@ -768,7 +767,7 @@ static struct bsg_device *bsg_add_device(struct inode *inode,
strncpy(bd->name, disk->disk_name, sizeof(bd->name) - 1); strncpy(bd->name, disk->disk_name, sizeof(bd->name) - 1);
dprintk("bound to <%s>, max queue %d\n", dprintk("bound to <%s>, max queue %d\n",
format_dev_t(buf, i->i_rdev), bd->max_queue); format_dev_t(buf, inode->i_rdev), bd->max_queue);
mutex_unlock(&bsg_mutex); mutex_unlock(&bsg_mutex);
return bd; return bd;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册