Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
E-EXK4 - Operating System Group
projects
Linux
Commits
89a58e32
Commit
89a58e32
authored
13 years ago
by
Benny Halevy
Committed by
Boaz Harrosh
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
NFSv4.1: use pnfs_generic_pg_test directly by layout driver
Signed-off-by:
Benny Halevy
<
bhalevy@panasas.com
>
parent
18ad0a9f
Loading
Loading
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
fs/nfs/nfs4filelayout.c
+3
-0
3 additions, 0 deletions
fs/nfs/nfs4filelayout.c
fs/nfs/objlayout/objio_osd.c
+1
-13
1 addition, 13 deletions
fs/nfs/objlayout/objio_osd.c
fs/nfs/pnfs.c
+9
-4
9 additions, 4 deletions
fs/nfs/pnfs.c
fs/nfs/pnfs.h
+4
-2
4 additions, 2 deletions
fs/nfs/pnfs.h
with
17 additions
and
19 deletions
fs/nfs/nfs4filelayout.c
+
3
−
0
View file @
89a58e32
...
...
@@ -661,6 +661,9 @@ filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
u64
p_stripe
,
r_stripe
;
u32
stripe_unit
;
if
(
!
pnfs_generic_pg_test
(
pgio
,
prev
,
req
))
return
0
;
if
(
!
pgio
->
pg_lseg
)
return
1
;
p_stripe
=
(
u64
)
prev
->
wb_index
<<
PAGE_CACHE_SHIFT
;
...
...
This diff is collapsed.
Click to expand it.
fs/nfs/objlayout/objio_osd.c
+
1
−
13
View file @
89a58e32
...
...
@@ -988,18 +988,6 @@ ssize_t objio_write_pagelist(struct objlayout_io_state *ol_state, bool stable)
return
_write_exec
(
ios
);
}
/*
* objlayout_pg_test(). Called by nfs_can_coalesce_requests()
*
* return true iff coalesce page
*/
bool
objlayout_pg_test
(
struct
nfs_pageio_descriptor
*
pgio
,
struct
nfs_page
*
prev
,
struct
nfs_page
*
req
)
{
return
true
;
}
static
struct
pnfs_layoutdriver_type
objlayout_type
=
{
.
id
=
LAYOUT_OSD2_OBJECTS
,
.
name
=
"LAYOUT_OSD2_OBJECTS"
,
...
...
@@ -1013,7 +1001,7 @@ static struct pnfs_layoutdriver_type objlayout_type = {
.
read_pagelist
=
objlayout_read_pagelist
,
.
write_pagelist
=
objlayout_write_pagelist
,
.
pg_test
=
objlayout
_pg_test
,
.
pg_test
=
pnfs_generic
_pg_test
,
.
free_deviceid_node
=
objio_free_deviceid_node
,
...
...
This diff is collapsed.
Click to expand it.
fs/nfs/pnfs.c
+
9
−
4
View file @
89a58e32
...
...
@@ -1067,12 +1067,17 @@ pnfs_generic_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
pgio
->
pg_count
,
access_type
,
gfp_flags
);
}
else
if
(
pgio
->
pg_lseg
&&
req_offset
(
req
)
>
end_offset
(
pgio
->
pg_lseg
->
pls_range
.
offset
,
pgio
->
pg_lseg
->
pls_range
.
length
))
return
true
;
}
if
(
pgio
->
pg_lseg
&&
req_offset
(
req
)
>
end_offset
(
pgio
->
pg_lseg
->
pls_range
.
offset
,
pgio
->
pg_lseg
->
pls_range
.
length
))
return
false
;
return
NFS_SERVER
(
pgio
->
pg_inode
)
->
pnfs_curr_ld
->
pg_test
(
pgio
,
prev
,
req
);
return
true
;
}
EXPORT_SYMBOL_GPL
(
pnfs_generic_pg_test
);
/*
* Called by non rpc-based layout drivers
...
...
This diff is collapsed.
Click to expand it.
fs/nfs/pnfs.h
+
4
−
2
View file @
89a58e32
...
...
@@ -295,8 +295,10 @@ static inline int pnfs_return_layout(struct inode *ino)
static
inline
void
pnfs_pageio_init
(
struct
nfs_pageio_descriptor
*
pgio
,
struct
inode
*
inode
)
{
if
(
NFS_SERVER
(
inode
)
->
pnfs_curr_ld
)
pgio
->
pg_test
=
pnfs_generic_pg_test
;
struct
pnfs_layoutdriver_type
*
ld
=
NFS_SERVER
(
inode
)
->
pnfs_curr_ld
;
if
(
ld
)
pgio
->
pg_test
=
ld
->
pg_test
;
}
#else
/* CONFIG_NFS_V4_1 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment