On Fri, Aug 20, 2021 at 06:05:08PM -0400, Tony Krowiak wrote: > So, the question is, how to I get the linux-vfio-next repo upon which I > can rebase my patches? I apologize for my ignorance. Get yourself a kernel git tree somehow, eg by cloning one you already have Then something like $ git fetch https://github.com/awilliam/linux-vfio.git next $ git reset --hard FETCH_HEAD Will sort it out, though there are many other varients such as adding a remote/etc. When you cloned it from github git checked out the wrong branch for you - 'git reset --hard origin/next' would fix it too. Jason