public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* Patch fs/xfs/xfs_alloc.c
@ 2010-09-01 19:27 Poyo VL
  2010-09-02  5:21 ` Dave Chinner
  0 siblings, 1 reply; 4+ messages in thread
From: Poyo VL @ 2010-09-01 19:27 UTC (permalink / raw)
  To: aelder; +Cc: xfs

[-- Attachment #1: Type: text/plain, Size: 631 bytes --]

File: fs/xfs/xfs_alloc.c
Kernel: 2.6.35.4

It is not an important patch, but I got some warnings:

fs/xfs/xfs_alloc.c: In function ‘xfs_alloc_ag_vextent_near’:
fs/xfs/xfs_alloc.c:694:15: warning: ‘ltlena’ may be used uninitialized in this 
function
fs/xfs/xfs_alloc.c:683:15: warning: ‘gtlena’ may be used uninitialized in this 
function

And I hate warnings.

So I initialized that structures with 0. I attached the "patch".

Sorry, I am not a C or a kernel expert. But I try do something usefull :)

I am sorry If I did something wrong and thanks for your time.

Ionut Gabriel Popescu



      

[-- Attachment #2: patch.diff --]
[-- Type: application/octet-stream, Size: 905 bytes --]

--- xfs_alloc.c	2010-09-01 22:00:50.044004253 +0300
+++ xfs_alloc_2.c	2010-09-01 22:01:32.400007466 +0300
@@ -680,7 +680,7 @@
 	xfs_agblock_t	gtbnoa;		/* aligned ... */
 	xfs_extlen_t	gtdiff;		/* difference to right side entry */
 	xfs_extlen_t	gtlen;		/* length of right side entry */
-	xfs_extlen_t	gtlena;		/* aligned ... */
+	xfs_extlen_t	gtlena = {0};		/* aligned ... */
 	xfs_agblock_t	gtnew;		/* useful start bno of right side */
 	int		error;		/* error code */
 	int		i;		/* result code, temporary */
@@ -691,7 +691,7 @@
 	/*REFERENCED*/
 	xfs_agblock_t	ltend;		/* end bno of left side entry */
 	xfs_extlen_t	ltlen;		/* length of left side entry */
-	xfs_extlen_t	ltlena;		/* aligned ... */
+	xfs_extlen_t	ltlena = {0};		/* aligned ... */
 	xfs_agblock_t	ltnew;		/* useful start bno of left side */
 	xfs_extlen_t	rlen;		/* length of returned extent */
 #if defined(DEBUG) && defined(__KERNEL__)

[-- Attachment #3: Type: text/plain, Size: 121 bytes --]

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

end of thread, other threads:[~2010-09-16 15:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-01 19:27 Patch fs/xfs/xfs_alloc.c Poyo VL
2010-09-02  5:21 ` Dave Chinner
2010-09-02  7:41   ` Poyo VL
2010-09-16 15:38     ` Alex Elder

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