forked from luck/tmp_suning_uos_patched
[PATCH] synclinkmp.c: add statistics clear
Add ability to clear statistics. Signed-off-by: Paul Fulghum <paulkf@microgate.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
761a444d8d
commit
166692e4a0
@ -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)
|
|||||||
printk("%s(%d):%s get_params()\n",
|
printk("%s(%d):%s get_params()\n",
|
||||||
__FILE__,__LINE__, info->device_name);
|
__FILE__,__LINE__, info->device_name);
|
||||||
|
|
||||||
|
if (!user_icount) {
|
||||||
|
memset(&info->icount, 0, sizeof(info->icount));
|
||||||
|
} else {
|
||||||
COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
|
COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
|
||||||
if (err) {
|
if (err)
|
||||||
if ( debug_level >= DEBUG_LEVEL_INFO )
|
|
||||||
printk( "%s(%d):%s get_stats() user buffer copy failed\n",
|
|
||||||
__FILE__,__LINE__,info->device_name);
|
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user