misc.c (7a9787e1eba95a166265e6a260cf30af04ef0a99) | misc.c (9e975dae2970d22557662761c8505ce9fd165684) |
---|---|
1/* 2 * linux/fs/fat/misc.c 3 * 4 * Written 1992,1993 by Werner Almesberger 5 * 22/11/2000 - Fixed fat_date_unix2dos for dates earlier than 01/01/1980 6 * and date_dos2unix for date==0 by Igor Zhbanov(bsg@uniyar.ac.ru) 7 */ 8 9#include <linux/module.h> 10#include <linux/fs.h> | 1/* 2 * linux/fs/fat/misc.c 3 * 4 * Written 1992,1993 by Werner Almesberger 5 * 22/11/2000 - Fixed fat_date_unix2dos for dates earlier than 01/01/1980 6 * and date_dos2unix for date==0 by Igor Zhbanov(bsg@uniyar.ac.ru) 7 */ 8 9#include <linux/module.h> 10#include <linux/fs.h> |
11#include <linux/msdos_fs.h> | |
12#include <linux/buffer_head.h> | 11#include <linux/buffer_head.h> |
12#include "fat.h" |
|
13 14/* 15 * fat_fs_panic reports a severe file system problem and sets the file system 16 * read-only. The file system can be made writable again by remounting it. 17 */ 18void fat_fs_panic(struct super_block *s, const char *fmt, ...) 19{ 20 va_list args; --- 193 unchanged lines hidden --- | 13 14/* 15 * fat_fs_panic reports a severe file system problem and sets the file system 16 * read-only. The file system can be made writable again by remounting it. 17 */ 18void fat_fs_panic(struct super_block *s, const char *fmt, ...) 19{ 20 va_list args; --- 193 unchanged lines hidden --- |