All of lore.kernel.org
 help / color / mirror / Atom feed
* How can I get user space tools of erofs?
@ 2018-11-09  8:37 cgxu519
  2018-11-09 11:38   ` Gao Xiang
  0 siblings, 1 reply; 5+ messages in thread
From: cgxu519 @ 2018-11-09  8:37 UTC (permalink / raw)


Hi Xiang,

Could I ask a simple question about where can I get user space 
tools(like mkfs) of erofs?


Thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How can I get user space tools of erofs?
  2018-11-09  8:37 How can I get user space tools of erofs? cgxu519
@ 2018-11-09 11:38   ` Gao Xiang
  0 siblings, 0 replies; 5+ messages in thread
From: Gao Xiang @ 2018-11-09 11:38 UTC (permalink / raw)
  To: cgxu519
  Cc: Gao Xiang, linux-erofs, devel, LKML, Greg Kroah-Hartman,
	liguifu (C), fangwei (I),
	Chao Yu, Miao Xie

Hi Chengguang,

Good question! It's in the final stage of preparation to open source erofs-mkfs (actually they are now struggle at how to properly spilt
into reasonable patches this week), hopefully the implementation could be released at the next week. (sorry I didn't mean to delay,
I have to put it in the first place --- successfully launch our linux-erofs products to the market)

@Guifu Li <bluce.liguifu@huawei.com> is the original author of erofs-mkfs, he will post the original mkfs source code to linux-erofs mailing list
and he will maintain erofs-mkfs together with @Wei Fang <fangwei1@huawei.com> later. You can contact them for further informations.
---  these piece of code is actually not clean enough (a lot hacked/dirty code compared to the kernel code) so a lot of cleanup will be done then.

currently, you can get erofs-mkfs binary from (still sorry to say that...):
https://github.com/hsiangkao/erofs_mkfs_binary

erofs is now in productization for these months, if all things go well, you'll see that HUAWEI mobile phones on the market run in erofs in few months. :)

