Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'nfs-for-4.9-2' of git://git.linux-nfs.org/projects/anna/linux-nfs

Pull NFS client bugfixes from Anna Schumaker:
"Just two bugfixes this time:

Stable bugfix:
- Fix last_write_offset incorrectly set to page boundary

Other bugfix:
- Fix missing-braces warning"

* tag 'nfs-for-4.9-2' of git://git.linux-nfs.org/projects/anna/linux-nfs:
nfs4: fix missing-braces warning
pnfs/blocklayout: fix last_write_offset incorrectly set to page boundary

+3 -2
+2 -1
fs/nfs/blocklayout/blocklayout.c
··· 344 344 u64 start = hdr->args.offset & (loff_t)PAGE_MASK; 345 345 u64 end = (hdr->args.offset + hdr->args.count + 346 346 PAGE_SIZE - 1) & (loff_t)PAGE_MASK; 347 + u64 lwb = hdr->args.offset + hdr->args.count; 347 348 348 349 ext_tree_mark_written(bl, start >> SECTOR_SHIFT, 349 - (end - start) >> SECTOR_SHIFT, end); 350 + (end - start) >> SECTOR_SHIFT, lwb); 350 351 } 351 352 352 353 pnfs_ld_write_done(hdr);
+1 -1
fs/nfs/nfs4proc.c
··· 1545 1545 struct nfs_client *clp = server->nfs_client; 1546 1546 struct nfs_inode *nfsi = NFS_I(state->inode); 1547 1547 struct nfs_delegation *deleg_cur; 1548 - nfs4_stateid freeme = {0}; 1548 + nfs4_stateid freeme = { }; 1549 1549 int ret = 0; 1550 1550 1551 1551 fmode &= (FMODE_READ|FMODE_WRITE);