Changeset 4860 in vbox for trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
- Timestamp:
- Sep 17, 2007 3:45:24 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 24579
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r4822 r4860 42 42 43 43 if (!sf_d) { 44 LogRelPrintFunc("could not allocate directory info for"); 45 LogRelPrint(sf_i->path->String.utf8); 46 LogRelPrint("\n"); 44 LogRelFunc(("could not allocate directory info for %s\n", 45 sf_i->path->String.utf8)); 47 46 return -ENOMEM; 48 47 } … … 211 210 fake_ino = sanity; 212 211 if (sanity - fake_ino) { 213 LogRel PrintFunc("can not compute ino\n");212 LogRelFunc(("can not compute ino\n")); 214 213 return -EINVAL; 215 214 } … … 286 285 sf_new_i = kmalloc (sizeof (*sf_new_i), GFP_KERNEL); 287 286 if (!sf_new_i) { 288 LogRel PrintFunc("could not allocate memory for new inode info\n");287 LogRelFunc(("could not allocate memory for new inode info\n")); 289 288 err = -ENOMEM; 290 289 goto fail1; … … 337 336 sf_new_i = kmalloc (sizeof (*sf_new_i), GFP_KERNEL); 338 337 if (!sf_new_i) { 339 LogRelPrintFunc("could not allocate inode info. caller="); 340 LogRelPrint(caller); 341 LogRelPrint("\n"); 338 LogRelFunc(("could not allocate inode info. caller=%s\n", caller)); 342 339 err = -ENOMEM; 343 340 goto fail0;
Note:
See TracChangeset
for help on using the changeset viewer.