Home | History | Annotate | Download | only in fs
      1 #include "fs.h"
      2 
      3 /*
      4  * Use this routine for the next_extent() pointer when we never should
      5  * be calling next_extent(), e.g. iso9660.
      6  */
      7 int no_next_extent(struct inode *inode, uint32_t lstart)
      8 {
      9     (void)inode;
     10     (void)lstart;
     11 
     12     return -1;
     13 }
     14