public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -mm] idetape gcc 4.1 warning fix
@ 2006-05-10  2:55 Daniel Walker
  2006-05-10 10:42 ` Alan Cox
  2006-05-10 11:12 ` Jakub Jelinek
  0 siblings, 2 replies; 4+ messages in thread
From: Daniel Walker @ 2006-05-10  2:55 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1381 bytes --]

Fixes the following warning,

drivers/ide/ide-tape.c: In function ‘idetape_copy_stage_from_user’:
drivers/ide/ide-tape.c:2662: warning: ignoring return value of ‘copy_from_user’, declared with attribute warn_unused_result
drivers/ide/ide-tape.c: In function ‘idetape_copy_stage_to_user’:
drivers/ide/ide-tape.c:2689: warning: ignoring return value of ‘copy_to_user’, declared with attribute warn_unused_result

Signed-Off-By: Daniel Walker <dwalker@mvista.com>

Index: linux-2.6.16/drivers/ide/ide-tape.c
===================================================================
--- linux-2.6.16.orig/drivers/ide/ide-tape.c
+++ linux-2.6.16/drivers/ide/ide-tape.c
@@ -2659,7 +2659,7 @@ static void idetape_copy_stage_from_user
 		}
 #endif /* IDETAPE_DEBUG_BUGS */
 		count = min((unsigned int)(bh->b_size - atomic_read(&bh->b_count)), (unsigned int)n);
-		copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf, count);
+		WARN_ON(copy_from_user(bh->b_data + atomic_read(&bh->b_count), buf, count));
 		n -= count;
 		atomic_add(count, &bh->b_count);
 		buf += count;
@@ -2686,7 +2686,7 @@ static void idetape_copy_stage_to_user (
 		}
 #endif /* IDETAPE_DEBUG_BUGS */
 		count = min(tape->b_count, n);
-		copy_to_user(buf, tape->b_data, count);
+		WARN_ON(copy_to_user(buf, tape->b_data, count));
 		n -= count;
 		tape->b_data += count;
 		tape->b_count -= count;

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-05-10 14:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-10  2:55 [PATCH -mm] idetape gcc 4.1 warning fix Daniel Walker
2006-05-10 10:42 ` Alan Cox
2006-05-10 11:12 ` Jakub Jelinek
2006-05-10 14:07   ` Daniel Walker

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