Merge branch 'stable-4.7' of git://git.infradead.org/users/pcmoore/audit
[deliverable/linux.git] / drivers / mtd / tests / mtd_test.h
CommitLineData
084db4b0 1#include <linux/mtd/mtd.h>
2a6a28e7
RW
2#include <linux/sched.h>
3
4static inline int mtdtest_relax(void)
5{
6 cond_resched();
7 if (signal_pending(current)) {
8 pr_info("aborting test due to pending signal!\n");
9 return -EINTR;
10 }
11
12 return 0;
13}
084db4b0
AM
14
15int mtdtest_erase_eraseblock(struct mtd_info *mtd, unsigned int ebnum);
16int mtdtest_scan_for_bad_eraseblocks(struct mtd_info *mtd, unsigned char *bbt,
17 unsigned int eb, int ebcnt);
18int mtdtest_erase_good_eraseblocks(struct mtd_info *mtd, unsigned char *bbt,
19 unsigned int eb, int ebcnt);
20
21int mtdtest_read(struct mtd_info *mtd, loff_t addr, size_t size, void *buf);
22int mtdtest_write(struct mtd_info *mtd, loff_t addr, size_t size,
23 const void *buf);
This page took 0.167952 seconds and 5 git commands to generate.