From: Mark Rages <markrages@gmail.com>
To: Kevin Buettner <kevinb@redhat.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH] Re: Flash memory size not aligned to address
Date: Mon, 09 Oct 2017 16:28:00 -0000 [thread overview]
Message-ID: <CAASrBQ=sJWPrpZN434bsKjW-=V8WH8mxXR_oiGS_2J-bXMxXeg@mail.gmail.com> (raw)
In-Reply-To: <20171007144252.05e2b69e@pinnacle.lan>
On Sat, Oct 7, 2017 at 3:42 PM, Kevin Buettner <kevinb@redhat.com> wrote:
>
> Hi Mark,
>
> I did notice, however, that you added [PATCH] to the subject line,
> so perhaps you were just getting the subject line formatted in
> such a way so that it might be noticed?
Indeed, that was my plan.
>
> Do you have an FSF Copyright Assignment?
>
No.
> ChangeLog entries are generally not posted as patches. It is unlikely
> that this portion of the patch will cleanly apply once it's approved.
Ok. Thank you for pointing me to the wiki. I was going off of
gdb/CONTRIBUTE. Which one is authoritative?
> It occurs to me that address_in_region might be better named
> offset_in_region.
Updated patch follows.
> It seems to me that there will be no difference in behavior for
> targets whose region boundaries are already aligned to the block size.
> I do wonder, however, about behavior on other targets that don't meet
> this criteria. I'm hoping that someone else who has more experience in
> this area will comment.
The only situation I can think of would be a device that begins a
section of flash unaligned, but requires an aligned address for the
erase command. I'm not aware of such, but it's a big world.
Anyway, thanks for looking it over. Here goes second try:
gdb/ChangeLog:
* target-memory.c (block_boundaries): Fix for block address not
aligned on block size.
diff --git a/gdb/target-memory.c b/gdb/target-memory.c
index 1c8faa8..7f048de 100644
--- a/gdb/target-memory.c
+++ b/gdb/target-memory.c
@@ -138,14 +138,18 @@ block_boundaries (CORE_ADDR address, CORE_ADDR
*begin, CORE_ADDR *end)
{
struct mem_region *region;
unsigned blocksize;
+ CORE_ADDR offset_in_region;
region = lookup_mem_region (address);
gdb_assert (region->attrib.mode == MEM_FLASH);
blocksize = region->attrib.blocksize;
+
+ offset_in_region = address - region->lo;
+
if (begin)
- *begin = address / blocksize * blocksize;
+ *begin = region->lo + offset_in_region / blocksize * blocksize;
if (end)
- *end = (address + blocksize - 1) / blocksize * blocksize;
+ *end = region->lo + (offset_in_region + blocksize - 1) /
blocksize * blocksize;
}
--
Regards,
Mark
markrages@gmail
next prev parent reply other threads:[~2017-10-09 16:28 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-05 21:49 Mark Rages
2017-10-07 18:36 ` [PATCH] " Mark Rages
2017-10-07 21:42 ` Kevin Buettner
2017-10-09 16:28 ` Mark Rages [this message]
2017-10-09 17:51 ` Kevin Buettner
2017-10-09 19:08 ` Mark Rages
2017-10-11 7:56 ` Kevin Buettner
2017-10-11 9:31 ` Pedro Alves
2017-10-11 15:54 ` Kevin Buettner
2017-10-11 16:11 ` Pedro Alves
2017-10-11 16:27 ` Kevin Buettner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAASrBQ=sJWPrpZN434bsKjW-=V8WH8mxXR_oiGS_2J-bXMxXeg@mail.gmail.com' \
--to=markrages@gmail.com \
--cc=gdb-patches@sourceware.org \
--cc=kevinb@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox