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
41ed5300
Commit
41ed5300
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
dadcb149
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
11 additions
and
11 deletions
+11
-11
fs/cifs/cifsfs.c
fs/cifs/cifsfs.c
+2
-2
fs/ext3/super.c
fs/ext3/super.c
+1
-1
fs/ext4/super.c
fs/ext4/super.c
+1
-1
fs/ocfs2/super.c
fs/ocfs2/super.c
+1
-1
fs/quota/dquot.c
fs/quota/dquot.c
+1
-1
fs/reiserfs/super.c
fs/reiserfs/super.c
+1
-1
fs/xfs/linux-2.6/xfs_quotaops.c
fs/xfs/linux-2.6/xfs_quotaops.c
+1
-1
fs/xfs/linux-2.6/xfs_super.h
fs/xfs/linux-2.6/xfs_super.h
+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/cifs/cifsfs.c
View file @
41ed5300
...
...
@@ -50,7 +50,7 @@
#define CIFS_MAGIC_NUMBER 0xFF534D42
/* the first four bytes of SMB PDUs */
#ifdef CONFIG_CIFS_QUOTA
static
struct
quotactl_ops
cifs_quotactl_ops
;
static
const
struct
quotactl_ops
cifs_quotactl_ops
;
#endif
/* QUOTA */
int
cifsFYI
=
0
;
...
...
@@ -517,7 +517,7 @@ int cifs_xstate_get(struct super_block *sb, struct fs_quota_stat *qstats)
return
rc
;
}
static
struct
quotactl_ops
cifs_quotactl_ops
=
{
static
const
struct
quotactl_ops
cifs_quotactl_ops
=
{
.
set_xquota
=
cifs_xquota_set
,
.
get_xquota
=
cifs_xquota_get
,
.
set_xstate
=
cifs_xstate_set
,
...
...
fs/ext3/super.c
View file @
41ed5300
...
...
@@ -737,7 +737,7 @@ static const struct dquot_operations ext3_quota_operations = {
.
destroy_dquot
=
dquot_destroy
,
};
static
struct
quotactl_ops
ext3_qctl_operations
=
{
static
const
struct
quotactl_ops
ext3_qctl_operations
=
{
.
quota_on
=
ext3_quota_on
,
.
quota_off
=
vfs_quota_off
,
.
quota_sync
=
vfs_quota_sync
,
...
...
fs/ext4/super.c
View file @
41ed5300
...
...
@@ -998,7 +998,7 @@ static const struct dquot_operations ext4_quota_operations = {
.
destroy_dquot
=
dquot_destroy
,
};
static
struct
quotactl_ops
ext4_qctl_operations
=
{
static
const
struct
quotactl_ops
ext4_qctl_operations
=
{
.
quota_on
=
ext4_quota_on
,
.
quota_off
=
vfs_quota_off
,
.
quota_sync
=
vfs_quota_sync
,
...
...
fs/ocfs2/super.c
View file @
41ed5300
...
...
@@ -966,7 +966,7 @@ static int ocfs2_quota_off(struct super_block *sb, int type, int remount)
return
vfs_quota_disable
(
sb
,
type
,
DQUOT_LIMITS_ENABLED
);
}
static
struct
quotactl_ops
ocfs2_quotactl_ops
=
{
static
const
struct
quotactl_ops
ocfs2_quotactl_ops
=
{
.
quota_on
=
ocfs2_quota_on
,
.
quota_off
=
ocfs2_quota_off
,
.
quota_sync
=
vfs_quota_sync
,
...
...
fs/quota/dquot.c
View file @
41ed5300
...
...
@@ -2461,7 +2461,7 @@ out:
}
EXPORT_SYMBOL
(
vfs_set_dqinfo
);
struct
quotactl_ops
vfs_quotactl_ops
=
{
const
struct
quotactl_ops
vfs_quotactl_ops
=
{
.
quota_on
=
vfs_quota_on
,
.
quota_off
=
vfs_quota_off
,
.
quota_sync
=
vfs_quota_sync
,
...
...
fs/reiserfs/super.c
View file @
41ed5300
...
...
@@ -632,7 +632,7 @@ static const struct dquot_operations reiserfs_quota_operations = {
.
destroy_dquot
=
dquot_destroy
,
};
static
struct
quotactl_ops
reiserfs_qctl_operations
=
{
static
const
struct
quotactl_ops
reiserfs_qctl_operations
=
{
.
quota_on
=
reiserfs_quota_on
,
.
quota_off
=
vfs_quota_off
,
.
quota_sync
=
vfs_quota_sync
,
...
...
fs/xfs/linux-2.6/xfs_quotaops.c
View file @
41ed5300
...
...
@@ -150,7 +150,7 @@ xfs_fs_set_xquota(
return
-
xfs_qm_scall_setqlim
(
mp
,
id
,
xfs_quota_type
(
type
),
fdq
);
}
struct
quotactl_ops
xfs_quotactl_operations
=
{
const
struct
quotactl_ops
xfs_quotactl_operations
=
{
.
quota_sync
=
xfs_fs_quota_sync
,
.
get_xstate
=
xfs_fs_get_xstate
,
.
set_xstate
=
xfs_fs_set_xstate
,
...
...
fs/xfs/linux-2.6/xfs_super.h
View file @
41ed5300
...
...
@@ -93,7 +93,7 @@ extern void xfs_blkdev_issue_flush(struct xfs_buftarg *);
extern
const
struct
export_operations
xfs_export_operations
;
extern
struct
xattr_handler
*
xfs_xattr_handlers
[];
extern
struct
quotactl_ops
xfs_quotactl_operations
;
extern
const
struct
quotactl_ops
xfs_quotactl_operations
;
#define XFS_M(sb) ((struct xfs_mount *)((sb)->s_fs_info))
...
...
include/linux/fs.h
View file @
41ed5300
...
...
@@ -1321,7 +1321,7 @@ struct super_block {
struct
file_system_type
*
s_type
;
const
struct
super_operations
*
s_op
;
const
struct
dquot_operations
*
dq_op
;
struct
quotactl_ops
*
s_qcop
;
const
struct
quotactl_ops
*
s_qcop
;
const
struct
export_operations
*
s_export_op
;
unsigned
long
s_flags
;
unsigned
long
s_magic
;
...
...
include/linux/quotaops.h
View file @
41ed5300
...
...
@@ -136,7 +136,7 @@ static inline int sb_any_quota_active(struct super_block *sb)
* Operations supported for diskquotas.
*/
extern
const
struct
dquot_operations
dquot_operations
;
extern
struct
quotactl_ops
vfs_quotactl_ops
;
extern
const
struct
quotactl_ops
vfs_quotactl_ops
;
#define sb_dquot_ops (&dquot_operations)
#define sb_quotactl_ops (&vfs_quotactl_ops)
...
...
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