Commit 9661239f authored by Paul Fulghum's avatar Paul Fulghum Committed by Linus Torvalds

[PATCH] synclink.c: add clear stats

Add the ability to clear statistics.
Signed-off-by: default avatarPaul Fulghum <paulkf@microgate.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4a918bc2
...@@ -1814,6 +1814,8 @@ static int startup(struct mgsl_struct * info) ...@@ -1814,6 +1814,8 @@ static int startup(struct mgsl_struct * info)
info->pending_bh = 0; info->pending_bh = 0;
memset(&info->icount, 0, sizeof(info->icount));
init_timer(&info->tx_timer); init_timer(&info->tx_timer);
info->tx_timer.data = (unsigned long)info; info->tx_timer.data = (unsigned long)info;
info->tx_timer.function = mgsl_tx_timeout; info->tx_timer.function = mgsl_tx_timeout;
...@@ -2470,12 +2472,12 @@ static int mgsl_get_stats(struct mgsl_struct * info, struct mgsl_icount __user * ...@@ -2470,12 +2472,12 @@ static int mgsl_get_stats(struct mgsl_struct * info, struct mgsl_icount __user *
printk("%s(%d):mgsl_get_params(%s)\n", printk("%s(%d):mgsl_get_params(%s)\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):mgsl_get_stats(%s) 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;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment