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
nexedi
linux
Commits
a736427f
Commit
a736427f
authored
Oct 20, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
missing const in alpha callers of do_mount()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
6f0c0580
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
arch/alpha/kernel/osf_sys.c
arch/alpha/kernel/osf_sys.c
+3
-3
No files found.
arch/alpha/kernel/osf_sys.c
View file @
a736427f
...
...
@@ -445,7 +445,7 @@ struct procfs_args {
* unhappy with OSF UFS. [CHECKME]
*/
static
int
osf_ufs_mount
(
char
*
dirname
,
struct
ufs_args
__user
*
args
,
int
flags
)
osf_ufs_mount
(
c
onst
c
har
*
dirname
,
struct
ufs_args
__user
*
args
,
int
flags
)
{
int
retval
;
struct
cdfs_args
tmp
;
...
...
@@ -465,7 +465,7 @@ osf_ufs_mount(char *dirname, struct ufs_args __user *args, int flags)
}
static
int
osf_cdfs_mount
(
char
*
dirname
,
struct
cdfs_args
__user
*
args
,
int
flags
)
osf_cdfs_mount
(
c
onst
c
har
*
dirname
,
struct
cdfs_args
__user
*
args
,
int
flags
)
{
int
retval
;
struct
cdfs_args
tmp
;
...
...
@@ -485,7 +485,7 @@ osf_cdfs_mount(char *dirname, struct cdfs_args __user *args, int flags)
}
static
int
osf_procfs_mount
(
char
*
dirname
,
struct
procfs_args
__user
*
args
,
int
flags
)
osf_procfs_mount
(
c
onst
c
har
*
dirname
,
struct
procfs_args
__user
*
args
,
int
flags
)
{
struct
procfs_args
tmp
;
...
...
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