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
20bc7252
Commit
20bc7252
authored
Jan 31, 2004
by
Nathan Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Revert botched merge where KM_NOFS check was unintentionally dropped.
SGI Modid: xfs-linux:xfs-kern:165631a
parent
dd68c5de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
fs/xfs/linux/kmem.h
fs/xfs/linux/kmem.h
+1
-1
No files found.
fs/xfs/linux/kmem.h
View file @
20bc7252
...
@@ -90,7 +90,7 @@ kmem_flags_convert(int flags)
...
@@ -90,7 +90,7 @@ kmem_flags_convert(int flags)
lflags
=
(
flags
&
KM_NOSLEEP
)
?
GFP_ATOMIC
:
(
GFP_KERNEL
|
__GFP_NOFAIL
);
lflags
=
(
flags
&
KM_NOSLEEP
)
?
GFP_ATOMIC
:
(
GFP_KERNEL
|
__GFP_NOFAIL
);
/* avoid recusive callbacks to filesystem during transactions */
/* avoid recusive callbacks to filesystem during transactions */
if
(
PFLAGS_TEST_FSTRANS
())
if
(
PFLAGS_TEST_FSTRANS
()
||
(
flags
&
KM_NOFS
)
)
lflags
&=
~
__GFP_FS
;
lflags
&=
~
__GFP_FS
;
return
lflags
;
return
lflags
;
...
...
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