mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
netfs: Reduce number of conditional branches in netfs_perform_write()
Reduce the number of conditional branches in netfs_perform_write() by merging in netfs_how_to_modify() and then creating a separate if-statement for each way we might modify a folio. Note that this means replicating the data copy in each path. Signed-off-by: David Howells <dhowells@redhat.com> cc: Jeff Layton <jlayton@kernel.org> cc: netfs@lists.linux.dev cc: linux-fsdevel@vger.kernel.org Link: https://lore.kernel.org/r/20240814203850.2240469-6-dhowells@redhat.com/ # v2 Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
ef966d73fb
commit
8f52de0077
|
|
@ -13,91 +13,22 @@
|
||||||
#include <linux/pagevec.h>
|
#include <linux/pagevec.h>
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
/*
|
static void __netfs_set_group(struct folio *folio, struct netfs_group *netfs_group)
|
||||||
* Determined write method. Adjust netfs_folio_traces if this is changed.
|
{
|
||||||
*/
|
if (netfs_group)
|
||||||
enum netfs_how_to_modify {
|
folio_attach_private(folio, netfs_get_group(netfs_group));
|
||||||
NETFS_FOLIO_IS_UPTODATE, /* Folio is uptodate already */
|
}
|
||||||
NETFS_JUST_PREFETCH, /* We have to read the folio anyway */
|
|
||||||
NETFS_WHOLE_FOLIO_MODIFY, /* We're going to overwrite the whole folio */
|
|
||||||
NETFS_MODIFY_AND_CLEAR, /* We can assume there is no data to be downloaded. */
|
|
||||||
NETFS_STREAMING_WRITE, /* Store incomplete data in non-uptodate page. */
|
|
||||||
NETFS_STREAMING_WRITE_CONT, /* Continue streaming write. */
|
|
||||||
NETFS_FLUSH_CONTENT, /* Flush incompatible content. */
|
|
||||||
};
|
|
||||||
|
|
||||||
static void netfs_set_group(struct folio *folio, struct netfs_group *netfs_group)
|
static void netfs_set_group(struct folio *folio, struct netfs_group *netfs_group)
|
||||||
{
|
{
|
||||||
void *priv = folio_get_private(folio);
|
void *priv = folio_get_private(folio);
|
||||||
|
|
||||||
if (netfs_group && (!priv || priv == NETFS_FOLIO_COPY_TO_CACHE))
|
if (unlikely(priv != netfs_group)) {
|
||||||
folio_attach_private(folio, netfs_get_group(netfs_group));
|
if (netfs_group && (!priv || priv == NETFS_FOLIO_COPY_TO_CACHE))
|
||||||
else if (!netfs_group && priv == NETFS_FOLIO_COPY_TO_CACHE)
|
folio_attach_private(folio, netfs_get_group(netfs_group));
|
||||||
folio_detach_private(folio);
|
else if (!netfs_group && priv == NETFS_FOLIO_COPY_TO_CACHE)
|
||||||
}
|
folio_detach_private(folio);
|
||||||
|
|
||||||
/*
|
|
||||||
* Decide how we should modify a folio. We might be attempting to do
|
|
||||||
* write-streaming, in which case we don't want to a local RMW cycle if we can
|
|
||||||
* avoid it. If we're doing local caching or content crypto, we award that
|
|
||||||
* priority over avoiding RMW. If the file is open readably, then we also
|
|
||||||
* assume that we may want to read what we wrote.
|
|
||||||
*/
|
|
||||||
static enum netfs_how_to_modify netfs_how_to_modify(struct netfs_inode *ctx,
|
|
||||||
struct file *file,
|
|
||||||
struct folio *folio,
|
|
||||||
void *netfs_group,
|
|
||||||
size_t flen,
|
|
||||||
size_t offset,
|
|
||||||
size_t len,
|
|
||||||
bool maybe_trouble)
|
|
||||||
{
|
|
||||||
struct netfs_folio *finfo = netfs_folio_info(folio);
|
|
||||||
struct netfs_group *group = netfs_folio_group(folio);
|
|
||||||
loff_t pos = folio_pos(folio);
|
|
||||||
|
|
||||||
_enter("");
|
|
||||||
|
|
||||||
if (group != netfs_group && group != NETFS_FOLIO_COPY_TO_CACHE)
|
|
||||||
return NETFS_FLUSH_CONTENT;
|
|
||||||
|
|
||||||
if (folio_test_uptodate(folio))
|
|
||||||
return NETFS_FOLIO_IS_UPTODATE;
|
|
||||||
|
|
||||||
if (pos >= ctx->zero_point)
|
|
||||||
return NETFS_MODIFY_AND_CLEAR;
|
|
||||||
|
|
||||||
if (!maybe_trouble && offset == 0 && len >= flen)
|
|
||||||
return NETFS_WHOLE_FOLIO_MODIFY;
|
|
||||||
|
|
||||||
if (file->f_mode & FMODE_READ)
|
|
||||||
goto no_write_streaming;
|
|
||||||
|
|
||||||
if (netfs_is_cache_enabled(ctx)) {
|
|
||||||
/* We don't want to get a streaming write on a file that loses
|
|
||||||
* caching service temporarily because the backing store got
|
|
||||||
* culled.
|
|
||||||
*/
|
|
||||||
goto no_write_streaming;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!finfo)
|
|
||||||
return NETFS_STREAMING_WRITE;
|
|
||||||
|
|
||||||
/* We can continue a streaming write only if it continues on from the
|
|
||||||
* previous. If it overlaps, we must flush lest we suffer a partial
|
|
||||||
* copy and disjoint dirty regions.
|
|
||||||
*/
|
|
||||||
if (offset == finfo->dirty_offset + finfo->dirty_len)
|
|
||||||
return NETFS_STREAMING_WRITE_CONT;
|
|
||||||
return NETFS_FLUSH_CONTENT;
|
|
||||||
|
|
||||||
no_write_streaming:
|
|
||||||
if (finfo) {
|
|
||||||
netfs_stat(&netfs_n_wh_wstream_conflict);
|
|
||||||
return NETFS_FLUSH_CONTENT;
|
|
||||||
}
|
|
||||||
return NETFS_JUST_PREFETCH;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -177,13 +108,10 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
.range_end = iocb->ki_pos + iter->count,
|
.range_end = iocb->ki_pos + iter->count,
|
||||||
};
|
};
|
||||||
struct netfs_io_request *wreq = NULL;
|
struct netfs_io_request *wreq = NULL;
|
||||||
struct netfs_folio *finfo;
|
struct folio *folio = NULL, *writethrough = NULL;
|
||||||
struct folio *folio, *writethrough = NULL;
|
|
||||||
enum netfs_how_to_modify howto;
|
|
||||||
enum netfs_folio_trace trace;
|
|
||||||
unsigned int bdp_flags = (iocb->ki_flags & IOCB_NOWAIT) ? BDP_ASYNC : 0;
|
unsigned int bdp_flags = (iocb->ki_flags & IOCB_NOWAIT) ? BDP_ASYNC : 0;
|
||||||
ssize_t written = 0, ret, ret2;
|
ssize_t written = 0, ret, ret2;
|
||||||
loff_t i_size, pos = iocb->ki_pos, from, to;
|
loff_t i_size, pos = iocb->ki_pos;
|
||||||
size_t max_chunk = mapping_max_folio_size(mapping);
|
size_t max_chunk = mapping_max_folio_size(mapping);
|
||||||
bool maybe_trouble = false;
|
bool maybe_trouble = false;
|
||||||
|
|
||||||
|
|
@ -213,15 +141,14 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
struct netfs_folio *finfo;
|
||||||
|
struct netfs_group *group;
|
||||||
|
unsigned long long fpos;
|
||||||
size_t flen;
|
size_t flen;
|
||||||
size_t offset; /* Offset into pagecache folio */
|
size_t offset; /* Offset into pagecache folio */
|
||||||
size_t part; /* Bytes to write to folio */
|
size_t part; /* Bytes to write to folio */
|
||||||
size_t copied; /* Bytes copied from user */
|
size_t copied; /* Bytes copied from user */
|
||||||
|
|
||||||
ret = balance_dirty_pages_ratelimited_flags(mapping, bdp_flags);
|
|
||||||
if (unlikely(ret < 0))
|
|
||||||
break;
|
|
||||||
|
|
||||||
offset = pos & (max_chunk - 1);
|
offset = pos & (max_chunk - 1);
|
||||||
part = min(max_chunk - offset, iov_iter_count(iter));
|
part = min(max_chunk - offset, iov_iter_count(iter));
|
||||||
|
|
||||||
|
|
@ -247,7 +174,8 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
}
|
}
|
||||||
|
|
||||||
flen = folio_size(folio);
|
flen = folio_size(folio);
|
||||||
offset = pos & (flen - 1);
|
fpos = folio_pos(folio);
|
||||||
|
offset = pos - fpos;
|
||||||
part = min_t(size_t, flen - offset, part);
|
part = min_t(size_t, flen - offset, part);
|
||||||
|
|
||||||
/* Wait for writeback to complete. The writeback engine owns
|
/* Wait for writeback to complete. The writeback engine owns
|
||||||
|
|
@ -265,71 +193,52 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
goto error_folio_unlock;
|
goto error_folio_unlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* See if we need to prefetch the area we're going to modify.
|
/* Decide how we should modify a folio. We might be attempting
|
||||||
* We need to do this before we get a lock on the folio in case
|
* to do write-streaming, in which case we don't want to a
|
||||||
* there's more than one writer competing for the same cache
|
* local RMW cycle if we can avoid it. If we're doing local
|
||||||
* block.
|
* caching or content crypto, we award that priority over
|
||||||
|
* avoiding RMW. If the file is open readably, then we also
|
||||||
|
* assume that we may want to read what we wrote.
|
||||||
*/
|
*/
|
||||||
howto = netfs_how_to_modify(ctx, file, folio, netfs_group,
|
finfo = netfs_folio_info(folio);
|
||||||
flen, offset, part, maybe_trouble);
|
group = netfs_folio_group(folio);
|
||||||
_debug("howto %u", howto);
|
|
||||||
switch (howto) {
|
if (unlikely(group != netfs_group) &&
|
||||||
case NETFS_JUST_PREFETCH:
|
group != NETFS_FOLIO_COPY_TO_CACHE)
|
||||||
ret = netfs_prefetch_for_write(file, folio, offset, part);
|
goto flush_content;
|
||||||
if (ret < 0) {
|
|
||||||
_debug("prefetch = %zd", ret);
|
if (folio_test_uptodate(folio)) {
|
||||||
goto error_folio_unlock;
|
if (mapping_writably_mapped(mapping))
|
||||||
}
|
flush_dcache_folio(folio);
|
||||||
break;
|
copied = copy_folio_from_iter_atomic(folio, offset, part, iter);
|
||||||
case NETFS_FOLIO_IS_UPTODATE:
|
if (unlikely(copied == 0))
|
||||||
case NETFS_WHOLE_FOLIO_MODIFY:
|
goto copy_failed;
|
||||||
case NETFS_STREAMING_WRITE_CONT:
|
netfs_set_group(folio, netfs_group);
|
||||||
break;
|
trace_netfs_folio(folio, netfs_folio_is_uptodate);
|
||||||
case NETFS_MODIFY_AND_CLEAR:
|
goto copied;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If the page is above the zero-point then we assume that the
|
||||||
|
* server would just return a block of zeros or a short read if
|
||||||
|
* we try to read it.
|
||||||
|
*/
|
||||||
|
if (fpos >= ctx->zero_point) {
|
||||||
zero_user_segment(&folio->page, 0, offset);
|
zero_user_segment(&folio->page, 0, offset);
|
||||||
break;
|
copied = copy_folio_from_iter_atomic(folio, offset, part, iter);
|
||||||
case NETFS_STREAMING_WRITE:
|
if (unlikely(copied == 0))
|
||||||
ret = -EIO;
|
goto copy_failed;
|
||||||
if (WARN_ON(folio_get_private(folio)))
|
|
||||||
goto error_folio_unlock;
|
|
||||||
break;
|
|
||||||
case NETFS_FLUSH_CONTENT:
|
|
||||||
trace_netfs_folio(folio, netfs_flush_content);
|
|
||||||
from = folio_pos(folio);
|
|
||||||
to = from + folio_size(folio) - 1;
|
|
||||||
folio_unlock(folio);
|
|
||||||
folio_put(folio);
|
|
||||||
ret = filemap_write_and_wait_range(mapping, from, to);
|
|
||||||
if (ret < 0)
|
|
||||||
goto error_folio_unlock;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mapping_writably_mapped(mapping))
|
|
||||||
flush_dcache_folio(folio);
|
|
||||||
|
|
||||||
copied = copy_folio_from_iter_atomic(folio, offset, part, iter);
|
|
||||||
|
|
||||||
flush_dcache_folio(folio);
|
|
||||||
|
|
||||||
/* Deal with a (partially) failed copy */
|
|
||||||
if (copied == 0) {
|
|
||||||
ret = -EFAULT;
|
|
||||||
goto error_folio_unlock;
|
|
||||||
}
|
|
||||||
|
|
||||||
trace = (enum netfs_folio_trace)howto;
|
|
||||||
switch (howto) {
|
|
||||||
case NETFS_FOLIO_IS_UPTODATE:
|
|
||||||
case NETFS_JUST_PREFETCH:
|
|
||||||
netfs_set_group(folio, netfs_group);
|
|
||||||
break;
|
|
||||||
case NETFS_MODIFY_AND_CLEAR:
|
|
||||||
zero_user_segment(&folio->page, offset + copied, flen);
|
zero_user_segment(&folio->page, offset + copied, flen);
|
||||||
netfs_set_group(folio, netfs_group);
|
__netfs_set_group(folio, netfs_group);
|
||||||
folio_mark_uptodate(folio);
|
folio_mark_uptodate(folio);
|
||||||
break;
|
trace_netfs_folio(folio, netfs_modify_and_clear);
|
||||||
case NETFS_WHOLE_FOLIO_MODIFY:
|
goto copied;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* See if we can write a whole folio in one go. */
|
||||||
|
if (!maybe_trouble && offset == 0 && part >= flen) {
|
||||||
|
copied = copy_folio_from_iter_atomic(folio, offset, part, iter);
|
||||||
|
if (unlikely(copied == 0))
|
||||||
|
goto copy_failed;
|
||||||
if (unlikely(copied < part)) {
|
if (unlikely(copied < part)) {
|
||||||
maybe_trouble = true;
|
maybe_trouble = true;
|
||||||
iov_iter_revert(iter, copied);
|
iov_iter_revert(iter, copied);
|
||||||
|
|
@ -337,16 +246,53 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
folio_unlock(folio);
|
folio_unlock(folio);
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
netfs_set_group(folio, netfs_group);
|
__netfs_set_group(folio, netfs_group);
|
||||||
folio_mark_uptodate(folio);
|
folio_mark_uptodate(folio);
|
||||||
break;
|
trace_netfs_folio(folio, netfs_whole_folio_modify);
|
||||||
case NETFS_STREAMING_WRITE:
|
goto copied;
|
||||||
if (offset == 0 && copied == flen) {
|
}
|
||||||
netfs_set_group(folio, netfs_group);
|
|
||||||
folio_mark_uptodate(folio);
|
/* We don't want to do a streaming write on a file that loses
|
||||||
trace = netfs_streaming_filled_page;
|
* caching service temporarily because the backing store got
|
||||||
break;
|
* culled and we don't really want to get a streaming write on
|
||||||
|
* a file that's open for reading as ->read_folio() then has to
|
||||||
|
* be able to flush it.
|
||||||
|
*/
|
||||||
|
if ((file->f_mode & FMODE_READ) ||
|
||||||
|
netfs_is_cache_enabled(ctx)) {
|
||||||
|
if (finfo) {
|
||||||
|
netfs_stat(&netfs_n_wh_wstream_conflict);
|
||||||
|
goto flush_content;
|
||||||
}
|
}
|
||||||
|
ret = netfs_prefetch_for_write(file, folio, offset, part);
|
||||||
|
if (ret < 0) {
|
||||||
|
_debug("prefetch = %zd", ret);
|
||||||
|
goto error_folio_unlock;
|
||||||
|
}
|
||||||
|
/* Note that copy-to-cache may have been set. */
|
||||||
|
|
||||||
|
copied = copy_folio_from_iter_atomic(folio, offset, part, iter);
|
||||||
|
if (unlikely(copied == 0))
|
||||||
|
goto copy_failed;
|
||||||
|
netfs_set_group(folio, netfs_group);
|
||||||
|
trace_netfs_folio(folio, netfs_just_prefetch);
|
||||||
|
goto copied;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!finfo) {
|
||||||
|
ret = -EIO;
|
||||||
|
if (WARN_ON(folio_get_private(folio)))
|
||||||
|
goto error_folio_unlock;
|
||||||
|
copied = copy_folio_from_iter_atomic(folio, offset, part, iter);
|
||||||
|
if (unlikely(copied == 0))
|
||||||
|
goto copy_failed;
|
||||||
|
if (offset == 0 && copied == flen) {
|
||||||
|
__netfs_set_group(folio, netfs_group);
|
||||||
|
folio_mark_uptodate(folio);
|
||||||
|
trace_netfs_folio(folio, netfs_streaming_filled_page);
|
||||||
|
goto copied;
|
||||||
|
}
|
||||||
|
|
||||||
finfo = kzalloc(sizeof(*finfo), GFP_KERNEL);
|
finfo = kzalloc(sizeof(*finfo), GFP_KERNEL);
|
||||||
if (!finfo) {
|
if (!finfo) {
|
||||||
iov_iter_revert(iter, copied);
|
iov_iter_revert(iter, copied);
|
||||||
|
|
@ -358,9 +304,18 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
finfo->dirty_len = copied;
|
finfo->dirty_len = copied;
|
||||||
folio_attach_private(folio, (void *)((unsigned long)finfo |
|
folio_attach_private(folio, (void *)((unsigned long)finfo |
|
||||||
NETFS_FOLIO_INFO));
|
NETFS_FOLIO_INFO));
|
||||||
break;
|
trace_netfs_folio(folio, netfs_streaming_write);
|
||||||
case NETFS_STREAMING_WRITE_CONT:
|
goto copied;
|
||||||
finfo = netfs_folio_info(folio);
|
}
|
||||||
|
|
||||||
|
/* We can continue a streaming write only if it continues on
|
||||||
|
* from the previous. If it overlaps, we must flush lest we
|
||||||
|
* suffer a partial copy and disjoint dirty regions.
|
||||||
|
*/
|
||||||
|
if (offset == finfo->dirty_offset + finfo->dirty_len) {
|
||||||
|
copied = copy_folio_from_iter_atomic(folio, offset, part, iter);
|
||||||
|
if (unlikely(copied == 0))
|
||||||
|
goto copy_failed;
|
||||||
finfo->dirty_len += copied;
|
finfo->dirty_len += copied;
|
||||||
if (finfo->dirty_offset == 0 && finfo->dirty_len == flen) {
|
if (finfo->dirty_offset == 0 && finfo->dirty_len == flen) {
|
||||||
if (finfo->netfs_group)
|
if (finfo->netfs_group)
|
||||||
|
|
@ -369,17 +324,25 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
folio_detach_private(folio);
|
folio_detach_private(folio);
|
||||||
folio_mark_uptodate(folio);
|
folio_mark_uptodate(folio);
|
||||||
kfree(finfo);
|
kfree(finfo);
|
||||||
trace = netfs_streaming_cont_filled_page;
|
trace_netfs_folio(folio, netfs_streaming_cont_filled_page);
|
||||||
|
} else {
|
||||||
|
trace_netfs_folio(folio, netfs_streaming_write_cont);
|
||||||
}
|
}
|
||||||
break;
|
goto copied;
|
||||||
default:
|
|
||||||
WARN(true, "Unexpected modify type %u ix=%lx\n",
|
|
||||||
howto, folio->index);
|
|
||||||
ret = -EIO;
|
|
||||||
goto error_folio_unlock;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
trace_netfs_folio(folio, trace);
|
/* Incompatible write; flush the folio and try again. */
|
||||||
|
flush_content:
|
||||||
|
trace_netfs_folio(folio, netfs_flush_content);
|
||||||
|
folio_unlock(folio);
|
||||||
|
folio_put(folio);
|
||||||
|
ret = filemap_write_and_wait_range(mapping, fpos, fpos + flen - 1);
|
||||||
|
if (ret < 0)
|
||||||
|
goto error_folio_unlock;
|
||||||
|
continue;
|
||||||
|
|
||||||
|
copied:
|
||||||
|
flush_dcache_folio(folio);
|
||||||
|
|
||||||
/* Update the inode size if we moved the EOF marker */
|
/* Update the inode size if we moved the EOF marker */
|
||||||
pos += copied;
|
pos += copied;
|
||||||
|
|
@ -401,6 +364,10 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
folio_put(folio);
|
folio_put(folio);
|
||||||
folio = NULL;
|
folio = NULL;
|
||||||
|
|
||||||
|
ret = balance_dirty_pages_ratelimited_flags(mapping, bdp_flags);
|
||||||
|
if (unlikely(ret < 0))
|
||||||
|
break;
|
||||||
|
|
||||||
cond_resched();
|
cond_resched();
|
||||||
} while (iov_iter_count(iter));
|
} while (iov_iter_count(iter));
|
||||||
|
|
||||||
|
|
@ -421,6 +388,8 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter,
|
||||||
_leave(" = %zd [%zd]", written, ret);
|
_leave(" = %zd [%zd]", written, ret);
|
||||||
return written ? written : ret;
|
return written ? written : ret;
|
||||||
|
|
||||||
|
copy_failed:
|
||||||
|
ret = -EFAULT;
|
||||||
error_folio_unlock:
|
error_folio_unlock:
|
||||||
folio_unlock(folio);
|
folio_unlock(folio);
|
||||||
folio_put(folio);
|
folio_put(folio);
|
||||||
|
|
|
||||||
|
|
@ -129,7 +129,6 @@
|
||||||
E_(netfs_sreq_trace_put_terminated, "PUT TERM ")
|
E_(netfs_sreq_trace_put_terminated, "PUT TERM ")
|
||||||
|
|
||||||
#define netfs_folio_traces \
|
#define netfs_folio_traces \
|
||||||
/* The first few correspond to enum netfs_how_to_modify */ \
|
|
||||||
EM(netfs_folio_is_uptodate, "mod-uptodate") \
|
EM(netfs_folio_is_uptodate, "mod-uptodate") \
|
||||||
EM(netfs_just_prefetch, "mod-prefetch") \
|
EM(netfs_just_prefetch, "mod-prefetch") \
|
||||||
EM(netfs_whole_folio_modify, "mod-whole-f") \
|
EM(netfs_whole_folio_modify, "mod-whole-f") \
|
||||||
|
|
@ -139,7 +138,6 @@
|
||||||
EM(netfs_flush_content, "flush") \
|
EM(netfs_flush_content, "flush") \
|
||||||
EM(netfs_streaming_filled_page, "mod-streamw-f") \
|
EM(netfs_streaming_filled_page, "mod-streamw-f") \
|
||||||
EM(netfs_streaming_cont_filled_page, "mod-streamw-f+") \
|
EM(netfs_streaming_cont_filled_page, "mod-streamw-f+") \
|
||||||
/* The rest are for writeback */ \
|
|
||||||
EM(netfs_folio_trace_cancel_copy, "cancel-copy") \
|
EM(netfs_folio_trace_cancel_copy, "cancel-copy") \
|
||||||
EM(netfs_folio_trace_clear, "clear") \
|
EM(netfs_folio_trace_clear, "clear") \
|
||||||
EM(netfs_folio_trace_clear_cc, "clear-cc") \
|
EM(netfs_folio_trace_clear_cc, "clear-cc") \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user