Hi Joakim,
On Tue, Sep 29, 2020 at 12:00 PM Joakim Bech via OP-TEE <
op-tee(a)lists.trustedfirmware.org> wrote:
> Hi Jorge,
>
> On Tue, 29 Sep 2020 at 11:49, Jorge Ramirez <jorge(a)foundries.io> wrote:
>
> > Hi Joakim
> >
> > Shall we discuss how we want to extend the criptodriver API were
> different
> > algorithms can be taken from different ciphers?
> > And maybe also how to communicate other than using the github frontend? I
> > think this is useful in the case of relatively complex PR.
> >
> Sounds good to me, I'm adding that to the agenda. This concludes that there
> _will_ be a LOC meeting tomorrow Wednesday 30th Sept @ 16.00 (UTC+2).
>
> Again, connection details etc can be found in the meeting notes document:
> http://bit.ly/loc-notes
Apologies for not joining, I had a calendar issue (my fault!).
Since the date for the next release is confirmed and coming soon, I will
create the release PR and send the notification email shortly.
Thanks,
--
Jerome
Hi Joakim
Shall we discuss how we want to extend the criptodriver API were different
algorithms can be taken from different ciphers?
And maybe also how to communicate other than using the github frontend? I
think this is useful in the case of relatively complex PR.
thanks
Jorge
On Mon, Sep 28, 2020 at 1:08 PM Joakim Bech via OP-TEE <
op-tee(a)lists.trustedfirmware.org> wrote:
> Hi,
>
> Just a reminder, I have seen no suggestions for topics and if I hear
> nothing until noon tomorrow 29/9 (UTC), then I'll cancel the September
> meeting.
>
> Regards,
> Joakim
>
>
> On Thu, 17 Sep 2020 at 11:19, Joakim Bech <joakim.bech(a)linaro.org> wrote:
>
> > Hi,
> >
> > LOC monthly meeting is planned to take place Sept 30 @ 16.00 (UTC+2).
> > Connection details can be found in the meeting notes document (link
> below).
> >
> > This email is a request to gather topics to discuss. If there are no
> > suggestions, then there will be no meeting (announced in this email
> thread,
> > if that's the case). To suggest a topic, either reply to this email
> thread
> > or add your topic directly into the meeting notes (or do both).
> >
> > Meeting details:
> > ---------------
> > Date/time: Wednesday Sept 30th(a)16.00 (UTC+2)
> > https://everytimezone.com/s/92bd296e
> > Invitation/connection details: In the meeting notes
> > Meeting notes: http://bit.ly/loc-notes
> > Project page: https://www.linaro.org/projects/#LOC
> >
> > Regards,
> > Joakim on behalf of the Linaro OP-TEE team
> >
>
Hi,
LOC monthly meeting is planned to take place Sept 30 @ 16.00 (UTC+2).
Connection details can be found in the meeting notes document (link below).
This email is a request to gather topics to discuss. If there are no
suggestions, then there will be no meeting (announced in this email thread,
if that's the case). To suggest a topic, either reply to this email thread
or add your topic directly into the meeting notes (or do both).
Meeting details:
---------------
Date/time: Wednesday Sept 30th(a)16.00 (UTC+2)
https://everytimezone.com/s/92bd296e
Invitation/connection details: In the meeting notes
Meeting notes: http://bit.ly/loc-notes
Project page: https://www.linaro.org/projects/#LOC
Regards,
Joakim on behalf of the Linaro OP-TEE team
sizeof() when applied to a pointer typed expression should gives the
size of the pointed data, even if the data is a pointer.
Signed-off-by: Liu Shixin <liushixin2(a)huawei.com>
---
drivers/tee/optee/shm_pool.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/tee/optee/shm_pool.c b/drivers/tee/optee/shm_pool.c
index d767eebf30bd..9fdc667b5df0 100644
--- a/drivers/tee/optee/shm_pool.c
+++ b/drivers/tee/optee/shm_pool.c
@@ -31,7 +31,7 @@ static int pool_op_alloc(struct tee_shm_pool_mgr *poolm,
unsigned int nr_pages = 1 << order, i;
struct page **pages;
- pages = kcalloc(nr_pages, sizeof(pages), GFP_KERNEL);
+ pages = kcalloc(nr_pages, sizeof(*pages), GFP_KERNEL);
if (!pages)
return -ENOMEM;
--
2.25.1