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
dadcb149
Commit
dadcb149
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
983feb23
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
fs/ext3/super.c
fs/ext3/super.c
+1
-1
fs/ext4/super.c
fs/ext4/super.c
+1
-1
fs/ocfs2/quota.h
fs/ocfs2/quota.h
+1
-1
fs/ocfs2/quota_global.c
fs/ocfs2/quota_global.c
+1
-1
fs/quota/dquot.c
fs/quota/dquot.c
+1
-1
fs/reiserfs/super.c
fs/reiserfs/super.c
+1
-1
include/linux/fs.h
include/linux/fs.h
+1
-1
include/linux/quotaops.h
include/linux/quotaops.h
+1
-1
No files found.
fs/ext3/super.c
View file @
dadcb149
...
...
@@ -720,7 +720,7 @@ static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data,
static
ssize_t
ext3_quota_write
(
struct
super_block
*
sb
,
int
type
,
const
char
*
data
,
size_t
len
,
loff_t
off
);
static
struct
dquot_operations
ext3_quota_operations
=
{
static
const
struct
dquot_operations
ext3_quota_operations
=
{
.
initialize
=
dquot_initialize
,
.
drop
=
dquot_drop
,
.
alloc_space
=
dquot_alloc_space
,
...
...
fs/ext4/super.c
View file @
dadcb149
...
...
@@ -977,7 +977,7 @@ static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
static
ssize_t
ext4_quota_write
(
struct
super_block
*
sb
,
int
type
,
const
char
*
data
,
size_t
len
,
loff_t
off
);
static
struct
dquot_operations
ext4_quota_operations
=
{
static
const
struct
dquot_operations
ext4_quota_operations
=
{
.
initialize
=
dquot_initialize
,
.
drop
=
dquot_drop
,
.
alloc_space
=
dquot_alloc_space
,
...
...
fs/ocfs2/quota.h
View file @
dadcb149
...
...
@@ -109,7 +109,7 @@ void ocfs2_unlock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex);
int
ocfs2_read_quota_block
(
struct
inode
*
inode
,
u64
v_block
,
struct
buffer_head
**
bh
);
extern
struct
dquot_operations
ocfs2_quota_operations
;
extern
const
struct
dquot_operations
ocfs2_quota_operations
;
extern
struct
quota_format_type
ocfs2_quota_format
;
int
ocfs2_quota_setup
(
void
);
...
...
fs/ocfs2/quota_global.c
View file @
dadcb149
...
...
@@ -850,7 +850,7 @@ static void ocfs2_destroy_dquot(struct dquot *dquot)
kmem_cache_free
(
ocfs2_dquot_cachep
,
dquot
);
}
struct
dquot_operations
ocfs2_quota_operations
=
{
const
struct
dquot_operations
ocfs2_quota_operations
=
{
.
initialize
=
dquot_initialize
,
.
drop
=
dquot_drop
,
.
alloc_space
=
dquot_alloc_space
,
...
...
fs/quota/dquot.c
View file @
dadcb149
...
...
@@ -1839,7 +1839,7 @@ EXPORT_SYMBOL(dquot_commit_info);
/*
* Definitions of diskquota operations.
*/
struct
dquot_operations
dquot_operations
=
{
const
struct
dquot_operations
dquot_operations
=
{
.
initialize
=
dquot_initialize
,
.
drop
=
dquot_drop
,
.
alloc_space
=
dquot_alloc_space
,
...
...
fs/reiserfs/super.c
View file @
dadcb149
...
...
@@ -615,7 +615,7 @@ static int reiserfs_mark_dquot_dirty(struct dquot *);
static
int
reiserfs_write_info
(
struct
super_block
*
,
int
);
static
int
reiserfs_quota_on
(
struct
super_block
*
,
int
,
int
,
char
*
,
int
);
static
struct
dquot_operations
reiserfs_quota_operations
=
{
static
const
struct
dquot_operations
reiserfs_quota_operations
=
{
.
initialize
=
dquot_initialize
,
.
drop
=
dquot_drop
,
.
alloc_space
=
dquot_alloc_space
,
...
...
include/linux/fs.h
View file @
dadcb149
...
...
@@ -1320,7 +1320,7 @@ struct super_block {
loff_t
s_maxbytes
;
/* Max file size */
struct
file_system_type
*
s_type
;
const
struct
super_operations
*
s_op
;
struct
dquot_operations
*
dq_op
;
const
struct
dquot_operations
*
dq_op
;
struct
quotactl_ops
*
s_qcop
;
const
struct
export_operations
*
s_export_op
;
unsigned
long
s_flags
;
...
...
include/linux/quotaops.h
View file @
dadcb149
...
...
@@ -135,7 +135,7 @@ static inline int sb_any_quota_active(struct super_block *sb)
/*
* Operations supported for diskquotas.
*/
extern
struct
dquot_operations
dquot_operations
;
extern
const
struct
dquot_operations
dquot_operations
;
extern
struct
quotactl_ops
vfs_quotactl_ops
;
#define sb_dquot_ops (&dquot_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