Skip to content
  • Jens Axboe's avatar
    writeback: fix problem with !CONFIG_BLOCK compilation · c2c4986e
    Jens Axboe authored
    
    
    When CONFIG_BLOCK isn't enabled:
    
    mm/page-writeback.c: In function 'laptop_mode_timer_fn':
    mm/page-writeback.c:708: error: dereferencing pointer to incomplete type
    mm/page-writeback.c:709: error: dereferencing pointer to incomplete type
    
    Fix this by essentially eliminating the laptop sync handlers when
    CONFIG_BLOCK isn't set, as most are only used from the block layer code.
    The exception is laptop_sync_completion() which is used from sys_sync(),
    make that an empty declaration in that case.
    
    Reported-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
    Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
    c2c4986e