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
121dd68a
Commit
121dd68a
authored
Mar 04, 2003
by
Steve French
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux.bkbits.net/linux-2.5
into hostme.bitkeeper.com:/ua/repos/c/cifs/linux-2.5cifs
parents
13d67773
6b29b7bc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
fs/cifs/file.c
fs/cifs/file.c
+8
-4
No files found.
fs/cifs/file.c
View file @
121dd68a
...
...
@@ -393,7 +393,7 @@ cifs_partialpagewrite(struct page *page,unsigned from, unsigned to)
{
struct
address_space
*
mapping
=
page
->
mapping
;
loff_t
offset
=
(
loff_t
)
page
->
index
<<
PAGE_CACHE_SHIFT
;
char
*
write_data
=
kmap
(
page
)
;
char
*
write_data
;
int
rc
=
-
EFAULT
;
int
bytes_written
=
0
;
struct
cifs_sb_info
*
cifs_sb
;
...
...
@@ -411,6 +411,7 @@ cifs_partialpagewrite(struct page *page,unsigned from, unsigned to)
/* figure out which file struct to use
if (file->private_data == NULL) {
kunmap(page);
FreeXid(xid);
return -EBADF;
}
...
...
@@ -424,9 +425,11 @@ cifs_partialpagewrite(struct page *page,unsigned from, unsigned to)
}
offset
+=
(
loff_t
)
from
;
write_data
=
kmap
(
page
);
write_data
+=
from
;
if
((
to
>
PAGE_CACHE_SIZE
)
||
(
from
>
to
)
||
(
offset
>
mapping
->
host
->
i_size
))
{
kunmap
(
page
);
FreeXid
(
xid
);
return
-
EIO
;
}
...
...
@@ -459,6 +462,7 @@ cifs_partialpagewrite(struct page *page,unsigned from, unsigned to)
rc
=
-
EIO
;
}
kunmap
(
page
);
FreeXid
(
xid
);
return
rc
;
}
...
...
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