From: Thomas Gleixner <tglx@linutronix.de>
To: Li zeming <zeming@nfschina.com>, jstultz@google.com, sboyd@kernel.org
Cc: linux-kernel@vger.kernel.org, Li zeming <zeming@nfschina.com>
Subject: Re: [PATCH] time: alarmtimer: Optimization function return value
Date: Sat, 10 Jun 2023 14:20:10 +0200 [thread overview]
Message-ID: <871qija4qt.ffs@tglx> (raw)
In-Reply-To: <20230609180955.4357-1-zeming@nfschina.com>
On Sat, Jun 10 2023 at 02:09, Li zeming wrote:
> if (!test_bit(RTC_FEATURE_ALARM, rtc->features))
> - return -1;
> + return -EPERM;
I know you are only replacing the -1, but EPERM does not make any sense
here. It's not a permission problem, it's the lack of a feature. So the
proper code is -ENODEV.
> if (!device_may_wakeup(rtc->dev.parent))
> - return -1;
> + return -EPERM;
Ditto
> pdev = platform_device_register_data(dev, "alarmtimer",
> PLATFORM_DEVID_AUTO, NULL, 0);
> @@ -104,7 +104,7 @@ static int alarmtimer_rtc_add_device(struct device *dev)
> spin_lock_irqsave(&rtcdev_lock, flags);
> if (!IS_ERR(pdev) && !rtcdev) {
> if (!try_module_get(rtc->owner)) {
> - ret = -1;
> + ret = -EPERM;
Same here.
But this error case is broken because it does not undo the
device_init_wakeup(&pdev->dev, true);
So this needs
+ device_init_wakeup(&pdev->dev, false);
before the goto
> goto unlock;
> }
>
> @@ -113,7 +113,7 @@ static int alarmtimer_rtc_add_device(struct device *dev)
> get_device(dev);
> pdev = NULL;
> } else {
> - ret = -1;
> + ret = -EPERM;
ENODEV
> }
So please do not blindly replace something without actually analysing
it. There is a reason why these things are not just "fixed" with a
script.
Thanks,
tglx
prev parent reply other threads:[~2023-06-10 12:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-09 18:09 [PATCH] time: alarmtimer: Optimization function return value Li zeming
2023-06-10 12:20 ` Thomas Gleixner [this message]
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=871qija4qt.ffs@tglx \
--to=tglx@linutronix.de \
--cc=jstultz@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sboyd@kernel.org \
--cc=zeming@nfschina.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.