linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Use posix_memalign() for memory used to write bitmaps
@ 2012-02-14 10:52 Jes.Sorensen
  2012-02-16  3:17 ` NeilBrown
  0 siblings, 1 reply; 3+ messages in thread
From: Jes.Sorensen @ 2012-02-14 10:52 UTC (permalink / raw)
  To: neilb; +Cc: alexandermurashkin, linux-raid

From: Jes Sorensen <Jes.Sorensen@redhat.com>

This makes super[01].c properly align buffers used for the bitmap
using posix_memalign() to make sure the writes don't fail in case the
bitmap is opened using O_DIRECT.

This is based on https://bugzilla.redhat.com/show_bug.cgi?id=789898
and an initial patch by Alexander Murashkin.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
---
 super0.c |    8 +++++---
 super1.c |    7 +++++--
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/super0.c b/super0.c
index dab85db..d53f025 100644
--- a/super0.c
+++ b/super0.c
@@ -1065,13 +1065,11 @@ static int write_bitmap0(struct supertype *st, int fd)
 	int rv = 0;
 
 	int towrite, n;
-	char abuf[4096+4096];
-	char *buf = (char*)(((long)(abuf+4096))&~4095L);
+	void *buf;
 
 	if (!get_dev_size(fd, NULL, &dsize))
 		return 1;
 
-
 	if (dsize < MD_RESERVED_SECTORS*512)
 		return -1;
 
@@ -1082,6 +1080,9 @@ static int write_bitmap0(struct supertype *st, int fd)
 	if (lseek64(fd, offset + 4096, 0)< 0LL)
 		return 3;
 
+	if (posix_memalign(&buf, 4096, 4096))
+		return -ENOMEM;
+
 	memset(buf, 0xff, 4096);
 	memcpy(buf,  ((char*)sb)+MD_SB_BYTES, sizeof(bitmap_super_t));
 	towrite = 60*1024;
@@ -1100,6 +1101,7 @@ static int write_bitmap0(struct supertype *st, int fd)
 	if (towrite)
 		rv = -2;
 
+	free(buf);
 	return rv;
 }
 
diff --git a/super1.c b/super1.c
index cfa237a..a18952a 100644
--- a/super1.c
+++ b/super1.c
@@ -1641,12 +1641,14 @@ static int write_bitmap1(struct supertype *st, int fd)
 	struct mdp_superblock_1 *sb = st->sb;
 	bitmap_super_t *bms = (bitmap_super_t*)(((char*)sb)+1024);
 	int rv = 0;
-
+	void *buf;
 	int towrite, n;
-	char buf[4096];
 
 	locate_bitmap1(st, fd);
 
+	if (posix_memalign(&buf, 4096, 4096))
+		return -ENOMEM;
+
 	memset(buf, 0xff, 4096);
 	memcpy(buf, ((char*)sb)+1024, sizeof(bitmap_super_t));
 
@@ -1669,6 +1671,7 @@ static int write_bitmap1(struct supertype *st, int fd)
 	if (towrite)
 		rv = -2;
 
+	free(buf);
 	return rv;
 }
 
-- 
1.7.4.4


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

* Re: [PATCH] Use posix_memalign() for memory used to write bitmaps
  2012-02-14 10:52 [PATCH] Use posix_memalign() for memory used to write bitmaps Jes.Sorensen
@ 2012-02-16  3:17 ` NeilBrown
  2012-02-16  8:01   ` Jes Sorensen
  0 siblings, 1 reply; 3+ messages in thread
From: NeilBrown @ 2012-02-16  3:17 UTC (permalink / raw)
  To: Jes.Sorensen; +Cc: alexandermurashkin, linux-raid

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

On Tue, 14 Feb 2012 11:52:13 +0100 Jes.Sorensen@redhat.com wrote:

> From: Jes Sorensen <Jes.Sorensen@redhat.com>
> 
> This makes super[01].c properly align buffers used for the bitmap
> using posix_memalign() to make sure the writes don't fail in case the
> bitmap is opened using O_DIRECT.
> 
> This is based on https://bugzilla.redhat.com/show_bug.cgi?id=789898
> and an initial patch by Alexander Murashkin.

hi Jes,

I suspect that

http://neil.brown.name/git?p=mdadm;a=commitdiff;h=6ef89052d85b8137b8a7100f761d896ae6f61001

is the fix you want.  But I'll probably apply yours as well.

Thanks,
NeilBrown


> 
> Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
> ---
>  super0.c |    8 +++++---
>  super1.c |    7 +++++--
>  2 files changed, 10 insertions(+), 5 deletions(-)
> 
> diff --git a/super0.c b/super0.c
> index dab85db..d53f025 100644
> --- a/super0.c
> +++ b/super0.c
> @@ -1065,13 +1065,11 @@ static int write_bitmap0(struct supertype *st, int fd)
>  	int rv = 0;
>  
>  	int towrite, n;
> -	char abuf[4096+4096];
> -	char *buf = (char*)(((long)(abuf+4096))&~4095L);
> +	void *buf;
>  
>  	if (!get_dev_size(fd, NULL, &dsize))
>  		return 1;
>  
> -
>  	if (dsize < MD_RESERVED_SECTORS*512)
>  		return -1;
>  
> @@ -1082,6 +1080,9 @@ static int write_bitmap0(struct supertype *st, int fd)
>  	if (lseek64(fd, offset + 4096, 0)< 0LL)
>  		return 3;
>  
> +	if (posix_memalign(&buf, 4096, 4096))
> +		return -ENOMEM;
> +
>  	memset(buf, 0xff, 4096);
>  	memcpy(buf,  ((char*)sb)+MD_SB_BYTES, sizeof(bitmap_super_t));
>  	towrite = 60*1024;
> @@ -1100,6 +1101,7 @@ static int write_bitmap0(struct supertype *st, int fd)
>  	if (towrite)
>  		rv = -2;
>  
> +	free(buf);
>  	return rv;
>  }
>  
> diff --git a/super1.c b/super1.c
> index cfa237a..a18952a 100644
> --- a/super1.c
> +++ b/super1.c
> @@ -1641,12 +1641,14 @@ static int write_bitmap1(struct supertype *st, int fd)
>  	struct mdp_superblock_1 *sb = st->sb;
>  	bitmap_super_t *bms = (bitmap_super_t*)(((char*)sb)+1024);
>  	int rv = 0;
> -
> +	void *buf;
>  	int towrite, n;
> -	char buf[4096];
>  
>  	locate_bitmap1(st, fd);
>  
> +	if (posix_memalign(&buf, 4096, 4096))
> +		return -ENOMEM;
> +
>  	memset(buf, 0xff, 4096);
>  	memcpy(buf, ((char*)sb)+1024, sizeof(bitmap_super_t));
>  
> @@ -1669,6 +1671,7 @@ static int write_bitmap1(struct supertype *st, int fd)
>  	if (towrite)
>  		rv = -2;
>  
> +	free(buf);
>  	return rv;
>  }
>  


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: [PATCH] Use posix_memalign() for memory used to write bitmaps
  2012-02-16  3:17 ` NeilBrown
