提交 166692e4 编写于 作者: P Paul Fulghum 提交者: Linus Torvalds

[PATCH] synclinkmp.c: add statistics clear

Add ability to clear statistics.
Signed-off-by: NPaul Fulghum <paulkf@microgate.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 761a444d
...@@ -2748,6 +2748,8 @@ static int startup(SLMP_INFO * info) ...@@ -2748,6 +2748,8 @@ static int startup(SLMP_INFO * info)
info->pending_bh = 0; info->pending_bh = 0;
memset(&info->icount, 0, sizeof(info->icount));
/* program hardware for current parameters */ /* program hardware for current parameters */
reset_port(info); reset_port(info);
...@@ -2951,11 +2953,11 @@ static int get_stats(SLMP_INFO * info, struct mgsl_icount __user *user_icount) ...@@ -2951,11 +2953,11 @@ static int get_stats(SLMP_INFO * info, struct mgsl_icount __user *user_icount)
printk("%s(%d):%s get_params()\n", printk("%s(%d):%s get_params()\n",
__FILE__,__LINE__, info->device_name); __FILE__,__LINE__, info->device_name);
COPY_TO_USER(err,user_icount, &info->icount, sizeof(struct mgsl_icount)); if (!user_icount) {
if (err) { memset(&info->icount, 0, sizeof(info->icount));
if ( debug_level >= DEBUG_LEVEL_INFO ) } else {
printk( "%s(%d):%s get_stats() user buffer copy failed\n", COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
__FILE__,__LINE__,info->device_name); if (err)
return -EFAULT; return -EFAULT;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册