Re: [PATCH v4 3/5] IMA: Refactor do_get_kexec_buffer() to call of_ functions directly

2020-08-27 Thread Thiago Jung Bauermann
Lakshmi Ramasubramanian writes: > do_get_kexec_buffer() calls another local function get_addr_size_cells() > to get the address and size of the IMA measurement log buffer stored in > the device tree. get_addr_size_cells() is small enough that it can be > merged into do_get_kexec_buffer() and a

[PATCH v4 3/5] IMA: Refactor do_get_kexec_buffer() to call of_ functions directly

2020-08-19 Thread Lakshmi Ramasubramanian
do_get_kexec_buffer() calls another local function get_addr_size_cells() to get the address and size of the IMA measurement log buffer stored in the device tree. get_addr_size_cells() is small enough that it can be merged into do_get_kexec_buffer() and a function call can be avoided. Refactor