public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] synclinkmp.c add statistics clear
@ 2005-09-07 17:40 Paul Fulghum
  0 siblings, 0 replies; only message in thread
From: Paul Fulghum @ 2005-09-07 17:40 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

[patch] synclinkmp.c add statistics clear

From: Paul Fulghum <paulkf@microgate.com>

Add ability to clear statistics.

Signed-off-by: Paul Fulghum <paulkf@microgate.com>

--- linux-2.6.13/drivers/char/synclinkmp.c	2005-08-28 18:41:01.000000000 -0500
+++ linux-2.6.13-mg/drivers/char/synclinkmp.c	2005-09-07 12:26:28.000000000 -0500
@@ -2750,6 +2750,8 @@ static int startup(SLMP_INFO * info)
 
 	info->pending_bh = 0;
 
+	memset(&info->icount, 0, sizeof(info->icount));
+
 	/* program hardware for current parameters */
 	reset_port(info);
 
@@ -2953,12 +2955,12 @@ static int get_stats(SLMP_INFO * info, s
 		printk("%s(%d):%s get_params()\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):%s get_stats() 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;



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-09-07 17:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-07 17:40 [patch] synclinkmp.c add statistics clear Paul Fulghum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox