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
83185ed3
Commit
83185ed3
authored
Aug 19, 2002
by
Dave Kleikamp
Browse files
Options
Browse Files
Download
Plain Diff
Merge jfs@jfs.bkbits.net:linux-2.5
into kleikamp.austin.ibm.com:/home/shaggy/bk/jfs-2.5
parents
0ee29e60
220f37ea
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 @
83185ed3
...
...
@@ -2755,7 +2755,7 @@ void txLazyCommit(tblock_t * tblk)
* context, or where blocking is not wanted, this routine will process
* committed transactions from the unlock queue.
*/
int
jfs_lazycommit
(
void
)
int
jfs_lazycommit
(
void
*
arg
)
{
int
WorkDone
;
tblock_t
*
tblk
;
...
...
@@ -2952,7 +2952,7 @@ void txResume(struct super_block *sb)
* We write any inodes that have anonymous tlocks so they will become
* available.
*/
int
jfs_sync
(
void
)
int
jfs_sync
(
void
*
arg
)
{
struct
inode
*
ip
;
struct
jfs_inode_info
*
jfs_ip
;
...
...
fs/jfs/resize.c
View file @
83185ed3
...
...
@@ -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 */
t64
=
dbMapFileSizeToMapSize
(
ipbmap
);
if
(
mapSize
>
t64
)
{
printk
(
KERN_ERR
"jfs_extendfs: mapSize (0x%llx) > t64 (0x%llx)
\n
"
,
printk
(
KERN_ERR
"jfs_extendfs: mapSize (0x%Lx) > t64 (0x%Lx)
\n
"
,
(
long
long
)
mapSize
,
(
long
long
)
t64
);
rc
=
EIO
;
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