These months I'm busy in solving bugs found by internal beta users and tuning memory policy in heavy memory workload for the best performance compared to ext4
(we have native in-place decompression compared with squashfs/btrfs, thus less extra memory allocation results in lower memory memory reclaim / page-writeback
for devices with limited memory, see: https://lists.ozlabs.org/pipermail/linux-erofs/2018-August/000494.html) in order to gain the competitive user experience
comparing to uncompressed filesystem solutions. I will update a document to describe our core design and linux-erofs future roadmap in this linux-4.21 round.

Thanks,
Gao Xiang

On 2018/11/9 16:37, cgxu519 wrote:
> Hi Xiang,
> 
> Could I ask a simple question about where can I get user space tools(like mkfs) of erofs?
> 
> 
> Thanks.
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* How can I get user space tools of erofs?
@ 2018-11-09 11:38   ` Gao Xiang
  0 siblings, 0 replies; 5+ messages in thread
From: Gao Xiang @ 2018-11-09 11:38 UTC (permalink / raw)


Hi Chengguang,

Good question! It's in the final stage of preparation to open source erofs-mkfs (actually they are now struggle at how to properly spilt
into reasonable patches this week), hopefully the implementation could be released at the next week. (sorry I didn't mean to delay,
I have to put it in the first place --- successfully launch our linux-erofs products to the market)

@Guifu Li <bluce.liguifu at huawei.com> is the original author of erofs-mkfs, he will post the original mkfs source code to linux-erofs mailing list
and he will maintain erofs-mkfs together with @Wei Fang <fangwei1 at huawei.com> later. You can contact them for further informations.
---  these piece of code is actually not clean enough (a lot hacked/dirty code compared to the kernel code) so a lot of cleanup will be done then.

currently, you can get erofs-mkfs binary from (still sorry to say that...):
https://github.com/hsiangkao/erofs_mkfs_binary

erofs is now in productization for these months, if all things go well, you'll see that HUAWEI mobile phones on the market run in erofs in few months. :)

These months I'm busy in solving bugs found by internal beta users and tuning memory policy in heavy memory workload for the best performance compared to ext4
(we have native in-place decompression compared with squashfs/btrfs, thus less extra memory allocation results in lower memory memory reclaim / page-writeback
for devices with limited memory, see: https://lists.ozlabs.org/pipermail/linux-erofs/2018-August/000494.html) in order to gain the competitive user experience
comparing to uncompressed filesystem solutions. I will update a document to describe our core design and linux-erofs future roadmap in this linux-4.21 round.

Thanks,
Gao Xiang

On 2018/11/9 16:37, cgxu519 wrote:
> Hi Xiang,
> 
> Could I ask a simple question about where can I get user space tools(like mkfs) of erofs?
> 
> 
> Thanks.
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How can I get user space tools of erofs?
  2018-11-09 11:38   ` Gao Xiang
@ 2018-11-12  1:51     ` cgxu519
  -1 siblings, 0 replies; 5+ messages in thread
From: cgxu519 @ 2018-11-12  1:51 UTC (permalink / raw)
  To: Gao Xiang
  Cc: Gao Xiang, linux-erofs, devel, LKML, Greg Kroah-Hartman,
	liguifu (C), fangwei (I),
	Chao Yu, Miao Xie


> Hi Chengguang,
>
> Good question! It's in the final stage of preparation to open source erofs-mkfs (actually they are now struggle at how to properly spilt
> into reasonable patches this week), hopefully the implementation could be released at the next week. (sorry I didn't mean to delay,
> I have to put it in the first place --- successfully launch our linux-erofs products to the market)
>
> @Guifu Li <bluce.liguifu@huawei.com> is the original author of erofs-mkfs, he will post the original mkfs source code to linux-erofs mailing list
> and he will maintain erofs-mkfs together with @Wei Fang <fangwei1@huawei.com> later. You can contact them for further informations.
> ---  these piece of code is actually not clean enough (a lot hacked/dirty code compared to the kernel code) so a lot of cleanup will be done then.
>
> currently, you can get erofs-mkfs binary from (still sorry to say that...):
> https://github.com/hsiangkao/erofs_mkfs_binary
>
> erofs is now in productization for these months, if all things go well, you'll see that HUAWEI mobile phones on the market run in erofs in few months. :)
>
> These months I'm busy in solving bugs found by internal beta users and tuning memory policy in heavy memory workload for the best performance compared to ext4
> (we have native in-place decompression compared with squashfs/btrfs, thus less extra memory allocation results in lower memory memory reclaim / page-writeback
> for devices with limited memory, see: https://lists.ozlabs.org/pipermail/linux-erofs/2018-August/000494.html) in order to gain the competitive user experience
> comparing to uncompressed filesystem solutions. I will update a document to describe our core design and linux-erofs future roadmap in this linux-4.21 round.

Hi Xiang,

Thanks for your detail explanations!

Chengguang




^ permalink raw reply	[flat|nested] 5+ messages in thread

* How can I get user space tools of erofs?
@ 2018-11-12  1:51     ` cgxu519
  0 siblings, 0 replies; 5+ messages in thread
From: cgxu519 @ 2018-11-12  1:51 UTC (permalink / raw)



> Hi Chengguang,
>
> Good question! It's in the final stage of preparation to open source erofs-mkfs (actually they are now struggle at how to properly spilt
> into reasonable patches this week), hopefully the implementation could be released at the next week. (sorry I didn't mean to delay,
> I have to put it in the first place --- successfully launch our linux-erofs products to the market)
>
> @Guifu Li <bluce.liguifu at huawei.com> is the original author of erofs-mkfs, he will post the original mkfs source code to linux-erofs mailing list
> and he will maintain erofs-mkfs together with @Wei Fang <fangwei1 at huawei.com> later. You can contact them for further informations.
> ---  these piece of code is actually not clean enough (a lot hacked/dirty code compared to the kernel code) so a lot of cleanup will be done then.
>
> currently, you can get erofs-mkfs binary from (still sorry to say that...):
> https://github.com/hsiangkao/erofs_mkfs_binary
>
> erofs is now in productization for these months, if all things go well, you'll see that HUAWEI mobile phones on the market run in erofs in few months. :)
>
> These months I'm busy in solving bugs found by internal beta users and tuning memory policy in heavy memory workload for the best performance compared to ext4
> (we have native in-place decompression compared with squashfs/btrfs, thus less extra memory allocation results in lower memory memory reclaim / page-writeback
> for devices with limited memory, see: https://lists.ozlabs.org/pipermail/linux-erofs/2018-August/000494.html) in order to gain the competitive user experience
> comparing to uncompressed filesystem solutions. I will update a document to describe our core design and linux-erofs future roadmap in this linux-4.21 round.

Hi Xiang,

Thanks for your detail explanations!

Chengguang

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-11-12  1:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-09  8:37 How can I get user space tools of erofs? cgxu519
2018-11-09 11:38 ` Gao Xiang
2018-11-09 11:38   ` Gao Xiang
2018-11-12  1:51   ` cgxu519
2018-11-12  1:51     ` cgxu519

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.