search for: aborm

Displaying 5 results from an estimated 5 matches for "aborm".

Did you mean: abort
2002 Mar 29
1
Two patches for OpenSSH 3.1p1 (fwd)
...h-3.1p1-peter/sftp-int.c Mon Mar 18 22:02:38 2002 *************** *** 176,183 **** strerror(errno)); _exit(1); } ! if (waitpid(pid, &status, 0) == -1) fatal("Couldn't wait for child: %s", strerror(errno)); if (!WIFEXITED(status)) error("Shell exited abormally"); else if (WEXITSTATUS(status)) --- 176,192 ---- strerror(errno)); _exit(1); } ! { ! int code; ! ! ! while ((code = waitpid(pid, &status, 0)) == -1 && errno == EINTR) ! ; ! ! if (code < 0) fatal("Couldn't wait for chi...
2002 Mar 26
1
Two patches for OpenSSH 3.1p1
...h-3.1p1-peter/sftp-int.c Mon Mar 18 22:02:38 2002 *************** *** 176,183 **** strerror(errno)); _exit(1); } ! if (waitpid(pid, &status, 0) == -1) fatal("Couldn't wait for child: %s", strerror(errno)); if (!WIFEXITED(status)) error("Shell exited abormally"); else if (WEXITSTATUS(status)) --- 176,192 ---- strerror(errno)); _exit(1); } ! { ! int code; ! ! ! while ((code = waitpid(pid, &status, 0)) == -1 && errno == EINTR) ! ; ! ! if (code < 0) fatal("Couldn't wait for chi...
2023 May 08
1
[PATCH 2/2] ocfs2: add error handling path when jbd2 enter ABORT status
...; a2f2ddbf2baf ocfs2: __ocfs2_abort() should not enable panic for local mounts About the panic action from ocfs2_abort(), in my view, it's too scared to acceptable. I am not familar with o2cb stack, in pcmk stack, there is resource-agents RA Filesystem[1], which includes two level to detect fs abormal: - Filesystem_monitor_10 : read the device - Filesystem_monitor_20 : write and read a status file if ocfs2 enters abort status, Filesystem RA will detect it and trigger HA stack to do the handover resources job. if Filesystem RA doesn't apply monitor_[10|20] level, a readonly fs (not panic t...
2023 May 09
1
[PATCH 2/2] ocfs2: add error handling path when jbd2 enter ABORT status
...: __ocfs2_abort() should not enable panic for local mounts > > About the panic action from ocfs2_abort(), in my view, it's too scared to > acceptable. I am not familar with o2cb stack, in pcmk stack, there is > resource-agents RA Filesystem[1], which includes two level to detect fs abormal: > - Filesystem_monitor_10 : read the device > - Filesystem_monitor_20 : write and read a status file > > if ocfs2 enters abort status, Filesystem RA will detect it and trigger HA stack > to do the handover resources job. > if Filesystem RA doesn't apply monitor_[10|20] lev...
2023 May 05
1
[PATCH 2/2] ocfs2: add error handling path when jbd2 enter ABORT status
On 5/5/23 12:20 AM, Heming Zhao wrote: > On Thu, May 04, 2023 at 05:41:29PM +0800, Joseph Qi wrote: >> >> >> On 5/4/23 4:02 PM, Heming Zhao wrote: >>> On Thu, May 04, 2023 at 03:34:49PM +0800, Joseph Qi wrote: >>>> >>>> >>>> On 5/4/23 2:21 PM, Heming Zhao wrote: >>>>> On Thu, May 04, 2023 at 10:27:46AM +0800, Joseph