Re: [PATCH 2/2] ext4: Improve a size determination in two functions

2017-08-24 Thread Theodore Ts'o
On Sat, Aug 19, 2017 at 08:49:20PM -0500, Eric Sandeen wrote: > On 8/19/17 6:48 AM, SF Markus Elfring wrote: > > From: Markus Elfring > > Date: Sat, 19 Aug 2017 13:14:26 +0200 > > > > Replace the specification of data structures by pointer dereferences > > as the

Re: [PATCH 2/2] ext4: Improve a size determination in two functions

2017-08-24 Thread Theodore Ts'o
On Sat, Aug 19, 2017 at 08:49:20PM -0500, Eric Sandeen wrote: > On 8/19/17 6:48 AM, SF Markus Elfring wrote: > > From: Markus Elfring > > Date: Sat, 19 Aug 2017 13:14:26 +0200 > > > > Replace the specification of data structures by pointer dereferences > > as the parameter for the operator

Re: [PATCH 2/2] ext4: Improve a size determination in two functions

2017-08-19 Thread Eric Sandeen
On 8/19/17 6:48 AM, SF Markus Elfring wrote: > From: Markus Elfring > Date: Sat, 19 Aug 2017 13:14:26 +0200 > > Replace the specification of data structures by pointer dereferences > as the parameter for the operator "sizeof" to make the corresponding size >

Re: [PATCH 2/2] ext4: Improve a size determination in two functions

2017-08-19 Thread Eric Sandeen
On 8/19/17 6:48 AM, SF Markus Elfring wrote: > From: Markus Elfring > Date: Sat, 19 Aug 2017 13:14:26 +0200 > > Replace the specification of data structures by pointer dereferences > as the parameter for the operator "sizeof" to make the corresponding size > determination a bit safer according

[PATCH 2/2] ext4: Improve a size determination in two functions

2017-08-19 Thread SF Markus Elfring
From: Markus Elfring Date: Sat, 19 Aug 2017 13:14:26 +0200 Replace the specification of data structures by pointer dereferences as the parameter for the operator "sizeof" to make the corresponding size determination a bit safer according to the Linux coding style

[PATCH 2/2] ext4: Improve a size determination in two functions

2017-08-19 Thread SF Markus Elfring
From: Markus Elfring Date: Sat, 19 Aug 2017 13:14:26 +0200 Replace the specification of data structures by pointer dereferences as the parameter for the operator "sizeof" to make the corresponding size determination a bit safer according to the Linux coding style convention. This issue was