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
a14b67e9
Commit
a14b67e9
authored
Aug 13, 2002
by
Dave Kleikamp
Browse files
Options
Browse Files
Download
Plain Diff
Manual merge
parents
fcc6fcc6
0ccddf94
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
fs/jfs/jfs_txnmgr.c
fs/jfs/jfs_txnmgr.c
+2
-2
fs/jfs/resize.c
fs/jfs/resize.c
+1
-2
No files found.
fs/jfs/jfs_txnmgr.c
View file @
a14b67e9
...
@@ -2755,7 +2755,7 @@ void txLazyCommit(tblock_t * tblk)
...
@@ -2755,7 +2755,7 @@ void txLazyCommit(tblock_t * tblk)
* context, or where blocking is not wanted, this routine will process
* context, or where blocking is not wanted, this routine will process
* committed transactions from the unlock queue.
* committed transactions from the unlock queue.
*/
*/
int
jfs_lazycommit
(
void
)
int
jfs_lazycommit
(
void
*
arg
)
{
{
int
WorkDone
;
int
WorkDone
;
tblock_t
*
tblk
;
tblock_t
*
tblk
;
...
@@ -2952,7 +2952,7 @@ void txResume(struct super_block *sb)
...
@@ -2952,7 +2952,7 @@ void txResume(struct super_block *sb)
* We write any inodes that have anonymous tlocks so they will become
* We write any inodes that have anonymous tlocks so they will become
* available.
* available.
*/
*/
int
jfs_sync
(
void
)
int
jfs_sync
(
void
*
arg
)
{
{
struct
inode
*
ip
;
struct
inode
*
ip
;
struct
jfs_inode_info
*
jfs_ip
;
struct
jfs_inode_info
*
jfs_ip
;
...
...
fs/jfs/resize.c
View file @
a14b67e9
...
@@ -312,8 +312,7 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
...
@@ -312,8 +312,7 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
/* compute number of blocks that can be extended by current mapfile */
/* compute number of blocks that can be extended by current mapfile */
t64
=
dbMapFileSizeToMapSize
(
ipbmap
);
t64
=
dbMapFileSizeToMapSize
(
ipbmap
);
if
(
mapSize
>
t64
)
{
if
(
mapSize
>
t64
)
{
printk
(
KERN_ERR
printk
(
KERN_ERR
"jfs_extendfs: mapSize (0x%Lx) > t64 (0x%Lx)
\n
"
,
"jfs_extendfs: mapSize (0x%llx) > t64 (0x%llx)
\n
"
,
(
long
long
)
mapSize
,
(
long
long
)
t64
);
(
long
long
)
mapSize
,
(
long
long
)
t64
);
rc
=
EIO
;
rc
=
EIO
;
goto
error_out
;
goto
error_out
;
...
...
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