Displaying 2 results from an estimated 2 matches for "file_to_handl".
Did you mean:
file_to_handle
2015 Feb 10
3
[PATCH 0/2] fix a couple cosmetic issues
Fixes some typos and missing newlines
Jonathan Boeing (2):
fix a few typos
add missing '\n' to dprintf
com32/include/sys/module.h | 2 +-
com32/lib/sys/module/exec.c | 4 ++--
core/fs/fs.c | 2 +-
core/lwip/src/netif/undiif.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
--
2.3.0
2009 Oct 25
0
[fsc]Adding a generic path_lookup function in VFS
.../* for now, we just applied the universal path_lookup to EXTLINUX */
> if (strcmp(this_fs->fs_ops->fs_name, "ext2") != 0) {
> file->fs->fs_ops->searchdir(name, file);
>
> if (file->u1.open_file) {
> regs->esi.w[0] = file_to_handle(file);
> regs->eax.l = file->u2.file_len;
> regs->eflags.l &= ~EFLAGS_ZF;
> return;
> }
>
> goto err;
> }
>
then, followed by the generic path_lookup part.
And here is the inode struct:
> /*
>...