U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 10/21] fs: Convert fs_read/write to take buffer instead of address
Date: Thu, 21 Jun 2018 11:27:18 -0400	[thread overview]
Message-ID: <20180621152718.GX4609@bill-the-cat.ec.rr.com> (raw)
In-Reply-To: <CAPnjgZ1ygb4vwwiy6P0_ZyEtxZ-=GuLtE370+kGqDc9qLTY-6w@mail.gmail.com>

On Wed, Jun 20, 2018 at 08:02:09PM -0600, Simon Glass wrote:
> kOn 18 June 2018 at 09:23, Alexander Graf <agraf@suse.de> wrote:
> > The fs_read() and fs_write() functions are internal interfaces that
> > naturally want to get pointers as arguments. Most users so far even
> > have pointers and explicitly cast them into integers just to be able
> > to pass them into the function.
> >
> > Convert them over to instead take a pointer argument for the buffer.
> > That way any sandbox mapping gets greatly simplified and users of
> > the API intuitively know what to do.
> >
> > Signed-off-by: Alexander Graf <agraf@suse.de>
> > ---
> >  board/BuR/common/common.c             |  2 +-
> >  board/gdsys/p1022/controlcenterd-id.c | 10 +++++-----
> >  cmd/mvebu/bubt.c                      |  4 ++--
> >  common/splash_source.c                |  4 +++-
> >  drivers/bootcount/bootcount_ext.c     | 12 ++++++------
> >  drivers/fpga/zynqpl.c                 |  8 +++++---
> >  fs/fs.c                               | 20 ++++++++++----------
> >  include/fs.h                          | 12 ++++++------
> >  lib/efi_loader/efi_file.c             |  6 ++----
> >  9 files changed, 40 insertions(+), 38 deletions(-)
> 
> As mentioned before, we should not change this API. There is no need -
> U-Boot uses addresses, and this just expands the scope of the sandbox
> private address.

What we have, in either case, is imperfect.  We're basically hiding some
funky details for sandbox support inside of fs_read/fs_write.  That with
this patch we're moving more of the sandbox wrappers around is something
I don't see as a positive change.  We also don't drop all casts in the
callers.  Some go away, some get changed, at least one gets added.  In
the end, I don't think this patch is a win.  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180621/088ac31e/attachment.sig>

  reply	other threads:[~2018-06-21 15:27 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-18 15:22 [U-Boot] [PATCH v4 00/21] sandbox: efi_loader support Alexander Graf
2018-06-18 15:22 ` [U-Boot] [PATCH v4 01/21] efi: sandbox: Add distroboot support Alexander Graf
2018-06-18 15:22 ` [U-Boot] [PATCH v4 02/21] efi: sandbox: Add relocation constants Alexander Graf
2018-06-18 15:22 ` [U-Boot] [PATCH v4 03/21] efi_loader: Use compiler constants for image loader Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:22 ` [U-Boot] [PATCH v4 04/21] efi_loader: Use map_sysmem() in bootefi command Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:22 ` [U-Boot] [PATCH v4 05/21] efi.h: Do not use config options Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 06/21] efi_loader: Allow SMBIOS tables in highmem Alexander Graf
2018-06-21  2:01   ` Simon Glass
2018-06-21  9:38     ` Alexander Graf
2018-06-21 19:44       ` Simon Glass
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 07/21] sandbox: Map host memory for efi_loader Alexander Graf
2018-06-21  2:01   ` Simon Glass
2018-06-18 15:23 ` [U-Boot] [PATCH v4 08/21] efi_loader: efi_allocate_pages is too restrictive Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 09/21] efi_loader: Disable miniapps on sandbox Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 10/21] fs: Convert fs_read/write to take buffer instead of address Alexander Graf
2018-06-21  2:02   ` Simon Glass
2018-06-21 15:27     ` Tom Rini [this message]
2018-06-18 15:23 ` [U-Boot] [PATCH v4 11/21] efi_loader: Introduce ms abi vararg helpers Alexander Graf
2018-06-21  2:02   ` Simon Glass
2018-06-21  9:40     ` Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-23  8:37     ` Bin Meng
2018-06-25 16:47       ` Alexander Graf
2018-06-26  1:51         ` Bin Meng
2018-06-26 11:18           ` Alexander Graf
2018-06-27  2:59             ` Bin Meng
2018-06-18 15:23 ` [U-Boot] [PATCH v4 12/21] efi: sandbox: Enable EFI loader for sandbox Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 13/21] distro: Move to compiler based target architecture determination Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 14/21] efi_loader: " Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 15/21] sandbox: Fix setjmp/longjmp Alexander Graf
2018-06-21  2:02   ` Simon Glass
2018-06-21  9:41     ` Alexander Graf
2018-06-21 19:45       ` Simon Glass
2018-06-22 11:54         ` Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 16/21] elf: Move x86 reloc defines to common elf.h Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 17/21] efi_loader: Use common elf.h reloc defines Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 18/21] efi: sandbox: Adjust memory usage for sandbox Alexander Graf
2018-06-21  2:02   ` Simon Glass
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 19/21] sandbox: Allow to execute from RAM Alexander Graf
2018-06-21  2:02   ` Simon Glass
2018-06-21  9:44     ` Alexander Graf
2018-06-21 19:45       ` Simon Glass
2018-06-22  9:43         ` Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 20/21] sandbox: Always allocate aligned buffers Alexander Graf
2018-06-18 15:23 ` [U-Boot] [PATCH v4 21/21] efi_loader: Expose U-Boot addresses in memory map for sandbox Alexander Graf
2018-06-21 15:13   ` [U-Boot] [U-Boot, v4, " Alexander Graf
2018-06-23  4:01   ` [U-Boot] [PATCH v4 " Simon Glass
2018-06-23  6:57     ` Alexander Graf
2018-06-25  2:58       ` Simon Glass
2018-06-25  2:58   ` Simon Glass
2018-06-18 15:53 ` [U-Boot] [PATCH v4 00/21] sandbox: efi_loader support Alexander Graf
2018-06-21  2:44   ` Simon Glass
2018-06-21  9:47     ` Alexander Graf
2018-06-21 19:45       ` Simon Glass
2018-06-22  9:44         ` Alexander Graf

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=20180621152718.GX4609@bill-the-cat.ec.rr.com \
    --to=trini@konsulko.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox