mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
Assorted JFS fixes for 6.2
-----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEIodevzQLVs53l6BhNqiEXrVAjGQFAmOXkwgACgkQNqiEXrVA jGSo/hAAiw68BXbUkHqCLwaobNU8cqEB+NjnXII1VacwQa+tZBh9rB0+VtChxx4j AcHc2Uys3+W7JDCP/eCMACyUwD5xFzSknqlRa0FEHHVnAQybrtfO+dlsBmEVlZdX yFPwRGND9rOuGcNOWpPkiNp82FxN+JNQVKY1+ve5XoUFTBG9jf5pieQLLYmKGHHt vlpCIx3F70/88MTz+BaniarMviPjLRlzgWs2PtqFy0lOAkwYbTqBIqCY5tQaP1iy 8uJCufHu87nS2WhxwaV/FDhFsvRbiuIze0ES8GCE6jipDKl8f+fDmlOOJtgoUnCN WSo36OUacBnbmr3OJ+sT3j/k0/KzgSx+m43qWos/ZZypnNMIZC5a2u6Df33/rg11 sG3sr7HiP60EstfY1Cmf8xwmy6scfGEHq0aAD/1VoEQp/pxRiOPft9RSQeRtuz26 nlRzFaZ4QGzQfMWos7jEmCNcVB2hkIWj5lZC+FiedHDXtISHdz7+u065P+u5Z9Zg mb5yB0XqMwMai7I8IwzASuH8//cdlofOdEjiLGQ7eWaRevrw2lmUlp3hkS+RGcE1 G/sTYvTqxMOyb77TXLcmfbGTgvArfimkhR0OLweQmfTqmI52mevPtVBkzTP6ZB4n kOpuCD+LuWumbn8rFJ/6sjjR4FmSYM/XqnkEIKIwKXevPtR/8G8= =fd5k -----END PGP SIGNATURE----- Merge tag 'jfs-6.2' of https://github.com/kleikamp/linux-shaggy Pull jfs updates from David Kleikamp: "Assorted JFS fixes for 6.2" * tag 'jfs-6.2' of https://github.com/kleikamp/linux-shaggy: jfs: makes diUnmount/diMount in jfs_mount_rw atomic jfs: Fix a typo in function jfs_umount fs: jfs: fix shift-out-of-bounds in dbDiscardAG jfs: Fix fortify moan in symlink jfs: remove redundant assignments to ipaimap and ipaimap2 jfs: remove unused declarations for jfs fs/jfs/jfs_xattr.h: Fix spelling typo in comment MAINTAINERS: git://github -> https://github.com for kleikamp fs/jfs: replace ternary operator with min_t() fs: jfs: fix shift-out-of-bounds in dbAllocAG
This commit is contained in:
commit
56c003e4db
@ -10993,9 +10993,9 @@ F: drivers/hwmon/jc42.c
|
||||
JFS FILESYSTEM
|
||||
M: Dave Kleikamp <shaggy@kernel.org>
|
||||
L: jfs-discussion@lists.sourceforge.net
|
||||
S: Maintained
|
||||
S: Odd Fixes
|
||||
W: http://jfs.sourceforge.net/
|
||||
T: git git://github.com/kleikamp/linux-shaggy.git
|
||||
T: git https://github.com/kleikamp/linux-shaggy.git
|
||||
F: Documentation/admin-guide/jfs.rst
|
||||
F: fs/jfs/
|
||||
|
||||
|
@ -155,7 +155,7 @@ int dbMount(struct inode *ipbmap)
|
||||
struct bmap *bmp;
|
||||
struct dbmap_disk *dbmp_le;
|
||||
struct metapage *mp;
|
||||
int i;
|
||||
int i, err;
|
||||
|
||||
/*
|
||||
* allocate/initialize the in-memory bmap descriptor
|
||||
@ -170,8 +170,8 @@ int dbMount(struct inode *ipbmap)
|
||||
BMAPBLKNO << JFS_SBI(ipbmap->i_sb)->l2nbperpage,
|
||||
PSIZE, 0);
|
||||
if (mp == NULL) {
|
||||
kfree(bmp);
|
||||
return -EIO;
|
||||
err = -EIO;
|
||||
goto err_kfree_bmp;
|
||||
}
|
||||
|
||||
/* copy the on-disk bmap descriptor to its in-memory version. */
|
||||
@ -181,9 +181,8 @@ int dbMount(struct inode *ipbmap)
|
||||
bmp->db_l2nbperpage = le32_to_cpu(dbmp_le->dn_l2nbperpage);
|
||||
bmp->db_numag = le32_to_cpu(dbmp_le->dn_numag);
|
||||
if (!bmp->db_numag) {
|
||||
release_metapage(mp);
|
||||
kfree(bmp);
|
||||
return -EINVAL;
|
||||
err = -EINVAL;
|
||||
goto err_release_metapage;
|
||||
}
|
||||
|
||||
bmp->db_maxlevel = le32_to_cpu(dbmp_le->dn_maxlevel);
|
||||
@ -194,6 +193,16 @@ int dbMount(struct inode *ipbmap)
|
||||
bmp->db_agwidth = le32_to_cpu(dbmp_le->dn_agwidth);
|
||||
bmp->db_agstart = le32_to_cpu(dbmp_le->dn_agstart);
|
||||
bmp->db_agl2size = le32_to_cpu(dbmp_le->dn_agl2size);
|
||||
if (bmp->db_agl2size > L2MAXL2SIZE - L2MAXAG) {
|
||||
err = -EINVAL;
|
||||
goto err_release_metapage;
|
||||
}
|
||||
|
||||
if (((bmp->db_mapsize - 1) >> bmp->db_agl2size) > MAXAG) {
|
||||
err = -EINVAL;
|
||||
goto err_release_metapage;
|
||||
}
|
||||
|
||||
for (i = 0; i < MAXAG; i++)
|
||||
bmp->db_agfree[i] = le64_to_cpu(dbmp_le->dn_agfree[i]);
|
||||
bmp->db_agsize = le64_to_cpu(dbmp_le->dn_agsize);
|
||||
@ -214,6 +223,12 @@ int dbMount(struct inode *ipbmap)
|
||||
BMAP_LOCK_INIT(bmp);
|
||||
|
||||
return (0);
|
||||
|
||||
err_release_metapage:
|
||||
release_metapage(mp);
|
||||
err_kfree_bmp:
|
||||
kfree(bmp);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
||||
|
@ -10,9 +10,7 @@
|
||||
(addressPXD(&(JFS_IP(ip)->ixpxd)) + lengthPXD(&(JFS_IP(ip)->ixpxd)) - 1)
|
||||
|
||||
extern int extAlloc(struct inode *, s64, s64, xad_t *, bool);
|
||||
extern int extFill(struct inode *, xad_t *);
|
||||
extern int extHint(struct inode *, s64, xad_t *);
|
||||
extern int extRealloc(struct inode *, s64, xad_t *, bool);
|
||||
extern int extRecord(struct inode *, xad_t *);
|
||||
|
||||
#endif /* _H_JFS_EXTENT */
|
||||
|
@ -310,8 +310,8 @@ int diRead(struct inode *ip)
|
||||
iagno = INOTOIAG(ip->i_ino);
|
||||
|
||||
/* read the iag */
|
||||
imap = JFS_IP(ipimap)->i_imap;
|
||||
IREAD_LOCK(ipimap, RDWRLOCK_IMAP);
|
||||
imap = JFS_IP(ipimap)->i_imap;
|
||||
rc = diIAGRead(imap, iagno, &mp);
|
||||
IREAD_UNLOCK(ipimap);
|
||||
if (rc) {
|
||||
|
@ -234,11 +234,15 @@ int jfs_mount_rw(struct super_block *sb, int remount)
|
||||
|
||||
truncate_inode_pages(sbi->ipimap->i_mapping, 0);
|
||||
truncate_inode_pages(sbi->ipbmap->i_mapping, 0);
|
||||
|
||||
IWRITE_LOCK(sbi->ipimap, RDWRLOCK_IMAP);
|
||||
diUnmount(sbi->ipimap, 1);
|
||||
if ((rc = diMount(sbi->ipimap))) {
|
||||
IWRITE_UNLOCK(sbi->ipimap);
|
||||
jfs_err("jfs_mount_rw: diMount failed!");
|
||||
return rc;
|
||||
}
|
||||
IWRITE_UNLOCK(sbi->ipimap);
|
||||
|
||||
dbUnmount(sbi->ipbmap, 1);
|
||||
if ((rc = dbMount(sbi->ipbmap))) {
|
||||
|
@ -68,7 +68,6 @@ int jfs_umount(struct super_block *sb)
|
||||
/*
|
||||
* close secondary aggregate inode allocation map
|
||||
*/
|
||||
ipaimap2 = sbi->ipaimap2;
|
||||
if (ipaimap2) {
|
||||
diUnmount(ipaimap2, 0);
|
||||
diFreeSpecial(ipaimap2);
|
||||
@ -78,7 +77,6 @@ int jfs_umount(struct super_block *sb)
|
||||
/*
|
||||
* close aggregate inode allocation map
|
||||
*/
|
||||
ipaimap = sbi->ipaimap;
|
||||
diUnmount(ipaimap, 0);
|
||||
diFreeSpecial(ipaimap);
|
||||
sbi->ipaimap = NULL;
|
||||
@ -89,7 +87,7 @@ int jfs_umount(struct super_block *sb)
|
||||
dbUnmount(ipbmap, 0);
|
||||
|
||||
diFreeSpecial(ipbmap);
|
||||
sbi->ipimap = NULL;
|
||||
sbi->ipbmap = NULL;
|
||||
|
||||
/*
|
||||
* Make sure all metadata makes it to disk before we mark
|
||||
|
@ -25,7 +25,7 @@ struct jfs_ea_list {
|
||||
struct jfs_ea ea[]; /* Variable length list */
|
||||
};
|
||||
|
||||
/* Macros for defining maxiumum number of bytes supported for EAs */
|
||||
/* Macros for defining maximum number of bytes supported for EAs */
|
||||
#define MAXEASIZE 65535
|
||||
#define MAXEALISTSIZE MAXEASIZE
|
||||
|
||||
|
@ -96,12 +96,8 @@ extern int xtInsert(tid_t tid, struct inode *ip,
|
||||
extern int xtExtend(tid_t tid, struct inode *ip, s64 xoff, int xlen,
|
||||
int flag);
|
||||
extern int xtUpdate(tid_t tid, struct inode *ip, struct xad *nxad);
|
||||
extern int xtDelete(tid_t tid, struct inode *ip, s64 xoff, int xlen,
|
||||
int flag);
|
||||
extern s64 xtTruncate(tid_t tid, struct inode *ip, s64 newsize, int type);
|
||||
extern s64 xtTruncate_pmap(tid_t tid, struct inode *ip, s64 committed_size);
|
||||
extern int xtRelocate(tid_t tid, struct inode *ip,
|
||||
xad_t * oxad, s64 nxaddr, int xtype);
|
||||
extern int xtAppend(tid_t tid,
|
||||
struct inode *ip, int xflag, s64 xoff, int maxblocks,
|
||||
int *xlenp, s64 * xaddrp, int flag);
|
||||
|
@ -946,7 +946,7 @@ static int jfs_symlink(struct user_namespace *mnt_userns, struct inode *dip,
|
||||
if (ssize <= IDATASIZE) {
|
||||
ip->i_op = &jfs_fast_symlink_inode_operations;
|
||||
|
||||
ip->i_link = JFS_IP(ip)->i_inline;
|
||||
ip->i_link = JFS_IP(ip)->i_inline_all;
|
||||
memcpy(ip->i_link, name, ssize);
|
||||
ip->i_size = ssize - 1;
|
||||
|
||||
|
@ -745,8 +745,7 @@ static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
|
||||
len = i_size-off;
|
||||
toread = len;
|
||||
while (toread > 0) {
|
||||
tocopy = sb->s_blocksize - offset < toread ?
|
||||
sb->s_blocksize - offset : toread;
|
||||
tocopy = min_t(size_t, sb->s_blocksize - offset, toread);
|
||||
|
||||
tmp_bh.b_state = 0;
|
||||
tmp_bh.b_size = i_blocksize(inode);
|
||||
@ -785,8 +784,7 @@ static ssize_t jfs_quota_write(struct super_block *sb, int type,
|
||||
|
||||
inode_lock(inode);
|
||||
while (towrite > 0) {
|
||||
tocopy = sb->s_blocksize - offset < towrite ?
|
||||
sb->s_blocksize - offset : towrite;
|
||||
tocopy = min_t(size_t, sb->s_blocksize - offset, towrite);
|
||||
|
||||
tmp_bh.b_state = 0;
|
||||
tmp_bh.b_size = i_blocksize(inode);
|
||||
|
Loading…
Reference in New Issue
Block a user