From: Mauro Carvalho Chehab Date: Tue, 17 Mar 2020 14:54:20 +0000 (+0100) Subject: net: core: dev.c: fix a documentation warning X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2de9780f75076c1a1f122cbd39df0fa545284724;p=linux.git 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 Signed-off-by: David S. Miller --- diff --git a/net/core/dev.c b/net/core/dev.c index c6c985fe7b1bc..402a986659cf5 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.