- It's a patch the undoes the earlier patch. It can be made with
patch -R -pX bad.patch(where X is the number of directory levels to strip from the patch and bad.patch is the patch we want to undo) followed by agit commit - A "reversed patch" is when someone accidentally makes a patch with
diff -u foo.c foo.c.orig(where foo.c is the newer file) instead of the correctdiff -u foo.c.orig foo.c - The "reversed or previous applied patch" error indicates the patch has already been applied. I can not be more specific without knowing the contents of your
kernelsuspend.patchfile. - If you have the .git directory for the kernel source, you can look at the log for a single file with the
git logcommand followed by the file name. e.g.git log fs/eventpoll.cor evengit log -p fs/eventpoll.c.
It's a patch that undoes the earlier patch. It can be made with patch -R -pX bad.patch (where X is the number of directory levels to strip from the patch and bad.patch is the patch we want to undo) followed by a git commit
A "reversed patch" is when someone accidentally makes a patch with diff -u foo.c foo.c.orig (where foo.c is the newer file) instead of the correct diff -u foo.c.orig foo.c
The "reversed or previous applied patch" error indicates the patch has already been applied. I can not be more specific without knowing the contents of your kernelsuspend.patch file.
If you have the .git directory for the kernel source, you can look at the log for a single file with the git log command followed by the file name. e.g. git log fs/eventpoll.c or even git log -p fs/eventpoll.c.