Skip to content

Add linux 5.15 #2748

Merged
merged 10 commits into from
Oct 7, 2022
Merged

Add linux 5.15 #2748

merged 10 commits into from
Oct 7, 2022

Commits on Sep 20, 2022

  1. linux: Add version 5.15.69

    Create bee file with
    
        cp linux-5.10.113-434.bee linux-5.15.69-435.bee
    
    and update SRCURL.
    donald committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    3967c8c View commit details
    Browse the repository at this point in the history
  2. nvidia-linux: Add version 510.60.02 for Linux 5.15.69

    Create bee file with
    
      cp nvidia_linux-5.10.113-434-510.60.02-0.bee nvidia_linux-5.15.69-435-510.60.02-0.bee
    donald committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    2a78a19 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. linux-5.15.69: Rebuild with nfs patch

    Use mariux-5.15.69-436 which added upstream commit 6e176d47160c ("NFSv4:
    Fixes for nfs4_inode_return_delegation()"):
    
    Author: Trond Myklebust <trond.myklebust@hammerspace.com>
    Date:   Sun Oct 10 10:58:12 2021 +0200
    
        NFSv4: Fixes for nfs4_inode_return_delegation()
    
        We mustn't call nfs_wb_all() on anything other than a regular file.
        Furthermore, we can exit early when we don't hold a delegation.
    
        Reported-by: David Wysochanski <dwysocha@redhat.com>
        Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
    
    diff --git a/fs/nfs/delegation.c b/fs/nfs/delegation.c
    index 11118398f495..7c9eb679dbdb 100644
    --- a/fs/nfs/delegation.c
    +++ b/fs/nfs/delegation.c
    @@ -755,11 +755,13 @@ int nfs4_inode_return_delegation(struct inode *inode)
            struct nfs_delegation *delegation;
    
            delegation = nfs_start_delegation_return(nfsi);
    -       /* Synchronous recall of any application leases */
    -       break_lease(inode, O_WRONLY | O_RDWR);
    -       nfs_wb_all(inode);
    -       if (delegation != NULL)
    +       if (delegation != NULL) {
    +               /* Synchronous recall of any application leases */
    +               break_lease(inode, O_WRONLY | O_RDWR);
    +               if (S_ISREG(inode->i_mode))
    +                       nfs_wb_all(inode);
                    return nfs_end_delegation_return(inode, delegation, 1);
    +       }
            return 0;
     }
    donald committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    8460604 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c69029 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. linux-5.15.69: Reenable /proc/PID/io

    Use mariux-5.15.69-437 which includes fix to reenable /proc/pid/io [1].
    
    [1]: mariux64/linux@8d0e75ece55
    donald committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    c248c30 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1c50111 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

  1. linux-5.15: Upgrade version from 5.15.69 to 5.15.71

    Rebuild with a new patch to supress sporadic ext4 warnings when mxqd
    uses fcntl EXT4_IOC_SHUTDOWN on its job tmpdirs.
    
    Update minor Linux version while we are at it.
    donald committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    4b51999 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2022

  1. Configuration menu
    Copy the full SHA
    a892985 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    48f697f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f745b0b View commit details
    Browse the repository at this point in the history