Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1241368 > unrolled thread
| Started by | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
|---|---|
| First post | 2015-10-07 13:10 +0200 |
| Last post | 2015-10-07 15:30 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file. Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-07 13:10 +0200
Re: [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file. Greg KH <gregkh@linuxfoundation.org> - 2015-10-07 15:00 +0200
Re: [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file. Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-07 15:30 +0200
| From | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
|---|---|
| Date | 2015-10-07 13:10 +0200 |
| Subject | [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file. |
| Message-ID | <qgULF-2Y1-25@gated-at.bofh.it> |
This patch sets the actual size of binary file to the nvmem size. Previously this was not possible as the core was using the static global data structures for attributes. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> --- drivers/nvmem/core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c index 0a70e31..737fa75 100644 --- a/drivers/nvmem/core.c +++ b/drivers/nvmem/core.c @@ -315,6 +315,7 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config) if (!nvmem->read_only) nvmem->bin.attr.mode |= S_IWUSR; + nvmem->bin.size = nvmem->size; device_initialize(&nvmem->dev); dev_dbg(&nvmem->dev, "Registering nvmem device %s\n", config->name); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2015-10-07 15:00 +0200 |
| Subject | Re: [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file. |
| Message-ID | <qgWu6-5fT-9@gated-at.bofh.it> |
| In reply to | #1241368 |
On Wed, Oct 07, 2015 at 12:00:55PM +0100, Srinivas Kandagatla wrote: > This patch sets the actual size of binary file to the nvmem size. > Previously this was not possible as the core was using the static global > data structures for attributes. > > Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> > --- > drivers/nvmem/core.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c > index 0a70e31..737fa75 100644 > --- a/drivers/nvmem/core.c > +++ b/drivers/nvmem/core.c > @@ -315,6 +315,7 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config) > if (!nvmem->read_only) > nvmem->bin.attr.mode |= S_IWUSR; > > + nvmem->bin.size = nvmem->size; Why does the size matter? What userspace tool needs to know this? thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
|---|---|
| Date | 2015-10-07 15:30 +0200 |
| Subject | Re: [PATCH v2 2/3] nvmem: core: set the size for the nvmem binary file. |
| Message-ID | <qgWX9-65g-45@gated-at.bofh.it> |
| In reply to | #1241460 |
On 07/10/15 13:56, Greg KH wrote: > On Wed, Oct 07, 2015 at 12:00:55PM +0100, Srinivas Kandagatla wrote: >> This patch sets the actual size of binary file to the nvmem size. >> Previously this was not possible as the core was using the static global >> data structures for attributes. >> >> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> >> --- >> drivers/nvmem/core.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c >> index 0a70e31..737fa75 100644 >> --- a/drivers/nvmem/core.c >> +++ b/drivers/nvmem/core.c >> @@ -315,6 +315,7 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config) >> if (!nvmem->read_only) >> nvmem->bin.attr.mode |= S_IWUSR; >> >> + nvmem->bin.size = nvmem->size; > > Why does the size matter? What userspace tool needs to know this? Yes, you are correct, sized should not matter as read would return EOF anyway. I think I overdone this :-) --srini > > thanks, > > greg k-h > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web