Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1456320
| Path | csiph.com!eternal-september.org!feeder.eternal-september.org!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Sebastian Frias <sf84@laposte.net> |
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/2] irqdomain: fix irq_domain_xlate_onetwocell() |
| Date | Thu, 04 Aug 2016 12:40:02 +0200 |
| Message-ID | <s2oee-7FS-25@gated-at.bofh.it> (permalink) |
| References | <s1E1I-2tq-15@gated-at.bofh.it> <s2oee-7FS-27@gated-at.bofh.it> |
| X-Original-To | Thomas Gleixner <tglx@linutronix.de> |
| Dkim-Signature | v=1; a=rsa-sha256; c=simple/simple; d=laposte.net; s=mail0; t=1470306709; bh=pcqlz8w6MXlTMaD3zcsNmrGc1mNsKvvzI8lD0oYH2IU=; h=Subject:To:References:Cc:From:Date:In-Reply-To; b=ToEnb2Ej1dpNnsS4w04/in/IgGImf4d3Pm4ccbz5/3V/E5FRMM+YcbifDNc4Ntdlt Dkrg6ZwYHDQbtbMc3paLVTH5AhOPuOc8UkMalzeu2jiF2HBUYgypsox+E9vEGJy7hp kRbf2tCEhRgwZuxw1FJyGNhMM3ulQc5097hzp1PfLLqSBN1/6Du0SXc80AVETDRKJ8 DJjd+KLcouvSFFt07L3S6omxSH8DR9aIu9fkkRnC+Dyl43IoIlcO6irBlnmwki0Eb5 U2rJC4WGPqz3ZSOdd5wDA52ZaD1cDqXXyy9+/cl47zK/0JvBj31joakpFqXxIwSFx8 OLhlI0mpyWWPA== |
| User-Agent | Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0 |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=windows-1252 |
| Content-Transfer-Encoding | 7bit |
| X-Vr-Srcip | 78.31.43.6 |
| X-Vr-Score | -100 |
| X-Vr-Cause-1 | gggruggvucftvghtrhhoucdtuddrfeeltddrkedvgddvhecutefuodetggdotefrodftvfcurfhrohhf |
| X-Vr-Cause-2 | ihhlvgemucfntefrqffuvffgnecuuegrihhlohhuthemucehtddtnecusecvtfgvtghiphhivghnthhs |
| X-Vr-Cause-3 | ucdlqddutddtmdenucfjughrpefuvfhfhffkffgfgggjtgfgsehtjegrtddtfeehnecuhfhrohhmpefu |
| X-Vr-Cause-4 | vggsrghsthhirghnucfhrhhirghsuceoshhfkeegsehlrghpohhsthgvrdhnvghtqeenucfkphepjeek |
| X-Vr-Cause-5 | rdefuddrgeefrdeinecurfgrrhgrmhepmhhouggvpehsmhhtphhouhhtpdhhvghloheplgdujedvrddv |
| X-Vr-Cause-6 | jedrtddrvddugegnpdhinhgvthepjeekrdefuddrgeefrdeipdhmrghilhhfrhhomhepshhfkeegsehl |
| X-Vr-Cause-7 | rghpohhsthgvrdhnvghtpdhrtghpthhtohepthhglhigsehlihhnuhhtrhhonhhigidruggv |
| X-Vr-Avstate | No |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 51 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Grant Likely <grant.likely@secretlab.ca>, Marc Zyngier <marc.zyngier@arm.com>, Jason Cooper <jason@lakedaemon.net>, LKML <linux-kernel@vger.kernel.org>, Mason <slash.tmp@free.fr> |
| X-Original-Date | Thu, 4 Aug 2016 12:31:48 +0200 |
| X-Original-Message-ID | <57A31994.7030503@laposte.net> |
| X-Original-References | <57A063B8.5050209@laposte.net> <alpine.DEB.2.20.1608041146540.5547@nanos> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1456320 |
Show key headers only | View raw
Hi Thomas,
On 08/04/2016 12:05 PM, Thomas Gleixner wrote:
> On Tue, 2 Aug 2016, Sebastian Frias wrote:
>
>> Use IRQ_TYPE_SENSE_MASK on irq_domain_xlate_onetwocell()
>>
>> According to the xlate() callback definition, the 'out_type' parameter
>> needs to be the "linux irq type". A mask for such bits exists,
>> IRQ_TYPE_SENSE_MASK, and as a matter of fact it is used in
>> irq_domain_xlate_twocell(), use it for irq_domain_xlate_onetwocell() as
>> well.
>>
>> Fixes: 16b2e6e2f31d ("irq_domain: Create common xlate functions that device
>> drivers can use")
>
> You seem to be obsessed by adding "Fixes" tags and 'Fix' to the $subject, but
> your changelog just babbles about making the code the same as in
> irq_domain_xlate_twocell() and avoids carefully to explain what is broken,
> what consequences that has and what the fix is.
I'm sorry but I think your comment above is unfair, so you could have omitted
it entirely.
>
> Now if you look at the call site which uses the xlate functions then you'll
> notice that we have a sanity check there already:
>
> if (irq_domain_translate(domain, fwspec, &hwirq, &type))
> return 0;
> /*
> * WARN if the irqchip returns a type with bits
> * outside the sense mask set and clear these bits.
> */
> if (WARN_ON(type & ~IRQ_TYPE_SENSE_MASK))
> type &= IRQ_TYPE_SENSE_MASK;
>
(for what is worth, my patch was based on a recent 4.7 that does not has the
code you mention above)
> So we better remove the masking in the xlate functions completely and let all
> the offending device trees trip over the warning so they get eventually fixed.
That's fine by me.
If you want I can submit a patch that does what you want (if so, should I use
"fixes" or not?), let me know.
Best regards,
Sebastian
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/2] irqdomain: fix irq_domain_xlate_onetwocell() Sebastian Frias <sf84@laposte.net> - 2016-08-02 11:20 +0200
Re: [PATCH 1/2] irqdomain: fix irq_domain_xlate_onetwocell() Thomas Gleixner <tglx@linutronix.de> - 2016-08-04 12:40 +0200
Re: [PATCH 1/2] irqdomain: fix irq_domain_xlate_onetwocell() Sebastian Frias <sf84@laposte.net> - 2016-08-04 12:40 +0200
Re: [PATCH 1/2] irqdomain: fix irq_domain_xlate_onetwocell() Thomas Gleixner <tglx@linutronix.de> - 2016-08-04 16:40 +0200
csiph-web