Re: [PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-07 Thread Simon Glass
Hi Tobias, On Tue, 7 Feb 2023 at 01:31, Tobias Waldekranz wrote: > > On mån, feb 06, 2023 at 21:02, Simon Glass wrote: > > Hi Tobias, > > > > On Mon, 6 Feb 2023 at 01:30, Tobias Waldekranz > > wrote: > >> > >> On fre, feb 03, 2023 at 17:20, Simon Glass wrote: > >> > Hi Tobias, > >> > > >> >

Re: [PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-07 Thread Tobias Waldekranz
On mån, feb 06, 2023 at 21:02, Simon Glass wrote: > Hi Tobias, > > On Mon, 6 Feb 2023 at 01:30, Tobias Waldekranz wrote: >> >> On fre, feb 03, 2023 at 17:20, Simon Glass wrote: >> > Hi Tobias, >> > >> > On Fri, 3 Feb 2023 at 02:38, Tobias Waldekranz >> > wrote: >> >> >> >> On ons, feb 01,

Re: [PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-06 Thread Simon Glass
Hi Tobias, On Mon, 6 Feb 2023 at 01:30, Tobias Waldekranz wrote: > > On fre, feb 03, 2023 at 17:20, Simon Glass wrote: > > Hi Tobias, > > > > On Fri, 3 Feb 2023 at 02:38, Tobias Waldekranz > > wrote: > >> > >> On ons, feb 01, 2023 at 13:20, Simon Glass wrote: > >> > Hi Tobias, > >> > >> Hi

Re: [PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-06 Thread Tobias Waldekranz
On fre, feb 03, 2023 at 17:20, Simon Glass wrote: > Hi Tobias, > > On Fri, 3 Feb 2023 at 02:38, Tobias Waldekranz wrote: >> >> On ons, feb 01, 2023 at 13:20, Simon Glass wrote: >> > Hi Tobias, >> >> Hi Simon, >> >> Thanks for the review! >> >> > On Wed, 1 Feb 2023 at 11:10, Tobias Waldekranz

Re: [PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-03 Thread Simon Glass
Hi Tobias, On Fri, 3 Feb 2023 at 02:38, Tobias Waldekranz wrote: > > On ons, feb 01, 2023 at 13:20, Simon Glass wrote: > > Hi Tobias, > > Hi Simon, > > Thanks for the review! > > > On Wed, 1 Feb 2023 at 11:10, Tobias Waldekranz > > wrote: > >> > >> blkmaps are loosely modeled on Linux's

Re: [PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-03 Thread Tobias Waldekranz
On ons, feb 01, 2023 at 13:20, Simon Glass wrote: > Hi Tobias, Hi Simon, Thanks for the review! > On Wed, 1 Feb 2023 at 11:10, Tobias Waldekranz wrote: >> >> blkmaps are loosely modeled on Linux's device mapper subsystem. The >> basic idea is that you can create virtual block devices whose

Re: [PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-01 Thread Simon Glass
Hi Tobias, On Wed, 1 Feb 2023 at 11:10, Tobias Waldekranz wrote: > > blkmaps are loosely modeled on Linux's device mapper subsystem. The > basic idea is that you can create virtual block devices whose blocks > can be backed by a plethora of sources that are user configurable. > > This change

[PATCH 3/8] blk: blkmap: Add basic infrastructure

2023-02-01 Thread Tobias Waldekranz
blkmaps are loosely modeled on Linux's device mapper subsystem. The basic idea is that you can create virtual block devices whose blocks can be backed by a plethora of sources that are user configurable. This change just adds the basic infrastructure for creating and removing blkmap devices.