diff mbox series

package/pdbg: Fix alignment error on autobuilder

Message ID 20210803081615.879069-1-joel@jms.id.au
State Accepted
Headers show
Series package/pdbg: Fix alignment error on autobuilder | expand

Commit Message

Joel Stanley Aug. 3, 2021, 8:16 a.m. UTC
The autobuilder fails when building for sh because of an alignment issue
in assembly that includes an external data file.

 http://autobuild.buildroot.net/results/457b88c4ba85edb42b3a36cce48bf90712f590bf/

This fix has been submitted upstream.

Signed-off-by: Joel Stanley <joel@jms.id.au>
---
 .../pdbg/0001-template-Fix-alignment.patch    | 39 +++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 package/pdbg/0001-template-Fix-alignment.patch

Comments

Arnout Vandecappelle Aug. 4, 2021, 8:46 p.m. UTC | #1
On 03/08/2021 10:16, Joel Stanley wrote:
> The autobuilder fails when building for sh because of an alignment issue
> in assembly that includes an external data file.
> 
>  http://autobuild.buildroot.net/results/457b88c4ba85edb42b3a36cce48bf90712f590bf/
> 
> This fix has been submitted upstream.

 Has it? I'm looking at the PRs and issues on github and can't find anything. Is
there some other upstream that I can't find?


 Applied to master regardless, thanks.

 Regards,
 Arnout

> 
> Signed-off-by: Joel Stanley <joel@jms.id.au>
> ---
>  .../pdbg/0001-template-Fix-alignment.patch    | 39 +++++++++++++++++++
>  1 file changed, 39 insertions(+)
>  create mode 100644 package/pdbg/0001-template-Fix-alignment.patch
> 
> diff --git a/package/pdbg/0001-template-Fix-alignment.patch b/package/pdbg/0001-template-Fix-alignment.patch
> new file mode 100644
> index 000000000000..e95d8344e2d6
> --- /dev/null
> +++ b/package/pdbg/0001-template-Fix-alignment.patch
> @@ -0,0 +1,39 @@
> +From 0080d0a64da274207bc341491f87863952bb6e3b Mon Sep 17 00:00:00 2001
> +From: Joel Stanley <joel@jms.id.au>
> +Date: Tue, 3 Aug 2021 17:28:17 +0930
> +Subject: [PATCH] template: Fix alignment
> +
> +The assembler complains about unaliged data:
> +
> + ./template.S: Assembler messages:
> + ./template.S:21: Error: misaligned data
> +
> +If the included data is not an aligned size, the the symbols following
> +will be unaligned.
> +
> +We lost the alignment directive in commit 5f3deee1289e ("template: new
> +libfdt requires 8-byte aligned fdt"), so add it back as it was before
> +that commit.
> +
> +Reported by the buildroot autobuilder.
> +
> +Signed-off-by: Joel Stanley <joel@jms.id.au>
> +---
> + template.S | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/template.S b/template.S
> +index ecf9bba0656d..df8c064d6bc0 100644
> +--- a/template.S
> ++++ b/template.S
> +@@ -17,6 +17,7 @@
> + SYM_START(SYMBOL_PREFIX):
> + .incbin FILENAME
> + SYM_END(SYMBOL_PREFIX):
> ++.align 4
> + SYM_SIZE(SYMBOL_PREFIX):
> + 	.long	SYM_END(SYMBOL_PREFIX) - SYM_START(SYMBOL_PREFIX)
> + .globl SYM_START(SYMBOL_PREFIX)
> +-- 
> +2.32.0
> +
>
Joel Stanley Aug. 4, 2021, 10:50 p.m. UTC | #2
On Wed, 4 Aug 2021 at 20:46, Arnout Vandecappelle <arnout@mind.be> wrote:
>
>
>
> On 03/08/2021 10:16, Joel Stanley wrote:
> > The autobuilder fails when building for sh because of an alignment issue
> > in assembly that includes an external data file.
> >
> >  http://autobuild.buildroot.net/results/457b88c4ba85edb42b3a36cce48bf90712f590bf/
> >
> > This fix has been submitted upstream.
>
>  Has it? I'm looking at the PRs and issues on github and can't find anything. Is
> there some other upstream that I can't find?

The project development happens on a mailing list, like all sensible projects:

 https://lists.ozlabs.org/pipermail/pdbg/2021-August/002373.html

 http://patchwork.ozlabs.org/project/pdbg/patch/20210803080305.866765-1-joel@jms.id.au/

We ended up with a slightly different fix upstream, but I think it's
fine to carry the version we have in buildroot.

>  Applied to master regardless, thanks.

Thanks!
Arnout Vandecappelle Aug. 5, 2021, 11:43 a.m. UTC | #3
On 05/08/2021 00:50, Joel Stanley wrote:
> On Wed, 4 Aug 2021 at 20:46, Arnout Vandecappelle <arnout@mind.be> wrote:
>>
>>
>>
>> On 03/08/2021 10:16, Joel Stanley wrote:
>>> The autobuilder fails when building for sh because of an alignment issue
>>> in assembly that includes an external data file.
>>>
>>>  http://autobuild.buildroot.net/results/457b88c4ba85edb42b3a36cce48bf90712f590bf/
>>>
>>> This fix has been submitted upstream.
>>
>>  Has it? I'm looking at the PRs and issues on github and can't find anything. Is
>> there some other upstream that I can't find?
> 
> The project development happens on a mailing list, like all sensible projects:
> 
>  https://lists.ozlabs.org/pipermail/pdbg/2021-August/002373.html

 Our Config.in help text refers to the github repo, and I couldn't find anything
about a mailing list in the README (or a specific contribution document). If
you're close to pdbg upstream, perhaps suggest an update to the README as well?

> 
>  http://patchwork.ozlabs.org/project/pdbg/patch/20210803080305.866765-1-joel@jms.id.au/

 In the future, it's nice to include such a reference in the patch itself.
That's obviously a bit of a catch-22, so what I do is:

- prepare git commit;
- send to upstream;
- git format-patch -N -o <buildroot>
- edit the generated patch(es) and add the upstream reference below the SoB.


 Regards,
 Arnout

> 
> We ended up with a slightly different fix upstream, but I think it's
> fine to carry the version we have in buildroot.
> 
>>  Applied to master regardless, thanks.
> 
> Thanks!
>
Joel Stanley Aug. 19, 2021, 5:30 a.m. UTC | #4
On Thu, 5 Aug 2021 at 11:43, Arnout Vandecappelle <arnout@mind.be> wrote:
>
>
>
> On 05/08/2021 00:50, Joel Stanley wrote:
> > On Wed, 4 Aug 2021 at 20:46, Arnout Vandecappelle <arnout@mind.be> wrote:
> >>
> >>
> >>
> >> On 03/08/2021 10:16, Joel Stanley wrote:
> >>> The autobuilder fails when building for sh because of an alignment issue
> >>> in assembly that includes an external data file.
> >>>
> >>>  http://autobuild.buildroot.net/results/457b88c4ba85edb42b3a36cce48bf90712f590bf/
> >>>
> >>> This fix has been submitted upstream.
> >>
> >>  Has it? I'm looking at the PRs and issues on github and can't find anything. Is
> >> there some other upstream that I can't find?
> >
> > The project development happens on a mailing list, like all sensible projects:
> >
> >  https://lists.ozlabs.org/pipermail/pdbg/2021-August/002373.html
>
>  Our Config.in help text refers to the github repo, and I couldn't find anything
> about a mailing list in the README (or a specific contribution document). If
> you're close to pdbg upstream, perhaps suggest an update to the README as well?

That's a good suggestion, I've done this and Amitay has merged it into
the repository.

>
> >
> >  http://patchwork.ozlabs.org/project/pdbg/patch/20210803080305.866765-1-joel@jms.id.au/
>
>  In the future, it's nice to include such a reference in the patch itself.
> That's obviously a bit of a catch-22, so what I do is:
>
> - prepare git commit;
> - send to upstream;
> - git format-patch -N -o <buildroot>
> - edit the generated patch(es) and add the upstream reference below the SoB.

I'll keep that in mind.

Cheers,

Joel
diff mbox series

Patch

diff --git a/package/pdbg/0001-template-Fix-alignment.patch b/package/pdbg/0001-template-Fix-alignment.patch
new file mode 100644
index 000000000000..e95d8344e2d6
--- /dev/null
+++ b/package/pdbg/0001-template-Fix-alignment.patch
@@ -0,0 +1,39 @@ 
+From 0080d0a64da274207bc341491f87863952bb6e3b Mon Sep 17 00:00:00 2001
+From: Joel Stanley <joel@jms.id.au>
+Date: Tue, 3 Aug 2021 17:28:17 +0930
+Subject: [PATCH] template: Fix alignment
+
+The assembler complains about unaliged data:
+
+ ./template.S: Assembler messages:
+ ./template.S:21: Error: misaligned data
+
+If the included data is not an aligned size, the the symbols following
+will be unaligned.
+
+We lost the alignment directive in commit 5f3deee1289e ("template: new
+libfdt requires 8-byte aligned fdt"), so add it back as it was before
+that commit.
+
+Reported by the buildroot autobuilder.
+
+Signed-off-by: Joel Stanley <joel@jms.id.au>
+---
+ template.S | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/template.S b/template.S
+index ecf9bba0656d..df8c064d6bc0 100644
+--- a/template.S
++++ b/template.S
+@@ -17,6 +17,7 @@
+ SYM_START(SYMBOL_PREFIX):
+ .incbin FILENAME
+ SYM_END(SYMBOL_PREFIX):
++.align 4
+ SYM_SIZE(SYMBOL_PREFIX):
+ 	.long	SYM_END(SYMBOL_PREFIX) - SYM_START(SYMBOL_PREFIX)
+ .globl SYM_START(SYMBOL_PREFIX)
+-- 
+2.32.0
+