From: Marco Felsch <m.felsch@pengutronix.de>
To: Ahmad Fatoum <a.fatoum@pengutronix.de>
Cc: BAREBOX <barebox@lists.infradead.org>
Subject: Re: [PATCH v6 12/12] FIT: add support to cache opened fit images
Date: Wed, 20 Aug 2025 16:51:06 +0200 [thread overview]
Message-ID: <20250820145106.ngoy6zfwuq4hwyie@pengutronix.de> (raw)
In-Reply-To: <007c5c91-6a6c-4877-8aae-df381aa48677@pengutronix.de>
Hi,
On 25-08-20, Ahmad Fatoum wrote:
> Hi,
>
> On 8/20/25 11:48, Marco Felsch wrote:
> > Cache the FIT image fit_open() calls to avoid loading the same FIT image
> > twice. This is very useful if the same FIT image is used to provide the
> > base devicetree, kernel and initrd as well as devicetree overlays.
>
> Just curious, how much time does this save?
This depends on the amount of overlays you're going to check/apply. But
in my use-case it reduced the time from ~1sec to 200ms for ~10 overlays
which are stored together with the boot image e.g. kernel, base-dt,
initrd.
Regards,
Marco
>
> Cheers,
> Ahmad
>
> >
> > Signed-off-by: Marco Felsch <m.felsch@pengutronix.de>
> > ---
> > common/image-fit.c | 32 ++++++++++++++++++++++++++++++++
> > include/image-fit.h | 4 ++++
> > 2 files changed, 36 insertions(+)
> >
> > diff --git a/common/image-fit.c b/common/image-fit.c
> > index c9d08d25f723665e5203d8e8372255a39bf739de..2cde844e46a61f412a46c2c7bb79d833153e5344 100644
> > --- a/common/image-fit.c
> > +++ b/common/image-fit.c
> > @@ -16,6 +16,7 @@
> > #include <fs.h>
> > #include <malloc.h>
> > #include <linux/ctype.h>
> > +#include <linux/refcount.h>
> > #include <asm/byteorder.h>
> > #include <errno.h>
> > #include <linux/err.h>
> > @@ -33,6 +34,8 @@
> > #define CHECK_LEVEL_SIG 2
> > #define CHECK_LEVEL_MAX 3
> >
> > +static LIST_HEAD(open_fits);
> > +
> > static uint32_t dt_struct_advance(struct fdt_header *f, uint32_t dt, int size)
> > {
> > dt += size;
> > @@ -902,6 +905,18 @@ void *fit_open_configuration(struct fit_handle *handle, const char *name,
> > return conf_node;
> > }
> >
> > +static struct fit_handle *fit_get_handle(const char *filename)
> > +{
> > + struct fit_handle *handle;
> > +
> > + list_for_each_entry(handle, &open_fits, entry) {
> > + if (!strcmp(filename, handle->filename))
> > + return handle;
> > + }
> > +
> > + return NULL;
> > +}
> > +
> > static int fit_do_open(struct fit_handle *handle)
> > {
> > const char *desc = "(no description)";
> > @@ -951,6 +966,8 @@ struct fit_handle *fit_open_buf(const void *buf, size_t size, bool verbose,
> > handle->size = size;
> > handle->verify = verify;
> >
> > + refcount_set(&handle->users, 1);
> > +
> > ret = fit_do_open(handle);
> > if (ret) {
> > fit_close(handle);
> > @@ -985,6 +1002,12 @@ struct fit_handle *fit_open(const char *_filename, bool verbose,
> > return ERR_PTR(-errno);
> > }
> >
> > + handle = fit_get_handle(filename);
> > + if (handle) {
> > + refcount_inc(&handle->users);
> > + return handle;
> > + }
> > +
> > handle = xzalloc(sizeof(struct fit_handle));
> >
> > handle->verbose = verbose;
> > @@ -1002,6 +1025,9 @@ struct fit_handle *fit_open(const char *_filename, bool verbose,
> > handle->fit = handle->fit_alloc;
> > handle->filename = filename;
> >
> > + refcount_set(&handle->users, 1);
> > + list_add(&handle->entry, &open_fits);
> > +
> > ret = fit_do_open(handle);
> > if (ret) {
> > fit_close(handle);
> > @@ -1013,9 +1039,15 @@ struct fit_handle *fit_open(const char *_filename, bool verbose,
> >
> > static void __fit_close(struct fit_handle *handle)
> > {
> > + if (!refcount_dec_and_test(&handle->users))
> > + return;
> > +
> > if (handle->root)
> > of_delete_node(handle->root);
> >
> > + if (handle->filename)
> > + list_del(&handle->entry);
> > +
> > free(handle->filename);
> > free(handle->fit_alloc);
> > }
> > diff --git a/include/image-fit.h b/include/image-fit.h
> > index 68f70f4365cb7a650596263086f7de2209d5957e..f9791ff251c554eda56bf3af98c8abceb056a176 100644
> > --- a/include/image-fit.h
> > +++ b/include/image-fit.h
> > @@ -7,6 +7,7 @@
> > #define __IMAGE_FIT_H__
> >
> > #include <linux/types.h>
> > +#include <linux/refcount.h>
> > #include <bootm.h>
> >
> > struct fit_handle {
> > @@ -15,6 +16,9 @@ struct fit_handle {
> > size_t size;
> > char *filename;
> >
> > + struct list_head entry;
> > + refcount_t users;
> > +
> > bool verbose;
> > enum bootm_verify verify;
> >
> >
>
> --
> Pengutronix e.K. | |
> Steuerwalder Str. 21 | http://www.pengutronix.de/ |
> 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
>
>
next prev parent reply other threads:[~2025-08-20 16:33 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-20 9:48 [PATCH v6 00/12] Add FIT image overlay support Marco Felsch
2025-08-20 9:48 ` [PATCH v6 01/12] FIT: fix missing free in fit_open error path Marco Felsch
2025-08-20 9:48 ` [PATCH v6 02/12] FIT: fit_open_configuration: add match function support Marco Felsch
2025-08-20 9:48 ` [PATCH v6 03/12] of: overlay: make the pattern match function more generic Marco Felsch
2025-08-20 9:48 ` [PATCH v6 04/12] of: overlay: make search dir " Marco Felsch
2025-08-20 9:48 ` [PATCH v6 05/12] of: overlay: refactor of_overlay_global_fixup Marco Felsch
2025-08-20 9:48 ` [PATCH v6 06/12] FIT: make fit_config_verify_signature public Marco Felsch
2025-08-20 9:48 ` [PATCH v6 07/12] of: overlay: add FIT image overlay support Marco Felsch
2025-08-20 9:48 ` [PATCH v6 08/12] of: overlay: replace filename with an more unique name Marco Felsch
2025-08-20 9:48 ` [PATCH v6 09/12] of: overlay: add more debugging prints to of_overlay_matches_filter Marco Felsch
2025-08-20 9:48 ` [PATCH v6 10/12] FIT: fit_open: canonicalize provided filename Marco Felsch
2025-08-20 9:48 ` [PATCH v6 11/12] FIT: fit_open: save the filename Marco Felsch
2025-08-20 9:48 ` [PATCH v6 12/12] FIT: add support to cache opened fit images Marco Felsch
2025-08-20 11:59 ` Ahmad Fatoum
2025-08-20 14:51 ` Marco Felsch [this message]
2025-08-20 20:41 ` Marco Felsch
2025-08-20 12:00 ` Sascha Hauer
2025-08-20 14:47 ` Marco Felsch
2025-08-20 11:54 ` [PATCH v6 00/12] Add FIT image overlay support Sascha Hauer
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=20250820145106.ngoy6zfwuq4hwyie@pengutronix.de \
--to=m.felsch@pengutronix.de \
--cc=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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