diff options
| author | Andrew Morton <akpm@digeo.com> | 2002-10-11 06:03:05 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-10-11 06:03:05 -0700 |
| commit | 77a32d766baae09ee411b87f07adbbd3ded5fa72 (patch) | |
| tree | 26dc0bc84f1d2845175e0d284b57c232a61c6226 /include/linux/jbd.h | |
| parent | eef57ec4b2d0a1c38bcb3fb839c58f42d006f33b (diff) | |
[PATCH] various fixes
- Fix some printk warnings in 3c59x.c (inl() now returns a long).
- ext3 warning fix from Stephen Hemminger: "__FUNCTION__ is a
constant and gcc warns about passing it as a mutuable string."
- Fix a return-with-BKL-held in isofs_readdir()
- paride 64-bit sector_t fix (Bill Irwin)
Diffstat (limited to 'include/linux/jbd.h')
| -rw-r--r-- | include/linux/jbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index fafb868eec11..5b1657fca68a 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h @@ -54,7 +54,7 @@ extern int journal_enable_debug; #define jbd_debug(f, a...) /**/ #endif -extern void * __jbd_kmalloc (char *where, size_t size, int flags, int retry); +extern void * __jbd_kmalloc (const char *where, size_t size, int flags, int retry); #define jbd_kmalloc(size, flags) \ __jbd_kmalloc(__FUNCTION__, (size), (flags), journal_oom_retry) #define jbd_rep_kmalloc(size, flags) \ |
