Commit a3aa9ff6 authored by Dave Jones's avatar Dave Jones

[PATCH] UDF write support problem in 2.5.7

 From Peter Osterlund <petero2@telia.com>

I can't get UDF write support to work in kernel 2.5.7 or 2.5.7-pre2.
The problem is that linux/config.h is not included, so CONFIG_UDF_RW
is undefined and the driver is compiled without write support. This
patch fixes my problem:
parent 4246fcb1
......@@ -34,6 +34,8 @@
#ifndef _UDF_FS_H
#define _UDF_FS_H 1
#include <linux/config.h>
#define UDF_PREALLOCATE
#define UDF_DEFAULT_PREALLOC_BLOCKS 8
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment