From: Alexander Riesen <alexander.riesen@cetitec.com>
To: linux-sparse@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Josh Triplett <josh@freedesktop.org>,
Christopher Li <sparse@chrisli.org>,
Johannes Berg <johannes@sipsolutions.net>
Subject: Why sparse does not support context tracking?
Date: Mon, 04 May 2015 13:05:22 +0200 [thread overview]
Message-ID: <55475272.90705@cetitec.com> (raw)
Hi,
I tried to instrument my code (a kernel driver) with __must_hold hints
and noticed that they don't really work: a definitely broken code caused
no errors from sparse.
A test in the "sparse" tree confirmed. Here is the test I used:
static int ctx;
static void must_hold(void) __attribute__((context(ctx,1,1)))
{
if (ctx)
;
}
static void bad_must_hold(void)
{
must_hold();
}
After a bit of looking I found a commit which removed context tracking
from the "sparse":
Author: Johannes Berg <johannes@sipsolutions.net> 2008-12-23 10:59:22
Revert the context tracking code
> Do you want to resend your change which revert the context changes?
> Make it base on Josh's git's tree and I will merge your changes in my
> branch.
Below. Or I can give it to you in git if you prefer. I still think we
should redo this in some form so that annotations with different
contexts can work properly, but I don't have time to take care of it
right now.
johannes
>From ca95b62edf1600a2b55ed9ca0515d049807a84fc Mon Sep 17 00:00:00 2001
From: Johannes Berg <johannes@sipsolutions.net>
Date: Tue, 23 Dec 2008 10:53:19 +0100
Subject: [PATCH] Revert context tracking code
So it seems that the code has problems with different contexts. Still, it seems
a bit heavy-handed to remove it completely (assuming it worked, of course).
The kernel even has a bit of use for it (not much, admittedly: DRBD and aoe).
Is it be possible to reintroduce the code at least for the same context?
So that it catches at least some locks not taken?
Regards,
Alex Riesen
next reply other threads:[~2015-05-04 11:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-04 11:05 Alexander Riesen [this message]
2015-05-04 13:38 ` Why sparse does not support context tracking? Johannes Berg
2015-05-04 14:05 ` Alexander Riesen
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=55475272.90705@cetitec.com \
--to=alexander.riesen@cetitec.com \
--cc=johannes@sipsolutions.net \
--cc=josh@freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sparse@vger.kernel.org \
--cc=sparse@chrisli.org \
/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).