From: Greg KH <gregkh@linuxfoundation.org>
To: Taehee Yoo <ap420073@gmail.com>
Cc: davem@davemloft.net, kuba@kernel.org, rafael@kernel.org,
j.vosburgh@gmail.com, vfalico@gmail.com, andy@greyhouse.net,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
mitch.a.williams@intel.com
Subject: Re: [PATCH net v2 1/3] class: add class_has_file_ns() helper function
Date: Sat, 4 Apr 2020 17:50:40 +0200 [thread overview]
Message-ID: <20200404155040.GC1476305@kroah.com> (raw)
In-Reply-To: <20200404141827.26255-1-ap420073@gmail.com>
On Sat, Apr 04, 2020 at 02:18:27PM +0000, Taehee Yoo wrote:
> The new helper function is to check whether the class file is existing
> or not. This function will be used by networking stack to
> check "/sys/class/net/*" file.
>
> Reported-by: syzbot+830c6dbfc71edc4f0b8f@syzkaller.appspotmail.com
> Fixes: b76cdba9cdb2 ("[PATCH] bonding: add sysfs functionality to bonding (large)")
> Signed-off-by: Taehee Yoo <ap420073@gmail.com>
> ---
>
> v1 -> v2:
> - Implement class_has_file_ns() instead of class_find_and_get_file_ns().
> - Change headline.
> - Add kernel documentation comment.
>
> drivers/base/class.c | 22 ++++++++++++++++++++++
> include/linux/device/class.h | 3 ++-
> 2 files changed, 24 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/base/class.c b/drivers/base/class.c
> index bcd410e6d70a..a2f2787f6aa7 100644
> --- a/drivers/base/class.c
> +++ b/drivers/base/class.c
> @@ -105,6 +105,28 @@ void class_remove_file_ns(struct class *cls, const struct class_attribute *attr,
> sysfs_remove_file_ns(&cls->p->subsys.kobj, &attr->attr, ns);
> }
>
> +/**
> + * class_has_file_ns - check whether file is existing or not
> + * @cls: the compatibility class
> + * @name: name to look for
> + * @ns: the namespace tag to use
> + */
> +bool class_has_file_ns(struct class *cls, const char *name,
> + const void *ns)
Why would you use this? And what happens if the file shows up, or goes
away, instantly after this call is made?
This feels very broken.
greg k-h
next prev parent reply other threads:[~2020-04-04 15:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-04 14:18 [PATCH net v2 1/3] class: add class_has_file_ns() helper function Taehee Yoo
2020-04-04 15:50 ` Greg KH [this message]
2020-04-04 16:35 ` Taehee Yoo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200404155040.GC1476305@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=andy@greyhouse.net \
--cc=ap420073@gmail.com \
--cc=davem@davemloft.net \
--cc=j.vosburgh@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mitch.a.williams@intel.com \
--cc=netdev@vger.kernel.org \
--cc=rafael@kernel.org \
--cc=vfalico@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).