Changeset 330


Ignore:
Timestamp:
Aug 7, 2017, 10:05:40 AM (7 years ago)
Author:
max@…
Message:

style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/mm/mapper.c

    r315 r330  
    213213
    214214            // update the mapper and index fields in page descriptor
    215             // required by the vfs_move_page_to_mapper() 
     215            // required by the vfs_move_page_to_mapper()
    216216            page->mapper = mapper;
    217217            page->index  = index;
     
    313313    uint8_t  * map_ptr;        // current mapper  address
    314314    uint8_t  * buf_ptr;        // current buffer  address
    315  
     315
    316316    mapper_dmsg("\n[INFO] %s : enters / to_buf = %d / buffer = %x\n",
    317317                __FUNCTION__ , to_buffer , buffer );
     
    359359
    360360        // move fragment
    361         if( to_buffer ) 
     361        if( to_buffer )
    362362        {
    363363            hal_copy_to_uspace( buf_ptr , map_ptr , page_count );
    364364        }
    365         else                 
     365        else
    366366        {
    367367            page_do_dirty( page );
     
    396396    uint8_t  * dst_ptr;        // destination buffer local pointer
    397397    cxy_t      dst_cxy;        // destination cluster
    398  
     398
    399399    mapper_dmsg("\n[INFO] %s : enters / to_buf = %d / buffer = %l / size = %x / cycle %d\n",
    400400                __FUNCTION__ , to_buffer , buffer_xp , size , hal_time_stamp() );
     
    449449        // get page base address
    450450        uint8_t * base = (uint8_t *)GET_PTR( XPTR( local_cxy , page ) );
    451        
     451
    452452        // compute source and destination pointers
    453453        if( to_buffer )
     
    469469        // move fragment
    470470        hal_remote_memcpy( XPTR( dst_cxy , dst_ptr ), XPTR( src_cxy , src_ptr ), page_count );
    471                            
     471
    472472        done += page_count;
    473473    }
Note: See TracChangeset for help on using the changeset viewer.