Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1604625 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2017-03-20 15:30 +0100 |
| Last post | 2017-03-22 12:50 +0100 |
| Articles | 9 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Colin King <colin.king@canonical.com> - 2017-03-20 15:30 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Colin Ian King <colin.king@canonical.com> - 2017-03-22 12:50 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Dan Carpenter <dan.carpenter@oracle.com> - 2017-03-22 14:20 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-03-23 17:00 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-03-23 17:30 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Dan Carpenter <dan.carpenter@oracle.com> - 2017-03-23 17:50 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-03-23 19:20 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-03-23 17:00 +0100
Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> - 2017-03-22 12:50 +0100
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2017-03-20 15:30 +0100 |
| Subject | [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <tn6tP-5Wi-17@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
The comparison of an out of range index into space->context_tbl is
off-by-one and should be using >= rather than > in the comparison.
Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/char/tpm/tpm2-space.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
index d36d81e07076..009934269514 100644
--- a/drivers/char/tpm/tpm2-space.c
+++ b/drivers/char/tpm/tpm2-space.c
@@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
int i;
i = 0xFFFFFF - (vhandle & 0xFFFFFF);
- if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
+ if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
return false;
phandle = space->context_tbl[i];
--
2.11.0
[toc] | [next] | [standalone]
| From | Colin Ian King <colin.king@canonical.com> |
|---|---|
| Date | 2017-03-22 12:50 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <tnMW6-1La-25@gated-at.bofh.it> |
| In reply to | #1604625 |
On 22/03/17 11:42, Jarkko Sakkinen wrote:
> On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> The comparison of an out of range index into space->context_tbl is
>> off-by-one and should be using >= rather than > in the comparison.
>>
>> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
>>
>> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>> ---
>> drivers/char/tpm/tpm2-space.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
>> index d36d81e07076..009934269514 100644
>> --- a/drivers/char/tpm/tpm2-space.c
>> +++ b/drivers/char/tpm/tpm2-space.c
>> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
>> int i;
>>
>> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
>> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
>> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
>> return false;
>>
>> phandle = space->context_tbl[i];
>> --
>> 2.11.0
>
> Thanks. If you don't mind, I would squash this to that patch?
>
> /Jarkko
>
Sure squash it, and maybe add a Reported-by: Colin Ian King
<colin.king@canonical.com> if that's OK with you.
Colin
[toc] | [prev] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2017-03-22 14:20 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <tnOlc-2UB-19@gated-at.bofh.it> |
| In reply to | #1606400 |
On Wed, Mar 22, 2017 at 11:45:37AM +0000, Colin Ian King wrote:
> On 22/03/17 11:42, Jarkko Sakkinen wrote:
> > On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
> >> From: Colin Ian King <colin.king@canonical.com>
> >>
> >> The comparison of an out of range index into space->context_tbl is
> >> off-by-one and should be using >= rather than > in the comparison.
> >>
> >> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
> >>
> >> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
> >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> >> ---
> >> drivers/char/tpm/tpm2-space.c | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
> >> index d36d81e07076..009934269514 100644
> >> --- a/drivers/char/tpm/tpm2-space.c
> >> +++ b/drivers/char/tpm/tpm2-space.c
> >> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
> >> int i;
> >>
> >> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
> >> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> >> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> >> return false;
> >>
> >> phandle = space->context_tbl[i];
> >> --
> >> 2.11.0
> >
> > Thanks. If you don't mind, I would squash this to that patch?
> >
> > /Jarkko
> >
> Sure squash it, and maybe add a Reported-by: Colin Ian King
> <colin.king@canonical.com> if that's OK with you.
Reported-by isn't really correct though... We should have a Fixes-from:
tag for squashed fixes.
regards,
dan carpenter
[toc] | [prev] | [next] | [standalone]
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Date | 2017-03-23 17:00 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <todjA-4ib-17@gated-at.bofh.it> |
| In reply to | #1606461 |
On Wed, Mar 22, 2017 at 04:12:49PM +0300, Dan Carpenter wrote:
> On Wed, Mar 22, 2017 at 11:45:37AM +0000, Colin Ian King wrote:
> > On 22/03/17 11:42, Jarkko Sakkinen wrote:
> > > On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
> > >> From: Colin Ian King <colin.king@canonical.com>
> > >>
> > >> The comparison of an out of range index into space->context_tbl is
> > >> off-by-one and should be using >= rather than > in the comparison.
> > >>
> > >> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
> > >>
> > >> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
> > >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > >> ---
> > >> drivers/char/tpm/tpm2-space.c | 2 +-
> > >> 1 file changed, 1 insertion(+), 1 deletion(-)
> > >>
> > >> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
> > >> index d36d81e07076..009934269514 100644
> > >> --- a/drivers/char/tpm/tpm2-space.c
> > >> +++ b/drivers/char/tpm/tpm2-space.c
> > >> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
> > >> int i;
> > >>
> > >> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
> > >> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > >> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > >> return false;
> > >>
> > >> phandle = space->context_tbl[i];
> > >> --
> > >> 2.11.0
> > >
> > > Thanks. If you don't mind, I would squash this to that patch?
> > >
> > > /Jarkko
> > >
> > Sure squash it, and maybe add a Reported-by: Colin Ian King
> > <colin.king@canonical.com> if that's OK with you.
>
> Reported-by isn't really correct though... We should have a Fixes-from:
> tag for squashed fixes.
>
> regards,
> dan carpenter
Hmm... Maybe so depending on how you interpret Reported-by but
Fixes-from is not something that is used at the moment, is it?
/Jarkko
[toc] | [prev] | [next] | [standalone]
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Date | 2017-03-23 17:30 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <todMC-4Je-19@gated-at.bofh.it> |
| In reply to | #1607651 |
On Thu, Mar 23, 2017 at 05:53:58PM +0200, Jarkko Sakkinen wrote:
> On Wed, Mar 22, 2017 at 04:12:49PM +0300, Dan Carpenter wrote:
> > On Wed, Mar 22, 2017 at 11:45:37AM +0000, Colin Ian King wrote:
> > > On 22/03/17 11:42, Jarkko Sakkinen wrote:
> > > > On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
> > > >> From: Colin Ian King <colin.king@canonical.com>
> > > >>
> > > >> The comparison of an out of range index into space->context_tbl is
> > > >> off-by-one and should be using >= rather than > in the comparison.
> > > >>
> > > >> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
> > > >>
> > > >> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
> > > >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > > >> ---
> > > >> drivers/char/tpm/tpm2-space.c | 2 +-
> > > >> 1 file changed, 1 insertion(+), 1 deletion(-)
> > > >>
> > > >> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
> > > >> index d36d81e07076..009934269514 100644
> > > >> --- a/drivers/char/tpm/tpm2-space.c
> > > >> +++ b/drivers/char/tpm/tpm2-space.c
> > > >> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
> > > >> int i;
> > > >>
> > > >> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
> > > >> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > > >> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > > >> return false;
> > > >>
> > > >> phandle = space->context_tbl[i];
> > > >> --
> > > >> 2.11.0
> > > >
> > > > Thanks. If you don't mind, I would squash this to that patch?
> > > >
> > > > /Jarkko
> > > >
> > > Sure squash it, and maybe add a Reported-by: Colin Ian King
> > > <colin.king@canonical.com> if that's OK with you.
> >
> > Reported-by isn't really correct though... We should have a Fixes-from:
> > tag for squashed fixes.
> >
> > regards,
> > dan carpenter
>
> Hmm... Maybe so depending on how you interpret Reported-by but
> Fixes-from is not something that is used at the moment, is it?
>
> /Jarkko
When I started squashing the commit I realized what you meant so
I'm adding this to the commit:
Fixes-from: Colin Ian King <colin.king@canonical.com>
/Jarkko
[toc] | [prev] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2017-03-23 17:50 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <toe5Y-4Wc-25@gated-at.bofh.it> |
| In reply to | #1607651 |
On Thu, Mar 23, 2017 at 05:53:58PM +0200, Jarkko Sakkinen wrote:
> On Wed, Mar 22, 2017 at 04:12:49PM +0300, Dan Carpenter wrote:
> > On Wed, Mar 22, 2017 at 11:45:37AM +0000, Colin Ian King wrote:
> > > On 22/03/17 11:42, Jarkko Sakkinen wrote:
> > > > On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
> > > >> From: Colin Ian King <colin.king@canonical.com>
> > > >>
> > > >> The comparison of an out of range index into space->context_tbl is
> > > >> off-by-one and should be using >= rather than > in the comparison.
> > > >>
> > > >> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
> > > >>
> > > >> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
> > > >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > > >> ---
> > > >> drivers/char/tpm/tpm2-space.c | 2 +-
> > > >> 1 file changed, 1 insertion(+), 1 deletion(-)
> > > >>
> > > >> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
> > > >> index d36d81e07076..009934269514 100644
> > > >> --- a/drivers/char/tpm/tpm2-space.c
> > > >> +++ b/drivers/char/tpm/tpm2-space.c
> > > >> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
> > > >> int i;
> > > >>
> > > >> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
> > > >> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > > >> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > > >> return false;
> > > >>
> > > >> phandle = space->context_tbl[i];
> > > >> --
> > > >> 2.11.0
> > > >
> > > > Thanks. If you don't mind, I would squash this to that patch?
> > > >
> > > > /Jarkko
> > > >
> > > Sure squash it, and maybe add a Reported-by: Colin Ian King
> > > <colin.king@canonical.com> if that's OK with you.
> >
> > Reported-by isn't really correct though... We should have a Fixes-from:
> > tag for squashed fixes.
> >
> > regards,
> > dan carpenter
>
> Hmm... Maybe so depending on how you interpret Reported-by but
> Fixes-from is not something that is used at the moment, is it?
No, but we should create it.
regards,
dan carpenter
[toc] | [prev] | [next] | [standalone]
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Date | 2017-03-23 19:20 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <tofv4-615-7@gated-at.bofh.it> |
| In reply to | #1607699 |
On Thu, Mar 23, 2017 at 07:42:09PM +0300, Dan Carpenter wrote:
> On Thu, Mar 23, 2017 at 05:53:58PM +0200, Jarkko Sakkinen wrote:
> > On Wed, Mar 22, 2017 at 04:12:49PM +0300, Dan Carpenter wrote:
> > > On Wed, Mar 22, 2017 at 11:45:37AM +0000, Colin Ian King wrote:
> > > > On 22/03/17 11:42, Jarkko Sakkinen wrote:
> > > > > On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
> > > > >> From: Colin Ian King <colin.king@canonical.com>
> > > > >>
> > > > >> The comparison of an out of range index into space->context_tbl is
> > > > >> off-by-one and should be using >= rather than > in the comparison.
> > > > >>
> > > > >> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
> > > > >>
> > > > >> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
> > > > >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> > > > >> ---
> > > > >> drivers/char/tpm/tpm2-space.c | 2 +-
> > > > >> 1 file changed, 1 insertion(+), 1 deletion(-)
> > > > >>
> > > > >> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
> > > > >> index d36d81e07076..009934269514 100644
> > > > >> --- a/drivers/char/tpm/tpm2-space.c
> > > > >> +++ b/drivers/char/tpm/tpm2-space.c
> > > > >> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
> > > > >> int i;
> > > > >>
> > > > >> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
> > > > >> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > > > >> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> > > > >> return false;
> > > > >>
> > > > >> phandle = space->context_tbl[i];
> > > > >> --
> > > > >> 2.11.0
> > > > >
> > > > > Thanks. If you don't mind, I would squash this to that patch?
> > > > >
> > > > > /Jarkko
> > > > >
> > > > Sure squash it, and maybe add a Reported-by: Colin Ian King
> > > > <colin.king@canonical.com> if that's OK with you.
> > >
> > > Reported-by isn't really correct though... We should have a Fixes-from:
> > > tag for squashed fixes.
> > >
> > > regards,
> > > dan carpenter
> >
> > Hmm... Maybe so depending on how you interpret Reported-by but
> > Fixes-from is not something that is used at the moment, is it?
>
> No, but we should create it.
>
> regards,
> dan carpenter
Fully agreed. Using reported-by in the commit in question implies as if
the whole commit was proposed by Colin.
/Jarkko
[toc] | [prev] | [next] | [standalone]
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Date | 2017-03-23 17:00 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <todjA-4ib-23@gated-at.bofh.it> |
| In reply to | #1606400 |
On Wed, Mar 22, 2017 at 11:45:37AM +0000, Colin Ian King wrote:
> On 22/03/17 11:42, Jarkko Sakkinen wrote:
> > On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
> >> From: Colin Ian King <colin.king@canonical.com>
> >>
> >> The comparison of an out of range index into space->context_tbl is
> >> off-by-one and should be using >= rather than > in the comparison.
> >>
> >> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
> >>
> >> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
> >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> >> ---
> >> drivers/char/tpm/tpm2-space.c | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
> >> index d36d81e07076..009934269514 100644
> >> --- a/drivers/char/tpm/tpm2-space.c
> >> +++ b/drivers/char/tpm/tpm2-space.c
> >> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
> >> int i;
> >>
> >> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
> >> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> >> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> >> return false;
> >>
> >> phandle = space->context_tbl[i];
> >> --
> >> 2.11.0
> >
> > Thanks. If you don't mind, I would squash this to that patch?
> >
> > /Jarkko
> >
> Sure squash it, and maybe add a Reported-by: Colin Ian King
> <colin.king@canonical.com> if that's OK with you.
>
> Colin
Thanks I'll do that!
/Jarkko
[toc] | [prev] | [next] | [standalone]
| From | Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
|---|---|
| Date | 2017-03-22 12:50 +0100 |
| Subject | Re: [PATCH] tpm2: fix off-by-one comparison and out-of-bounds read error |
| Message-ID | <tnMW6-1La-21@gated-at.bofh.it> |
| In reply to | #1604625 |
On Mon, Mar 20, 2017 at 02:23:36PM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> The comparison of an out of range index into space->context_tbl is
> off-by-one and should be using >= rather than > in the comparison.
>
> Detected by CoverityScan, CID#1419694 ("Out-of-bounds read")
>
> Fixes: 849246e7ce9ce ("tpm2: add session handle context saving and restoring to the space code")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> drivers/char/tpm/tpm2-space.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/char/tpm/tpm2-space.c b/drivers/char/tpm/tpm2-space.c
> index d36d81e07076..009934269514 100644
> --- a/drivers/char/tpm/tpm2-space.c
> +++ b/drivers/char/tpm/tpm2-space.c
> @@ -229,7 +229,7 @@ static bool tpm2_map_to_phandle(struct tpm_space *space, void *handle)
> int i;
>
> i = 0xFFFFFF - (vhandle & 0xFFFFFF);
> - if (i > ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> + if (i >= ARRAY_SIZE(space->context_tbl) || !space->context_tbl[i])
> return false;
>
> phandle = space->context_tbl[i];
> --
> 2.11.0
Thanks. If you don't mind, I would squash this to that patch?
/Jarkko
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web