* [PATCH] doc: cgroup: add f2fs and xfs to supported list for writeback
@ 2020-06-29 19:08 Eric Sandeen
[not found] ` <c8271324-9132-388c-5242-d7699f011892-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2020-07-05 20:35 ` Jonathan Corbet
0 siblings, 2 replies; 7+ messages in thread
From: Eric Sandeen @ 2020-06-29 19:08 UTC (permalink / raw)
To: linux-kernel, linux-mm, Jonathan Corbet
Cc: cgroups, linux-f2fs-devel, linux-xfs
f2fs and xfs have both added support for cgroup writeback:
578c647 f2fs: implement cgroup writeback support
adfb5fb xfs: implement cgroup aware writeback
so add them to the supported list in the docs.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---
TBH I wonder about the wisdom of having this detail in
the doc, as it apparently gets missed quite often ...
diff --git a/Documentation/admin-guide/cgroup-v2.rst b/Documentation/admin-guide/cgroup-v2.rst
index ce3e05e..4f82afa 100644
--- a/Documentation/admin-guide/cgroup-v2.rst
+++ b/Documentation/admin-guide/cgroup-v2.rst
@@ -1684,9 +1684,9 @@ per-cgroup dirty memory states are examined and the more restrictive
of the two is enforced.
cgroup writeback requires explicit support from the underlying
-filesystem. Currently, cgroup writeback is implemented on ext2, ext4
-and btrfs. On other filesystems, all writeback IOs are attributed to
-the root cgroup.
+filesystem. Currently, cgroup writeback is implemented on ext2, ext4,
+btrfs, f2fs, and xfs. On other filesystems, all writeback IOs are
+attributed to the root cgroup.
There are inherent differences in memory and writeback management
which affects how cgroup ownership is tracked. Memory is tracked per
^ permalink raw reply related [flat|nested] 7+ messages in thread[parent not found: <c8271324-9132-388c-5242-d7699f011892-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH] doc: cgroup: add f2fs and xfs to supported list for writeback
[not found] ` <c8271324-9132-388c-5242-d7699f011892-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2020-06-30 1:18 ` Chao Yu
2020-06-30 5:42 ` Christoph Hellwig
1 sibling, 0 replies; 7+ messages in thread
From: Chao Yu @ 2020-06-30 1:18 UTC (permalink / raw)
To: Eric Sandeen, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-mm-Bw31MaZKKs3YtjvyW6yDsg, Jonathan Corbet
Cc: cgroups-u79uwXL29TY76Z2rM5mHXA,
linux-f2fs-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-xfs
On 2020/6/30 3:08, Eric Sandeen wrote:
> f2fs and xfs have both added support for cgroup writeback:
>
> 578c647 f2fs: implement cgroup writeback support
> adfb5fb xfs: implement cgroup aware writeback
>
> so add them to the supported list in the docs.
Thanks for the fix.
>
> Signed-off-by: Eric Sandeen <sandeen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Acked-by: Chao Yu <yuchao0-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
Thanks,
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH] doc: cgroup: add f2fs and xfs to supported list for writeback
[not found] ` <c8271324-9132-388c-5242-d7699f011892-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2020-06-30 1:18 ` Chao Yu
@ 2020-06-30 5:42 ` Christoph Hellwig
[not found] ` <20200630054217.GA27221-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
1 sibling, 1 reply; 7+ messages in thread
From: Christoph Hellwig @ 2020-06-30 5:42 UTC (permalink / raw)
To: Eric Sandeen
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
linux-mm-Bw31MaZKKs3YtjvyW6yDsg, Jonathan Corbet,
cgroups-u79uwXL29TY76Z2rM5mHXA,
linux-f2fs-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-xfs
On Mon, Jun 29, 2020 at 02:08:09PM -0500, Eric Sandeen wrote:
> f2fs and xfs have both added support for cgroup writeback:
>
> 578c647 f2fs: implement cgroup writeback support
> adfb5fb xfs: implement cgroup aware writeback
>
> so add them to the supported list in the docs.
>
> Signed-off-by: Eric Sandeen <sandeen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> ---
>
> TBH I wonder about the wisdom of having this detail in
> the doc, as it apparently gets missed quite often ...
I'd rather remove the list of file systems. It has no chance of
staying uptodate.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] doc: cgroup: add f2fs and xfs to supported list for writeback
2020-06-29 19:08 [PATCH] doc: cgroup: add f2fs and xfs to supported list for writeback Eric Sandeen
[not found] ` <c8271324-9132-388c-5242-d7699f011892-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2020-07-05 20:35 ` Jonathan Corbet
1 sibling, 0 replies; 7+ messages in thread
From: Jonathan Corbet @ 2020-07-05 20:35 UTC (permalink / raw)
To: Eric Sandeen; +Cc: linux-kernel, linux-mm, cgroups, linux-f2fs-devel, linux-xfs
On Mon, 29 Jun 2020 14:08:09 -0500
Eric Sandeen <sandeen@redhat.com> wrote:
> f2fs and xfs have both added support for cgroup writeback:
>
> 578c647 f2fs: implement cgroup writeback support
> adfb5fb xfs: implement cgroup aware writeback
>
> so add them to the supported list in the docs.
>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---
>
> TBH I wonder about the wisdom of having this detail in
> the doc, as it apparently gets missed quite often ...
Good question, but as long as it's there it might as well be correct;
applied, thanks.
jon
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-07-05 20:35 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-29 19:08 [PATCH] doc: cgroup: add f2fs and xfs to supported list for writeback Eric Sandeen
[not found] ` <c8271324-9132-388c-5242-d7699f011892-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2020-06-30 1:18 ` Chao Yu
2020-06-30 5:42 ` Christoph Hellwig
[not found] ` <20200630054217.GA27221-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2020-06-30 13:59 ` Eric Sandeen
2020-07-01 8:32 ` Christoph Hellwig
[not found] ` <20200701083224.GI20101-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2020-07-01 13:25 ` Eric Sandeen
2020-07-05 20:35 ` Jonathan Corbet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox