Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
6185ab4b
Commit
6185ab4b
authored
Sep 11, 2009
by
Alexey Dobriyan
Committed by
James Toy
Sep 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by:
Andrew Morton
<
akpm@linux-foundation.org
>
parent
4ecfb6fb
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
15 additions
and
15 deletions
+15
-15
fs/btrfs/disk-io.c
fs/btrfs/disk-io.c
+1
-1
fs/btrfs/inode.c
fs/btrfs/inode.c
+4
-4
fs/ecryptfs/ecryptfs_kernel.h
fs/ecryptfs/ecryptfs_kernel.h
+1
-1
fs/ecryptfs/mmap.c
fs/ecryptfs/mmap.c
+1
-1
fs/nilfs2/btnode.c
fs/nilfs2/btnode.c
+1
-1
fs/nilfs2/gcinode.c
fs/nilfs2/gcinode.c
+1
-1
fs/nilfs2/inode.c
fs/nilfs2/inode.c
+1
-1
fs/nilfs2/mdt.c
fs/nilfs2/mdt.c
+1
-1
fs/nilfs2/nilfs.h
fs/nilfs2/nilfs.h
+1
-1
fs/omfs/file.c
fs/omfs/file.c
+1
-1
fs/omfs/omfs.h
fs/omfs/omfs.h
+1
-1
fs/ubifs/xattr.c
fs/ubifs/xattr.c
+1
-1
No files found.
fs/btrfs/disk-io.c
View file @
6185ab4b
...
...
@@ -772,7 +772,7 @@ static void btree_invalidatepage(struct page *page, unsigned long offset)
}
}
static
struct
address_space_operations
btree_aops
=
{
static
const
struct
address_space_operations
btree_aops
=
{
.
readpage
=
btree_readpage
,
.
writepage
=
btree_writepage
,
.
writepages
=
btree_writepages
,
...
...
fs/btrfs/inode.c
View file @
6185ab4b
...
...
@@ -60,8 +60,8 @@ static struct inode_operations btrfs_symlink_inode_operations;
static
struct
inode_operations
btrfs_dir_ro_inode_operations
;
static
struct
inode_operations
btrfs_special_inode_operations
;
static
struct
inode_operations
btrfs_file_inode_operations
;
static
struct
address_space_operations
btrfs_aops
;
static
struct
address_space_operations
btrfs_symlink_aops
;
static
const
struct
address_space_operations
btrfs_aops
;
static
const
struct
address_space_operations
btrfs_symlink_aops
;
static
struct
file_operations
btrfs_dir_file_operations
;
static
struct
extent_io_ops
btrfs_extent_io_ops
;
...
...
@@ -5295,7 +5295,7 @@ static struct extent_io_ops btrfs_extent_io_ops = {
*
* For now we're avoiding this by dropping bmap.
*/
static
struct
address_space_operations
btrfs_aops
=
{
static
const
struct
address_space_operations
btrfs_aops
=
{
.
readpage
=
btrfs_readpage
,
.
writepage
=
btrfs_writepage
,
.
writepages
=
btrfs_writepages
,
...
...
@@ -5308,7 +5308,7 @@ static struct address_space_operations btrfs_aops = {
.
error_remove_page
=
generic_error_remove_page
,
};
static
struct
address_space_operations
btrfs_symlink_aops
=
{
static
const
struct
address_space_operations
btrfs_symlink_aops
=
{
.
readpage
=
btrfs_readpage
,
.
writepage
=
btrfs_writepage
,
.
invalidatepage
=
btrfs_invalidatepage
,
...
...
fs/ecryptfs/ecryptfs_kernel.h
View file @
6185ab4b
...
...
@@ -582,7 +582,7 @@ extern const struct inode_operations ecryptfs_dir_iops;
extern
const
struct
inode_operations
ecryptfs_symlink_iops
;
extern
const
struct
super_operations
ecryptfs_sops
;
extern
const
struct
dentry_operations
ecryptfs_dops
;
extern
struct
address_space_operations
ecryptfs_aops
;
extern
const
struct
address_space_operations
ecryptfs_aops
;
extern
int
ecryptfs_verbosity
;
extern
unsigned
int
ecryptfs_message_buf_len
;
extern
signed
long
ecryptfs_message_wait_timeout
;
...
...
fs/ecryptfs/mmap.c
View file @
6185ab4b
...
...
@@ -545,7 +545,7 @@ static sector_t ecryptfs_bmap(struct address_space *mapping, sector_t block)
return
rc
;
}
struct
address_space_operations
ecryptfs_aops
=
{
const
struct
address_space_operations
ecryptfs_aops
=
{
.
writepage
=
ecryptfs_writepage
,
.
readpage
=
ecryptfs_readpage
,
.
write_begin
=
ecryptfs_write_begin
,
...
...
fs/nilfs2/btnode.c
View file @
6185ab4b
...
...
@@ -46,7 +46,7 @@ void nilfs_btnode_cache_init_once(struct address_space *btnc)
INIT_LIST_HEAD
(
&
btnc
->
i_mmap_nonlinear
);
}
static
struct
address_space_operations
def_btnode_aops
=
{
static
const
struct
address_space_operations
def_btnode_aops
=
{
.
sync_page
=
block_sync_page
,
};
...
...
fs/nilfs2/gcinode.c
View file @
6185ab4b
...
...
@@ -52,7 +52,7 @@
#include "dat.h"
#include "ifile.h"
static
struct
address_space_operations
def_gcinode_aops
=
{
static
const
struct
address_space_operations
def_gcinode_aops
=
{
.
sync_page
=
block_sync_page
,
};
...
...
fs/nilfs2/inode.c
View file @
6185ab4b
...
...
@@ -238,7 +238,7 @@ nilfs_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
return
size
;
}
struct
address_space_operations
nilfs_aops
=
{
const
struct
address_space_operations
nilfs_aops
=
{
.
writepage
=
nilfs_writepage
,
.
readpage
=
nilfs_readpage
,
.
sync_page
=
block_sync_page
,
...
...
fs/nilfs2/mdt.c
View file @
6185ab4b
...
...
@@ -427,7 +427,7 @@ nilfs_mdt_write_page(struct page *page, struct writeback_control *wbc)
}
static
struct
address_space_operations
def_mdt_aops
=
{
static
const
struct
address_space_operations
def_mdt_aops
=
{
.
writepage
=
nilfs_mdt_write_page
,
.
sync_page
=
block_sync_page
,
};
...
...
fs/nilfs2/nilfs.h
View file @
6185ab4b
...
...
@@ -297,7 +297,7 @@ void nilfs_clear_gcdat_inode(struct the_nilfs *);
extern
struct
file_operations
nilfs_dir_operations
;
extern
struct
inode_operations
nilfs_file_inode_operations
;
extern
struct
file_operations
nilfs_file_operations
;
extern
struct
address_space_operations
nilfs_aops
;
extern
const
struct
address_space_operations
nilfs_aops
;
extern
struct
inode_operations
nilfs_dir_inode_operations
;
extern
struct
inode_operations
nilfs_special_inode_operations
;
extern
struct
inode_operations
nilfs_symlink_inode_operations
;
...
...
fs/omfs/file.c
View file @
6185ab4b
...
...
@@ -337,7 +337,7 @@ struct inode_operations omfs_file_inops = {
.
truncate
=
omfs_truncate
};
struct
address_space_operations
omfs_aops
=
{
const
struct
address_space_operations
omfs_aops
=
{
.
readpage
=
omfs_readpage
,
.
readpages
=
omfs_readpages
,
.
writepage
=
omfs_writepage
,
...
...
fs/omfs/omfs.h
View file @
6185ab4b
...
...
@@ -53,7 +53,7 @@ extern int omfs_is_bad(struct omfs_sb_info *sbi, struct omfs_header *header,
/* file.c */
extern
struct
file_operations
omfs_file_operations
;
extern
struct
inode_operations
omfs_file_inops
;
extern
struct
address_space_operations
omfs_aops
;
extern
const
struct
address_space_operations
omfs_aops
;
extern
void
omfs_make_empty_table
(
struct
buffer_head
*
bh
,
int
offset
);
extern
int
omfs_shrink_inode
(
struct
inode
*
inode
);
...
...
fs/ubifs/xattr.c
View file @
6185ab4b
...
...
@@ -79,7 +79,7 @@ enum {
};
static
const
struct
inode_operations
none_inode_operations
;
static
struct
address_space_operations
none_address_operations
;
static
const
struct
address_space_operations
none_address_operations
;
static
const
struct
file_operations
none_file_operations
;
/**
...
...
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