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 branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs

Pull btrfs fix from Chris Mason:
"It's a one liner for an error cleanup path that leads to crashes"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs:
Btrfs: fix kfree on list_head in btrfs_lookup_csums_range error cleanup

+1 -1
+1 -1
fs/btrfs/file-item.c
··· 413 413 ret = 0; 414 414 fail: 415 415 while (ret < 0 && !list_empty(&tmplist)) { 416 - sums = list_entry(&tmplist, struct btrfs_ordered_sum, list); 416 + sums = list_entry(tmplist.next, struct btrfs_ordered_sum, list); 417 417 list_del(&sums->list); 418 418 kfree(sums); 419 419 }