Re: [PATCH RFT 3/3] ARM: tegra: dts: seaboard: enable keyboard

From: Laxman Dewangan
Date: Sat Jan 12 2013 - 06:07:06 EST


On Saturday 12 January 2013 04:17 PM, Russell King - ARM Linux wrote:
On Sat, Jan 12, 2013 at 04:04:28PM +0530, Laxman Dewangan wrote:
Going through clock driver, the clk_get() should return error pointer or
valid pointer, atleast not NULL.
No. clk_get() will return whatever value the 'clk' pointer found in
the clk_lookup structure contains. Or it will return an error pointer.

This topic has had enough discussion in the past that I'll say: go and
look up in the archives emails from me on this subject. I've been very
clear over the years about this.

Probably our clock driver is returning to NULL and hence issue is
becasue whole world, it check for IS_ERR or !IS_ERR() and null clk
pointer treated as !IS_ERR().
Probably not. As far as _drivers_ go, either the clk cookie is an error
(IS_ERR() is true) _OR_ it is valid to be passed back into the clock API.
You will find statements from me in the past to that: whatever clk_get()
returns which is _not_ an error must be accepted by the rest of the clk
API.

Ok, Should we document that after clk_get(), we should check for IS_ERR() only for validation. The way you explain earlier.
Documentation does not have this.
/**
struct clk *clk;
clk = clk_get(NULL, "my_gateable_clk");

clk_prepare(clk);
clk_enable(clk);
**/

The clk.h explain this:
* Returns a struct clk corresponding to the clock producer, or
* valid IS_ERR() condition containing errno.


The IS_ERR() return false for the null pointer. So as per you, it should be valid if the IS_ERR() false for returned pointer and hence NULL pointer should be valid for the clock driver.

Now we need to change the tegra_periph_reset_*() to accept the null pointer.


Drivers never dereference the returned clk, so why should they care about
anything other than "is it an error" given by IS_ERR(). (notice the lack
of question mark, that's not a question to be answered.)

The issue is that information is getting passed to other part fo driver where it is dereferencing the pointer. Probably we need to work on the reset part also to move as part of clock driver to avoid this crash.


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/