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
1000988c
Commit
1000988c
authored
Aug 16, 2004
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge intel.com:/home/lenb/bk/linux-2.6.8.1
into intel.com:/home/lenb/src/linux-acpi-test-2.6.8
parents
e73cd7c9
0b9aa6dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Makefile
Makefile
+1
-1
fs/nfs/file.c
fs/nfs/file.c
+2
-2
No files found.
Makefile
View file @
1000988c
VERSION
=
2
PATCHLEVEL
=
6
SUBLEVEL
=
8
EXTRAVERSION
=
EXTRAVERSION
=
.1
NAME
=
Zonked Quokka
# *DOCUMENTATION*
...
...
fs/nfs/file.c
View file @
1000988c
...
...
@@ -72,7 +72,7 @@ struct inode_operations nfs_file_inode_operations = {
static
int
nfs_check_flags
(
int
flags
)
{
if
(
flags
&
(
O_APPEND
|
O_DIRECT
))
if
(
(
flags
&
(
O_APPEND
|
O_DIRECT
))
==
(
O_APPEND
|
O_DIRECT
))
return
-
EINVAL
;
return
0
;
...
...
@@ -89,7 +89,7 @@ nfs_file_open(struct inode *inode, struct file *filp)
int
res
;
res
=
nfs_check_flags
(
filp
->
f_flags
);
if
(
!
res
)
if
(
res
)
return
res
;
lock_kernel
();
...
...
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