From: Heiko Schocher denx <hs@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 4/8] JFFS2: Improve speed reading flash files
Date: Tue, 30 Jun 2015 11:09:25 +0200 [thread overview]
Message-ID: <55925CC5.4000108@denx.de> (raw)
In-Reply-To: <1435554149-18042-5-git-send-email-mark.tomlinson@alliedtelesis.co.nz>
Hello Mark,
Am 29.06.2015 um 07:02 schrieb Mark Tomlinson:
> jffs2_1pass_read_inode() would read the entire data for each node
> in the filesystem, regardless of whether it was part of the file
> to be loaded or not. By only reading the header data for an inode,
> and then reading the data only when it is found to be part of the
> file to be loaded, much copying of data is saved.
>
> jffs2_1pass_list_inodes() read each inode for every file in the
> directory into a buffer. By using NULL as a buffer pointer, NOR
> flash simply returns a pointer, and therefore avoids a memory copy.
>
> Signed-off-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
> ---
>
> fs/jffs2/jffs2_1pass.c | 25 +++++++++++++++++++------
> 1 file changed, 19 insertions(+), 6 deletions(-)
Reviewed-by: Heiko Schocher <hs@denx.de>
bye,
Heiko
>
> diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c
> index 1f6eea7..80210be 100644
> --- a/fs/jffs2/jffs2_1pass.c
> +++ b/fs/jffs2/jffs2_1pass.c
> @@ -730,8 +730,12 @@ jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
> #endif
>
> for (b = pL->frag.listHead; b != NULL; b = b->next) {
> - jNode = (struct jffs2_raw_inode *) get_node_mem(b->offset,
> - pL->readbuf);
> + /* Copy just the node and not the data at this point,
> + * since we don't yet know if we need this data.
> + */
> + jNode = (struct jffs2_raw_inode *)get_fl_mem(b->offset,
> + sizeof(struct jffs2_raw_inode),
> + pL->readbuf);
> if (inode == jNode->ino) {
> #if 0
> putLabeledWord("\r\n\r\nread_inode: totlen = ", jNode->totlen);
> @@ -755,7 +759,14 @@ jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
> #endif
>
> if(dest) {
> - src = ((uchar *) jNode) + sizeof(struct jffs2_raw_inode);
> + /* Now that the inode has been checked,
> + * read the entire inode, including data.
> + */
> + put_fl_mem(jNode, pL->readbuf);
> + jNode = (struct jffs2_raw_inode *)
> + get_node_mem(b->offset, pL->readbuf);
> + src = ((uchar *)jNode) +
> + sizeof(struct jffs2_raw_inode);
> /* ignore data behind latest known EOF */
> if (jNode->offset > totalSize) {
> put_fl_mem(jNode, pL->readbuf);
> @@ -962,7 +973,6 @@ jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
> pL->readbuf);
> if (pino == jDir->pino) {
> u32 i_version = 0;
> - struct jffs2_raw_inode ojNode;
> struct jffs2_raw_inode *jNode, *i = NULL;
> struct b_node *b2;
>
> @@ -997,8 +1007,10 @@ jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
>
> for (b2 = pL->frag.listHead; b2; b2 = b2->next) {
> jNode = (struct jffs2_raw_inode *)
> - get_fl_mem(b2->offset, sizeof(ojNode), &ojNode);
> - if (jNode->ino == jDir->ino && jNode->version >= i_version) {
> + get_fl_mem(b2->offset, sizeof(*jNode),
> + NULL);
> + if (jNode->ino == jDir->ino &&
> + jNode->version >= i_version) {
> i_version = jNode->version;
> if (i)
> put_fl_mem(i, NULL);
> @@ -1011,6 +1023,7 @@ jffs2_1pass_list_inodes(struct b_lists * pL, u32 pino)
> sizeof(*i),
> NULL);
> }
> + put_fl_mem(jNode, NULL);
> }
>
> dump_inode(pL, jDir, i);
>
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
next prev parent reply other threads:[~2015-06-30 9:09 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-29 5:02 [U-Boot] [PATCH 0/8] JFFS2 fixes and performance improvements Mark Tomlinson
2015-06-29 5:02 ` [U-Boot] [PATCH 1/8] JFFS2: Return early when file read not necessary Mark Tomlinson
2015-06-30 9:01 ` Heiko Schocher denx
2015-06-29 5:02 ` [U-Boot] [PATCH 2/8] JFFS2: Speed up and fix comparison functions Mark Tomlinson
2015-06-30 9:04 ` Heiko Schocher denx
2015-06-29 5:02 ` [U-Boot] [PATCH 3/8] JFFS2: Only list each directory entry once Mark Tomlinson
2015-06-30 9:07 ` Heiko Schocher denx
2015-06-29 5:02 ` [U-Boot] [PATCH 4/8] JFFS2: Improve speed reading flash files Mark Tomlinson
2015-06-30 9:09 ` Heiko Schocher denx [this message]
2015-06-29 5:02 ` [U-Boot] [PATCH 5/8] JFFS2: Optimize building lists during scan Mark Tomlinson
2015-06-30 9:13 ` Heiko Schocher invitel
2015-06-29 5:02 ` [U-Boot] [PATCH 6/8] JFFS2: Change scansize to match linux kernel Mark Tomlinson
2015-06-30 9:14 ` Heiko Schocher invitel
2015-06-29 5:02 ` [U-Boot] [PATCH 7/8] JFFS2: Use CLEANMARKER to reduce scanning time Mark Tomlinson
2015-06-30 9:16 ` Heiko Schocher invitel
2015-06-30 9:16 ` Heiko Schocher denx
2015-06-29 5:02 ` [U-Boot] [PATCH 8/8] JFFS2: Use merge sort when parsing filesystem Mark Tomlinson
2015-06-30 9:26 ` Heiko Schocher denx
2015-06-30 12:11 ` [U-Boot] [PATCH 0/8] JFFS2 fixes and performance improvements Wolfgang Denk
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=55925CC5.4000108@denx.de \
--to=hs@denx.de \
--cc=u-boot@lists.denx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.