@ 2012-02-16  8:01   ` Jes Sorensen
  0 siblings, 0 replies; 3+ messages in thread
From: Jes Sorensen @ 2012-02-16  8:01 UTC (permalink / raw)
  To: NeilBrown; +Cc: alexandermurashkin, linux-raid

On 02/16/12 04:17, NeilBrown wrote:
> On Tue, 14 Feb 2012 11:52:13 +0100 Jes.Sorensen@redhat.com wrote:
> 
>> From: Jes Sorensen <Jes.Sorensen@redhat.com>
>>
>> This makes super[01].c properly align buffers used for the bitmap
>> using posix_memalign() to make sure the writes don't fail in case the
>> bitmap is opened using O_DIRECT.
>>
>> This is based on https://bugzilla.redhat.com/show_bug.cgi?id=789898
>> and an initial patch by Alexander Murashkin.
> 
> hi Jes,
> 
> I suspect that
> 
> http://neil.brown.name/git?p=mdadm;a=commitdiff;h=6ef89052d85b8137b8a7100f761d896ae6f61001
> 
> is the fix you want.  But I'll probably apply yours as well.
> 
> Thanks,
> NeilBrown

Hi Neil,

Thanks, I haven't been able to reproduce the problem locally that
Alexander was seeing, but I suspect you are right. That said, I'd still
vote in favor of using posix_memalign() rather than doing the pointer
juggling, less error prone.

Cheers,
Jes

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

end of thread, other threads:[~2012-02-16  8:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-14 10:52 [PATCH] Use posix_memalign() for memory used to write bitmaps Jes.Sorensen
2012-02-16  3:17 ` NeilBrown
2012-02-16  8:01   ` Jes Sorensen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).