Changeset 441 for trunk/kernel/fs
- Timestamp:
- May 9, 2018, 3:13:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/fs/vfs.c
r438 r441 1441 1441 if( error ) 1442 1442 { 1443 printk("\n[ERROR] in %s : no memory for inode <%s> inpath <%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 ); 1445 1445 return ENOMEM; 1446 1446 } … … 1464 1464 if ( error ) 1465 1465 { 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 ); 1468 1468 return ENOENT; 1469 1469 } … … 1489 1489 if ( error ) 1490 1490 { 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 ); 1493 1493 return EIO; 1494 1494 } … … 1519 1519 // if( error ) 1520 1520 // { 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 ); 1522 1523 // return EACCES; 1523 1524 // }
Note: See TracChangeset
for help on using the changeset viewer.