From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Amit Pundir <amit.pundir@linaro.org>
Cc: "Arve Hjønnevåg" <arve@android.com>,
"Alexander Viro" <viro@zeniv.linux.org.uk>,
"John Stultz" <john.stultz@linaro.org>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
"Android Kernel Team" <kernel-team@android.com>
Subject: Re: [RFC][PATCH v2] epoll: allow EPOLLWAKEUP flag if PM_SLEEP is enabled
Date: Wed, 13 Nov 2013 22:44:23 +0100 [thread overview]
Message-ID: <26648741.38OpUJA4ry@vostro.rjw.lan> (raw)
In-Reply-To: <CAMi1Hd06=-DrdoM7nFkOo5VFB2h7oYMc_7Y2ujop6d_vtWLgpw@mail.gmail.com>
On Wednesday, November 13, 2013 01:35:38 PM Amit Pundir wrote:
> On 13 November 2013 05:29, Rafael J. Wysocki <rjw@sisk.pl> wrote:
> > On Wednesday, November 13, 2013 02:22:28 AM Amit Pundir wrote:
> >> ep_create_wakeup_source() reports ENOMEM
> >
> > That needs to be fixed too. I suppose we can make the wakeup_source_register()
> > stub for CONFIG_PM_SLEEP unset return ERR_PTR(-ENOSYS) or something like that
> > and ep_create_wakeup_source() return that instead of -ENOMEM. It looks like
> > eventpoll.c is the only user of it built for CONFIG_PM_SLEEP unset, but that
> > needs to be double checked.
>
> Instead of modifying wakeup_source_register() stub, what if I make
> ep_create_wakeup_source() static inline as well and use its stub to
> return -ENOSYS when CONFIG_PM_SLEEP is not set?
> ep_create_wakeup_source() is used only in fs/eventpoll.c anyway.
Well, you can do that too.
> >> if wakeup_source_register()
> >> returns NULL. ep_create_wakeup_source() assumes that NULL is only
> >> returned if we run into ENOMEM but NULL is also returned when
> >> CONFIG_PM_SLEEP is disabled.
> >>
> >> Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
> >> ---
> >> Changed in v2:
> >> Using static inline functions instead of #ifdefs
> >> ---
> >> fs/eventpoll.c | 3 +--
> >> include/uapi/linux/eventpoll.h | 12 ++++++++++++
> >> 2 files changed, 13 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/fs/eventpoll.c b/fs/eventpoll.c
> >> index 473e09d..10f9c43 100644
> >> --- a/fs/eventpoll.c
> >> +++ b/fs/eventpoll.c
> >> @@ -1820,8 +1820,7 @@ SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd,
> >> goto error_tgt_fput;
> >>
> >> /* Check if EPOLLWAKEUP is allowed */
> >> - if ((epds.events & EPOLLWAKEUP) && !capable(CAP_BLOCK_SUSPEND))
> >> - epds.events &= ~EPOLLWAKEUP;
> >> + ep_epollwakeup_check(&epds.events);
> >
> > The "check" part of the name kind of suggests that the function will not change
> > things. What about ep_adjust_epollwakeup() or something along these lines?
>
> I see couple of ep_set_* functions in eventpoll.c. Does it make sense
> to have something like ep_set_epollwakeup()?
This particular one doesn't really set anything. I suppose that a name like
"ep_take_care_of_epollwakeup" might be somewhat closer to what it really does ...
Thanks!
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
next prev parent reply other threads:[~2013-11-13 21:32 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-12 20:52 Amit Pundir
2013-11-12 23:59 ` Rafael J. Wysocki
2013-11-13 8:05 ` Amit Pundir
2013-11-13 21:44 ` Rafael J. Wysocki [this message]
2013-11-14 16:29 ` Amit Pundir
2013-11-14 19:48 ` Rafael J. Wysocki
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=26648741.38OpUJA4ry@vostro.rjw.lan \
--to=rjw@sisk.pl \
--cc=amit.pundir@linaro.org \
--cc=arve@android.com \
--cc=john.stultz@linaro.org \
--cc=kernel-team@android.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
/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
all inboxes | Powered by JetHome®