Changeset 441 for trunk/kernel/fs


Ignore:
Timestamp:
May 9, 2018, 3:13:56 PM (6 years ago)
Author:
alain
Message:

Fix a bug in rpc_vmm_get_pte_client() function (bad RPC index).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/fs/vfs.c

    r438 r441  
    14411441            if( error )
    14421442            {
    1443                 printk("\n[ERROR] in %s : no memory for inode <%s> in path <%s>\n",
    1444                 __FUNCTION__ , name , pathname );
     1443                printk("\n[ERROR] in %s : thread %x cannot allocate inode for path <%s>\n",
     1444                __FUNCTION__ , this , pathname );
    14451445                return ENOMEM;
    14461446            }
     
    14641464            if ( error )
    14651465            {
    1466                 printk("\n[ERROR] in %s : core[%x,%d] / <%s> node not found in <%s>\n",
    1467                 __FUNCTION__ , local_cxy , this->core->lid , name , pathname );
     1466                printk("\n[ERROR] in %s : thread %x / <%s> node not found in <%s>\n",
     1467                __FUNCTION__ , this , name , pathname );
    14681468                return ENOENT;
    14691469            }
     
    14891489                if ( error )
    14901490                {
    1491                     printk("\n[ERROR] in %s : core[%x,%d] cannot access device for <%s>\n",
    1492                     __FUNCTION__ , local_cxy , this->core->lid , name );
     1491                    printk("\n[ERROR] in %s : thread %x / cannot access device for <%s>\n",
     1492                    __FUNCTION__ , this , name );
    14931493                    return EIO;
    14941494                }
     
    15191519        // if( error )
    15201520        // {
    1521         //     printk("\n[ERROR] in %s : permission denied for %s\n", __FUNCTION__ , name );
     1521        //     printk("\n[ERROR] in %s : thread %x / permission denied for %s\n",
     1522        //     __FUNCTION__ , this , name );
    15221523        //     return EACCES;
    15231524        // }
Note: See TracChangeset for help on using the changeset viewer.