Skip to content

Commit

Permalink
[PATCH] synclink.c: add clear stats
Browse files Browse the repository at this point in the history
Add the 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>
  • Loading branch information
Paul Fulghum authored and Linus Torvalds committed Sep 9, 2005
1 parent 4a918bc commit 9661239
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions drivers/char/synclink.c
Original file line number Diff line number Diff line change
Expand Up @@ -1814,6 +1814,8 @@ static int startup(struct mgsl_struct * info)

info->pending_bh = 0;

memset(&info->icount, 0, sizeof(info->icount));

init_timer(&info->tx_timer);
info->tx_timer.data = (unsigned long)info;
info->tx_timer.function = mgsl_tx_timeout;
Expand Down Expand Up @@ -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",
__FILE__,__LINE__, info->device_name);

COPY_TO_USER(err,user_icount, &info->icount, sizeof(struct mgsl_icount));
if (err) {
if ( debug_level >= DEBUG_LEVEL_INFO )
printk( "%s(%d):mgsl_get_stats(%s) user buffer copy failed\n",
__FILE__,__LINE__,info->device_name);
return -EFAULT;
if (!user_icount) {
memset(&info->icount, 0, sizeof(info->icount));
} else {
COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
if (err)
return -EFAULT;
}

return 0;
Expand Down

0 comments on commit 9661239

Please sign in to comment.