From: Vladimir Oltean <vladimir.oltean@nxp.com>
To: Simon Horman <simon.horman@corigine.com>
Cc: netdev@vger.kernel.org, "David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Jamal Hadi Salim <jhs@mojatatu.com>,
Cong Wang <xiyou.wangcong@gmail.com>,
Jiri Pirko <jiri@resnulli.us>,
Vinicius Costa Gomes <vinicius.gomes@intel.com>,
linux-kernel@vger.kernel.org, intel-wired-lan@lists.osuosl.org,
Muhammad Husaini Zulkifli <muhammad.husaini.zulkifli@intel.com>,
Peilin Ye <yepeilin.cs@gmail.com>,
Pedro Tammela <pctammela@mojatatu.com>,
Richard Cochran <richardcochran@gmail.com>,
Zhengchao Shao <shaozhengchao@huawei.com>,
Maxim Georgiev <glipus@gmail.com>
Subject: Re: [PATCH v2 net-next 6/9] net: netdevsim: create a mock-up PTP Hardware Clock driver
Date: Thu, 15 Jun 2023 01:17:18 +0300 [thread overview]
Message-ID: <20230614221718.cx6yjiwrpik4iesw@skbuf> (raw)
In-Reply-To: <ZIm8kK7plae8CLvV@corigine.com>
Hi Simon,
On Wed, Jun 14, 2023 at 03:11:44PM +0200, Simon Horman wrote:
> > +#define MOCK_PHC_CC_SHIFT 31
> > +#define MOCK_PHC_CC_MULT (1 << MOCK_PHC_CC_SHIFT)
>
> Maybe BIT()?
Sorry, not everything that is 1 << something has BIT() semantics.
This in particular is quite clearly just a multiplier factor
expressed as a power of 2.
> > +struct mock_phc *mock_phc_create(struct device *dev)
> > +{
> > + struct mock_phc *phc;
> > + int err;
> > +
> > + phc = kzalloc(sizeof(*phc), GFP_KERNEL);
> > + if (!phc) {
> > + err = -ENOMEM;
> > + goto out;
> > + }
> > +
> > + phc->info = (struct ptp_clock_info) {
> > + .owner = THIS_MODULE,
> > + .name = "Mock-up PTP clock",
> > + .max_adj = MOCK_PHC_MAX_ADJ_PPB,
> > + .adjfine = mock_phc_adjfine,
> > + .adjtime = mock_phc_adjtime,
> > + .gettime64 = mock_phc_gettime64,
> > + .settime64 = mock_phc_settime64,
> > + .do_aux_work = mock_phc_refresh,
> > + };
> > +
> > + phc->cc = (struct cyclecounter) {
> > + .read = mock_phc_cc_read,
> > + .mask = CYCLECOUNTER_MASK(64),
> > + .mult = MOCK_PHC_CC_MULT,
> > + .shift = MOCK_PHC_CC_SHIFT,
> > + };
> > +
> > + spin_lock_init(&phc->lock);
> > + timecounter_init(&phc->tc, &phc->cc, 0);
> > +
> > + phc->clock = ptp_clock_register(&phc->info, dev);
> > + if (IS_ERR_OR_NULL(phc->clock)) {
> > + err = PTR_ERR_OR_ZERO(phc->clock);
> > + goto out_free_phc;
> > + }
> > +
> > + ptp_schedule_worker(phc->clock, MOCK_PHC_REFRESH_INTERVAL);
> > +
> > + return phc;
> > +
> > +out_free_phc:
> > + kfree(phc);
> > +out:
> > + return ERR_PTR(err);
> > +}
>
> Smatch complains that ERR_PTR may be passed zero.
> Looking at the IS_ERR_OR_NULL block above, this does indeed seem to be the
> case.
The intention here had something to do with PTP being optional for the
caller (netdevsim). Not sure whether the implementation is the best -
and in particular whether ERR_PTR(0) is NULL or not. I guess this is
what the smatch warning (which I haven't looked at) is saying.
> Keeping Smatch happy is one thing - your call - but I do wonder if the
> caller of mock_phc_create() handles the NULL case correctly.
mock_phc_create() returns a pointer to an opaque data structure -
struct mock_phc - and the caller just carries that pointer around to the
other API calls exported by the mock_phc module. It doesn't need to care
whether the pointer is NULL or not, just the mock_phc module does (and
it does handle that part well, at least assuming that the pointer is NULL).
next prev parent reply other threads:[~2023-06-14 22:17 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-13 21:54 [PATCH v2 net-next 0/9] Improve the taprio qdisc's relationship with its children Vladimir Oltean
2023-06-13 21:54 ` [PATCH v2 net-next 1/9] net/sched: taprio: don't access q->qdiscs[] in unoffloaded mode during attach() Vladimir Oltean
2023-06-13 21:54 ` [PATCH v2 net-next 2/9] net/sched: taprio: keep child Qdisc refcount elevated at 2 in offload mode Vladimir Oltean
2023-06-13 21:54 ` [PATCH v2 net-next 3/9] net/sched: taprio: try again to report q->qdiscs[] to qdisc_leaf() Vladimir Oltean
2023-06-13 21:54 ` [PATCH v2 net-next 4/9] net/sched: taprio: delete misleading comment about preallocating child qdiscs Vladimir Oltean
2023-06-13 21:54 ` [PATCH v2 net-next 5/9] net/sched: taprio: dump class stats for the actual q->qdiscs[] Vladimir Oltean
2023-06-13 21:54 ` [PATCH v2 net-next 6/9] net: netdevsim: create a mock-up PTP Hardware Clock driver Vladimir Oltean
2023-06-14 13:11 ` Simon Horman
2023-06-14 22:17 ` Vladimir Oltean [this message]
2023-06-15 7:58 ` Simon Horman
2023-06-15 14:02 ` Dan Carpenter
2023-06-13 21:54 ` [PATCH v2 net-next 7/9] net: netdevsim: mimic tc-taprio offload Vladimir Oltean
2023-06-15 0:06 ` Vinicius Costa Gomes
2023-08-01 16:45 ` Vladimir Oltean
2023-08-01 17:39 ` Vinicius Costa Gomes
2023-08-01 17:43 ` Vladimir Oltean
2023-08-01 18:06 ` Vinicius Costa Gomes
2023-06-13 21:54 ` [PATCH v2 net-next 8/9] selftests/tc-testing: test that taprio can only be attached as root Vladimir Oltean
2023-06-14 16:44 ` Pedro Tammela
2023-06-13 21:54 ` [PATCH v2 net-next 9/9] selftests/tc-testing: verify that a qdisc can be grafted onto a taprio class Vladimir Oltean
2023-06-14 16:45 ` Pedro Tammela
2023-08-01 16:53 ` Vladimir Oltean
2023-06-14 16:47 ` [PATCH v2 net-next 0/9] Improve the taprio qdisc's relationship with its children Pedro Tammela
2023-08-01 16:06 ` Vladimir Oltean
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=20230614221718.cx6yjiwrpik4iesw@skbuf \
--to=vladimir.oltean@nxp.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=glipus@gmail.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=jhs@mojatatu.com \
--cc=jiri@resnulli.us \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=muhammad.husaini.zulkifli@intel.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=pctammela@mojatatu.com \
--cc=richardcochran@gmail.com \
--cc=shaozhengchao@huawei.com \
--cc=simon.horman@corigine.com \
--cc=vinicius.gomes@intel.com \
--cc=xiyou.wangcong@gmail.com \
--cc=yepeilin.cs@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