Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4f37393a
Commit
4f37393a
authored
May 11, 2002
by
Anton Altaparmakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NTFS 2.0.7 release: pure cleanups.
parent
ad9f1a7e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
16 deletions
+5
-16
fs/ntfs/ChangeLog
fs/ntfs/ChangeLog
+4
-0
fs/ntfs/aops.c
fs/ntfs/aops.c
+0
-6
fs/ntfs/mft.c
fs/ntfs/mft.c
+0
-2
fs/ntfs/ntfs.h
fs/ntfs/ntfs.h
+1
-8
No files found.
fs/ntfs/ChangeLog
View file @
4f37393a
...
...
@@ -28,6 +28,10 @@ ToDo:
- Remove much of the NULL struct element initializers.
- Various updates to make compatible with recent kernels.
- Remove defines of MAX_BUF_PER_PAGE and include linux/buffer_head.h
in fs/ntfs/ntfs.h instead.
- Remove no longer needed KERNEL_VERSION checks. We are now in the
kernel proper so they are no longer needed.
2.0.6 - Major bugfix to make compatible with other kernel changes.
...
...
fs/ntfs/aops.c
View file @
4f37393a
...
...
@@ -29,12 +29,6 @@
#include "ntfs.h"
#define MAX_BUF_PER_PAGE (PAGE_CACHE_SIZE / 512)
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,8)
#define page_buffers(page) (page)->buffers
#endif
/**
* end_buffer_read_file_async -
*
...
...
fs/ntfs/mft.c
View file @
4f37393a
...
...
@@ -25,8 +25,6 @@
#include "ntfs.h"
#define MAX_BUF_PER_PAGE (PAGE_CACHE_SIZE / 512)
/**
* __format_mft_record - initialize an empty mft record
* @m: mapped, pinned and locked for writing mft record
...
...
fs/ntfs/ntfs.h
View file @
4f37393a
...
...
@@ -26,14 +26,11 @@
#include <linux/version.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,5)
# error The NTFS driver requires at least kernel 2.5.5.
#endif
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/compiler.h>
#include <linux/fs.h>
#include <linux/buffer_head.h>
#include <linux/nls.h>
#include <linux/pagemap.h>
#include <linux/smp.h>
...
...
@@ -49,10 +46,6 @@
#include "attrib.h"
#include "mft.h"
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
typedef
long
sector_t
;
#endif
typedef
enum
{
NTFS_BLOCK_SIZE
=
512
,
NTFS_BLOCK_SIZE_BITS
=
9
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment