public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/1] efi_loader: debug output file handle in efi_file_open()
@ 2019-04-06 14:42 Heinrich Schuchardt
  2019-04-09  2:37 ` AKASHI Takahiro
  0 siblings, 1 reply; 3+ messages in thread
From: Heinrich Schuchardt @ 2019-04-06 14:42 UTC (permalink / raw)
  To: u-boot

For debugging it is helpful to know the address of the file handle created
by the Open() method of the EFI file protocol. So let's write it with
EFI_PRINT().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 lib/efi_loader/efi_file.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c
index 0483403be0d..39e37749fe2 100644
--- a/lib/efi_loader/efi_file.c
+++ b/lib/efi_loader/efi_file.c
@@ -257,10 +257,12 @@ static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,

 	/* Open file */
 	*new_handle = file_open(fh->fs, fh, file_name, open_mode, attributes);
-	if (*new_handle)
+	if (*new_handle) {
+		EFI_PRINT("file handle %p\n", *new_handle);
 		ret = EFI_SUCCESS;
-	else
+	} else {
 		ret = EFI_NOT_FOUND;
+	}
 out:
 	return EFI_EXIT(ret);
 }
--
2.20.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH 1/1] efi_loader: debug output file handle in efi_file_open()
  2019-04-06 14:42 [U-Boot] [PATCH 1/1] efi_loader: debug output file handle in efi_file_open() Heinrich Schuchardt
@ 2019-04-09  2:37 ` AKASHI Takahiro
  2019-04-09  3:43   ` Heinrich Schuchardt
  0 siblings, 1 reply; 3+ messages in thread
From: AKASHI Takahiro @ 2019-04-09  2:37 UTC (permalink / raw)
  To: u-boot

On Sat, Apr 06, 2019 at 04:42:56PM +0200, Heinrich Schuchardt wrote:
> For debugging it is helpful to know the address of the file handle created
> by the Open() method of the EFI file protocol. So let's write it with
> EFI_PRINT().

Just a question.
How will you use the address for debugging?

-Takahiro Akashi

> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> ---
>  lib/efi_loader/efi_file.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c
> index 0483403be0d..39e37749fe2 100644
> --- a/lib/efi_loader/efi_file.c
> +++ b/lib/efi_loader/efi_file.c
> @@ -257,10 +257,12 @@ static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,
> 
>  	/* Open file */
>  	*new_handle = file_open(fh->fs, fh, file_name, open_mode, attributes);
> -	if (*new_handle)
> +	if (*new_handle) {
> +		EFI_PRINT("file handle %p\n", *new_handle);
>  		ret = EFI_SUCCESS;
> -	else
> +	} else {
>  		ret = EFI_NOT_FOUND;
> +	}
>  out:
>  	return EFI_EXIT(ret);
>  }
> --
> 2.20.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH 1/1] efi_loader: debug output file handle in efi_file_open()
  2019-04-09  2:37 ` AKASHI Takahiro
@ 2019-04-09  3:43   ` Heinrich Schuchardt
  0 siblings, 0 replies; 3+ messages in thread
From: Heinrich Schuchardt @ 2019-04-09  3:43 UTC (permalink / raw)
  To: u-boot

On 4/9/19 4:37 AM, AKASHI Takahiro wrote:
> On Sat, Apr 06, 2019 at 04:42:56PM +0200, Heinrich Schuchardt wrote:
>> For debugging it is helpful to know the address of the file handle created
>> by the Open() method of the EFI file protocol. So let's write it with
>> EFI_PRINT().
>
> Just a question.
> How will you use the address for debugging?

The handle address is shown by EFI_ENTRY in SetInfo(), GetInfo(),
Read(), ...

This helped me to understand for which file GetInfo() was failing in the
EFI Shell.

Best regards

Heinrich

>
> -Takahiro Akashi
>
>> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
>> ---
>>  lib/efi_loader/efi_file.c | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c
>> index 0483403be0d..39e37749fe2 100644
>> --- a/lib/efi_loader/efi_file.c
>> +++ b/lib/efi_loader/efi_file.c
>> @@ -257,10 +257,12 @@ static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,
>>
>>  	/* Open file */
>>  	*new_handle = file_open(fh->fs, fh, file_name, open_mode, attributes);
>> -	if (*new_handle)
>> +	if (*new_handle) {
>> +		EFI_PRINT("file handle %p\n", *new_handle);
>>  		ret = EFI_SUCCESS;
>> -	else
>> +	} else {
>>  		ret = EFI_NOT_FOUND;
>> +	}
>>  out:
>>  	return EFI_EXIT(ret);
>>  }
>> --
>> 2.20.1
>>
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-09  3:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-06 14:42 [U-Boot] [PATCH 1/1] efi_loader: debug output file handle in efi_file_open() Heinrich Schuchardt
2019-04-09  2:37 ` AKASHI Takahiro
2019-04-09  3:43   ` Heinrich Schuchardt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox