Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-12 Thread Tom Rini
On Thu, Nov 07, 2024 at 10:47:38AM +0100, Heinrich Schuchardt wrote: > On 11/7/24 10:31, Michael Nazzareno Trimarchi wrote: > > Hi > > > > On Thu, Nov 7, 2024 at 10:27 AM Heinrich Schuchardt > > wrote: > > > > > > On 11/3/24 00:36, Michael Nazzareno Trimarchi wrote: > > > > Hi Tom > > > > > >

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-07 Thread Heinrich Schuchardt
On 11/7/24 10:31, Michael Nazzareno Trimarchi wrote: Hi On Thu, Nov 7, 2024 at 10:27 AM Heinrich Schuchardt wrote: On 11/3/24 00:36, Michael Nazzareno Trimarchi wrote: Hi Tom On Sun, Nov 3, 2024 at 12:26 AM Tom Rini wrote: On Sat, 26 Oct 2024 08:40:43 +0200, Heinrich Schuchardt wrote:

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-07 Thread Michael Nazzareno Trimarchi
Hi On Thu, Nov 7, 2024 at 10:27 AM Heinrich Schuchardt wrote: > > On 11/3/24 00:36, Michael Nazzareno Trimarchi wrote: > > Hi Tom > > > > On Sun, Nov 3, 2024 at 12:26 AM Tom Rini wrote: > >> > >> On Sat, 26 Oct 2024 08:40:43 +0200, Heinrich Schuchardt wrote: > >> > >>> With this series opendir,

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-07 Thread Heinrich Schuchardt
On 11/3/24 00:36, Michael Nazzareno Trimarchi wrote: Hi Tom On Sun, Nov 3, 2024 at 12:26 AM Tom Rini wrote: On Sat, 26 Oct 2024 08:40:43 +0200, Heinrich Schuchardt wrote: With this series opendir, readdir, closedir are implemented for ext4. These functions are needed for the UEFI sub-system

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-07 Thread Michael Nazzareno Trimarchi
Hi Tom On Sun, Nov 3, 2024 at 9:21 AM Michael Nazzareno Trimarchi wrote: > > Hi > > Il dom 3 nov 2024, 00:53 Tom Rini ha scritto: >> >> On Sun, Nov 03, 2024 at 12:36:38AM +0100, Michael Nazzareno Trimarchi wrote: >> > Hi Tom >> > >> > On Sun, Nov 3, 2024 at 12:26 AM Tom Rini wrote: >> > > >> >

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-03 Thread Michael Nazzareno Trimarchi
Hi Il dom 3 nov 2024, 00:53 Tom Rini ha scritto: > On Sun, Nov 03, 2024 at 12:36:38AM +0100, Michael Nazzareno Trimarchi > wrote: > > Hi Tom > > > > On Sun, Nov 3, 2024 at 12:26 AM Tom Rini wrote: > > > > > > On Sat, 26 Oct 2024 08:40:43 +0200, Heinrich Schuchardt wrote: > > > > > > > With this

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-02 Thread Tom Rini
On Sun, Nov 03, 2024 at 12:36:38AM +0100, Michael Nazzareno Trimarchi wrote: > Hi Tom > > On Sun, Nov 3, 2024 at 12:26 AM Tom Rini wrote: > > > > On Sat, 26 Oct 2024 08:40:43 +0200, Heinrich Schuchardt wrote: > > > > > With this series opendir, readdir, closedir are implemented for ext4. > > > Th

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-02 Thread Michael Nazzareno Trimarchi
Hi Tom On Sun, Nov 3, 2024 at 12:26 AM Tom Rini wrote: > > On Sat, 26 Oct 2024 08:40:43 +0200, Heinrich Schuchardt wrote: > > > With this series opendir, readdir, closedir are implemented for ext4. > > These functions are needed for the UEFI sub-system to interact with > > the ext4 file system. >

Re: [PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-11-02 Thread Tom Rini
On Sat, 26 Oct 2024 08:40:43 +0200, Heinrich Schuchardt wrote: > With this series opendir, readdir, closedir are implemented for ext4. > These functions are needed for the UEFI sub-system to interact with > the ext4 file system. > > To reduce code growth the functions are reused to implement the

[PATCH 0/5] fs: ext4: implement opendir, readdir, closedir

2024-10-25 Thread Heinrich Schuchardt
With this series opendir, readdir, closedir are implemented for ext4. These functions are needed for the UEFI sub-system to interact with the ext4 file system. To reduce code growth the functions are reused to implement the ls command for ext4. A memory leak in ext4fs_exists is resolved. ext4fs_