public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: ebiederm@xmission.com (Eric W. Biederman)
To: Kim Phillips <kim.phillips@arm.com>
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>,
	 Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	 Alex Williamson <alex.williamson@redhat.com>,
	 Andrew Morton <akpm@linux-foundation.org>,
	 David Howells <dhowells@redhat.com>,
	 Eric Auger <eric.auger@redhat.com>,
	 Gargi Sharma <gs051095@gmail.com>,
	 Geert Uytterhoeven <geert+renesas@glider.be>,
	 Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	 Kefeng Wang <wangkefeng.wang@huawei.com>,
	 Kirill Tkhai <ktkhai@virtuozzo.com>,
	 Mike Rapoport <rppt@linux.vnet.ibm.com>,
	 Oleg Nesterov <oleg@redhat.com>,
	 Pavel Tatashin <pasha.tatashin@oracle.com>,
	 Rik van Riel <riel@redhat.com>,
	 Robin Murphy <robin.murphy@arm.com>,
	 Russell King <linux@armlinux.org.uk>,
	 Thierry Reding <treding@nvidia.com>,
	 Todd Kjos <tkjos@google.com>,
	 linux-arm-kernel@lists.infradead.org,
	 linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/4] pid: Export find_task_by_vpid for use in external modules
Date: Tue, 08 May 2018 23:59:38 -0500	[thread overview]
Message-ID: <87d0y5toed.fsf@xmission.com> (raw)
In-Reply-To: <20180508140640.0e312dba025df75cbf205cdb@arm.com> (Kim Phillips's message of "Tue, 8 May 2018 14:06:40 -0500")

Kim Phillips <kim.phillips@arm.com> writes:

> This patch is in the context of allowing the Coresight h/w
> trace driver suite to be loaded as modules.  Coresight uses
> find_task_by_vpid when running in direct capture mode (via sysfs)
> when getting/setting the context ID comparator to trigger on
> (/sys/bus/coresight/devices/<x>.etm/ctxid_pid).

Aside from my objection about how bad an interface a pid in sysfs is.
The implementation of coresight_vpid_to_pid is horrible.

The code should be just:

static inline pid_t coresight_vpid_to_pid(pid_t vpid)
{
	rcu_read_lock();
        pid = pid_nr(find_vpid(vpid));
	rcu_read_unlock();

	return pid;
}
Which takes find_task_by_vpid out of the picture.

But reading further I am seeing code writing a pid to hardware.  That is
broken.  That is a layering violation of the first order.  Giving
implementation details like that to hardware.

Any chance while you are working on this you can modify this code so
that it does something sensible and defensible instead of every line of
code I read be wrong in at least one detail?

Thank you,
Eric

  parent reply	other threads:[~2018-05-09  4:59 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-08 19:06 [PATCH 2/4] pid: Export find_task_by_vpid for use in external modules Kim Phillips
2018-05-09  1:23 ` Eric W. Biederman
2018-05-09  4:59 ` Eric W. Biederman [this message]
2018-05-09 11:17   ` Robin Murphy
2018-05-09 15:25   ` Mathieu Poirier
2018-05-10  2:35     ` Eric W. Biederman
2018-05-10  8:40       ` Russell King - ARM Linux
2018-05-10 19:39         ` Mathieu Poirier
2018-05-10 19:44           ` Russell King - ARM Linux
2018-05-17  5:39             ` Eric W. Biederman

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=87d0y5toed.fsf@xmission.com \
    --to=ebiederm@xmission.com \
    --cc=akpm@linux-foundation.org \
    --cc=alex.williamson@redhat.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=dhowells@redhat.com \
    --cc=eric.auger@redhat.com \
    --cc=geert+renesas@glider.be \
    --cc=gregkh@linuxfoundation.org \
    --cc=gs051095@gmail.com \
    --cc=kim.phillips@arm.com \
    --cc=ktkhai@virtuozzo.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=mathieu.poirier@linaro.org \
    --cc=oleg@redhat.com \
    --cc=pasha.tatashin@oracle.com \
    --cc=riel@redhat.com \
    --cc=robin.murphy@arm.com \
    --cc=rppt@linux.vnet.ibm.com \
    --cc=tkjos@google.com \
    --cc=treding@nvidia.com \
    --cc=wangkefeng.wang@huawei.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