diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-03-17 15:54:20 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-17 23:39:29 -0700 |
commit | 2de9780f75076c1a1f122cbd39df0fa545284724 (patch) | |
tree | 89dd1c24707c31920991b5171247ef3feb02f856 /net/core | |
parent | 6497ca07f5e91131c6c05e4564d7f98a780aa02b (diff) | |
download | linux-2de9780f75076c1a1f122cbd39df0fa545284724.tar.gz linux-2de9780f75076c1a1f122cbd39df0fa545284724.tar.bz2 linux-2de9780f75076c1a1f122cbd39df0fa545284724.zip |
net: core: dev.c: fix a documentation warning
There's a markup for link with is "foo_". On this kernel-doc
comment, we don't want this, but instead, place a literal
reference. So, escape the literal with ``foo``, in order to
avoid this warning:
./net/core/dev.c:5195: WARNING: Unknown target name: "page_is".
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index c6c985fe7b1b..402a986659cf 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -5195,7 +5195,7 @@ static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc) * * More direct receive version of netif_receive_skb(). It should * only be used by callers that have a need to skip RPS and Generic XDP. - * Caller must also take care of handling if (page_is_)pfmemalloc. + * Caller must also take care of handling if ``(page_is_)pfmemalloc``. * * This function may only be called from softirq context and interrupts * should be enabled. |