Changeset 401 for trunk/kernel/devices
- Timestamp:
- Aug 17, 2017, 3:02:18 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/devices/dev_ioc.c
r296 r401 99 99 thread_t * this = CURRENT_THREAD; // pointer on client thread 100 100 101 ioc_dmsg("\n[INFO] in%s : thread %x in process %x"101 ioc_dmsg("\n[INFO] %s : thread %x in process %x" 102 102 " for lba = %x / buffer = %x / at cycle %d\n", 103 103 __FUNCTION__ , this->trdid , this->process->pid , … … 159 159 uint32_t count ) 160 160 { 161 ioc_dmsg("\n[INFO] %s : enter in cluster %x\n",162 __FUNCTION__ , local_cxy );163 164 161 // get pointer on calling thread 165 162 thread_t * this = CURRENT_THREAD; 163 164 ioc_dmsg("\n[INFO] %s : core[%x,%d] enter for %d blocks / lba = %x / cycle %d\n", 165 __FUNCTION__ , local_cxy , this->core->lid , count , lba , hal_time_stamp() ); 166 166 167 167 // software L2/L3 cache coherence for memory buffer … … 199 199 dev_pic_enable_irq( lid , ioc_xp ); 200 200 201 ioc_dmsg("\n[INFO] %s : exit in cluster %x\n",202 __FUNCTION__ , local_cxy);201 ioc_dmsg("\n[INFO] %s : core[%x,%d] exit / error = %d / cycle %d\n", 202 __FUNCTION__ , local_cxy , this->core->lid , this->ioc_cmd.error , hal_time_stamp() ); 203 203 204 204 // return I/O operation status from calling thread descriptor
Note: See TracChangeset
for help on using the changeset viewer.