repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add memtest support.
[syslinux-debian/hramrach.git]
/
core
/
fs
/
nonextextent.c
blob
0c1ce2cecaf58f2dfd5189c082dd09083b568687
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
}