Displaying 20 results from an estimated 41 matches for "pgid".
Did you mean:
pgd
2019 Apr 26
0
[PATCH 06/10] s390/cio: add basic protected virtualization support
...cwreq.c | 8 ++---
drivers/s390/cio/device.c | 65 +++++++++++++++++++++++++++++++++-------
drivers/s390/cio/device_fsm.c | 40 ++++++++++++-------------
drivers/s390/cio/device_id.c | 18 +++++------
drivers/s390/cio/device_ops.c | 21 +++++++++++--
drivers/s390/cio/device_pgid.c | 20 ++++++-------
drivers/s390/cio/device_status.c | 24 +++++++--------
drivers/s390/cio/io_sch.h | 21 +++++++++----
drivers/s390/virtio/virtio_ccw.c | 10 -------
10 files changed, 148 insertions(+), 83 deletions(-)
diff --git a/arch/s390/include/asm/ccwdev.h b/arch/s390/include/as...
2019 May 23
0
[PATCH v2 3/8] s390/cio: add basic protected virtualization support
...| 9 +++---
drivers/s390/cio/device.c | 64 +++++++++++++++++++++++++++++++++-------
drivers/s390/cio/device_fsm.c | 53 ++++++++++++++++++++-------------
drivers/s390/cio/device_id.c | 20 +++++++------
drivers/s390/cio/device_ops.c | 21 +++++++++++--
drivers/s390/cio/device_pgid.c | 22 +++++++-------
drivers/s390/cio/device_status.c | 24 +++++++--------
drivers/s390/cio/io_sch.h | 20 +++++++++----
drivers/s390/virtio/virtio_ccw.c | 10 -------
10 files changed, 164 insertions(+), 83 deletions(-)
diff --git a/arch/s390/include/asm/ccwdev.h b/arch/s390/include/a...
2019 May 29
0
[PATCH v3 3/8] s390/cio: add basic protected virtualization support
...c | 9 +++---
drivers/s390/cio/device.c | 67 +++++++++++++++++++++++++++++++++-------
drivers/s390/cio/device_fsm.c | 49 +++++++++++++++++------------
drivers/s390/cio/device_id.c | 20 ++++++------
drivers/s390/cio/device_ops.c | 21 +++++++++++--
drivers/s390/cio/device_pgid.c | 22 +++++++------
drivers/s390/cio/device_status.c | 24 +++++++-------
drivers/s390/cio/io_sch.h | 20 +++++++++---
drivers/s390/virtio/virtio_ccw.c | 10 ------
10 files changed, 163 insertions(+), 83 deletions(-)
diff --git a/arch/s390/include/asm/ccwdev.h b/arch/s390/include/asm/c...
2019 Jun 12
0
[PATCH v5 3/8] s390/cio: add basic protected virtualization support
...ers/s390/cio/ccwreq.c | 9 +++--
drivers/s390/cio/device.c | 68 ++++++++++++++++++++++++++------
drivers/s390/cio/device_fsm.c | 49 +++++++++++++----------
drivers/s390/cio/device_id.c | 20 +++++-----
drivers/s390/cio/device_ops.c | 21 +++++++++-
drivers/s390/cio/device_pgid.c | 22 ++++++-----
drivers/s390/cio/device_status.c | 24 +++++------
drivers/s390/cio/io_sch.h | 20 +++++++---
drivers/s390/virtio/virtio_ccw.c | 10 -----
10 files changed, 164 insertions(+), 83 deletions(-)
diff --git a/arch/s390/include/asm/ccwdev.h b/arch/s390/include/asm/ccwdev.h...
2013 Sep 05
1
primary GID based access for user in 16 supplementary groups
...en rights for a directory with ACLs that allow only the primary GID read/execute access to a directory for example the result is ACCESS DENIED.
For example debug level 10 log line:
[2013/08/30 13:38:45.318680, 10, pid=22761] smbd/open.c:139(smbd_check_open_rights)
smbd_check_open_rights: file pgidaccessonlydir requesting 0x81 returning 0x1 (NT_STATUS_ACCESS_DENIED)
This prevents access from a Windows 7 client.
If we add the AD user account as a member of the PGID mapped AD group account as a workaround, then this would consume a supplementary group slot in the smbd process context which wo...
2012 Jul 25
3
Select rows based on matching conditions and logical operators
Hi,
I have a dataset in which I would like to select rows based on matching
conditions and return the maximum value of a variable else return one row if
duplicate counts exist. My dataset looks like this:
PGID PTID Year Visit Count
6755 53121 2009 1 0
6755 53121 2009 2 0
6755 53121 2009 3 0
6755 53122 2008 1 0
6755 53122 2008 2 0
6755 53122 2008 3 1
6755 53122 2009 1 0
6755 53122 2009 2 1
6755 53122 2009 3 2
I would like to select rows if PTID and Year match and return the maximum
count else return on...
2008 Nov 20
1
Stopping bdrb from another process gets the process killed
...s from another process, let''s say a rake
task, the rake task gets killed because it gets the SIGTERM signal.
In the class StarStop we have:
def kill_process arg_pid_file
pid = nil
pid = File.open(arg_pid_file, "r") { |pid_handle|
pid_handle.gets.strip.chomp.to_i }
pgid = Process.getpgid(pid)
puts "Stopping BackgrounDRb with pid #{pid}...."
Process.kill(''-TERM'', pgid)
File.delete(arg_pid_file) if File.exists?(arg_pid_file)
puts "Success!"
end
What I did was, that instead of killing pgid, I''m doing...
2019 Apr 26
33
[PATCH 00/10] s390: virtio: support protected virtualization
...| 1 +
drivers/s390/cio/css.c | 101 +++++++++++++
drivers/s390/cio/device.c | 65 +++++++--
drivers/s390/cio/device_fsm.c | 40 +++---
drivers/s390/cio/device_id.c | 18 +--
drivers/s390/cio/device_ops.c | 21 ++-
drivers/s390/cio/device_pgid.c | 20 +--
drivers/s390/cio/device_status.c | 24 ++--
drivers/s390/cio/io_sch.h | 21 ++-
drivers/s390/virtio/virtio_ccw.c | 275 +++++++++++++++++++-----------------
include/linux/virtio.h | 17 ---
19 files changed, 499 insertions(+), 220 deletions(-)
crea...
2019 Apr 26
33
[PATCH 00/10] s390: virtio: support protected virtualization
...| 1 +
drivers/s390/cio/css.c | 101 +++++++++++++
drivers/s390/cio/device.c | 65 +++++++--
drivers/s390/cio/device_fsm.c | 40 +++---
drivers/s390/cio/device_id.c | 18 +--
drivers/s390/cio/device_ops.c | 21 ++-
drivers/s390/cio/device_pgid.c | 20 +--
drivers/s390/cio/device_status.c | 24 ++--
drivers/s390/cio/io_sch.h | 21 ++-
drivers/s390/virtio/virtio_ccw.c | 275 +++++++++++++++++++-----------------
include/linux/virtio.h | 17 ---
19 files changed, 499 insertions(+), 220 deletions(-)
crea...
2019 Jun 12
21
[PATCH v5 0/8] s390: virtio: support protected virtualization
...| 2 +
drivers/s390/cio/css.c | 134 ++++++++++++++-
drivers/s390/cio/device.c | 68 ++++++--
drivers/s390/cio/device_fsm.c | 49 +++---
drivers/s390/cio/device_id.c | 20 ++-
drivers/s390/cio/device_ops.c | 21 ++-
drivers/s390/cio/device_pgid.c | 22 +--
drivers/s390/cio/device_status.c | 24 +--
drivers/s390/cio/io_sch.h | 20 ++-
drivers/s390/virtio/virtio_ccw.c | 246 +++++++++++++++-------------
18 files changed, 538 insertions(+), 201 deletions(-)
create mode 100644 arch/s390/include/asm/mem_encrypt.h
--...
2019 Jun 12
21
[PATCH v5 0/8] s390: virtio: support protected virtualization
...| 2 +
drivers/s390/cio/css.c | 134 ++++++++++++++-
drivers/s390/cio/device.c | 68 ++++++--
drivers/s390/cio/device_fsm.c | 49 +++---
drivers/s390/cio/device_id.c | 20 ++-
drivers/s390/cio/device_ops.c | 21 ++-
drivers/s390/cio/device_pgid.c | 22 +--
drivers/s390/cio/device_status.c | 24 +--
drivers/s390/cio/io_sch.h | 20 ++-
drivers/s390/virtio/virtio_ccw.c | 246 +++++++++++++++-------------
18 files changed, 538 insertions(+), 201 deletions(-)
create mode 100644 arch/s390/include/asm/mem_encrypt.h
--...
2019 Jun 06
15
[PATCH v4 0/8] s390: virtio: support protected virtualization
...| 2 +
drivers/s390/cio/css.c | 132 ++++++++++++++-
drivers/s390/cio/device.c | 68 ++++++--
drivers/s390/cio/device_fsm.c | 49 +++---
drivers/s390/cio/device_id.c | 20 ++-
drivers/s390/cio/device_ops.c | 21 ++-
drivers/s390/cio/device_pgid.c | 22 +--
drivers/s390/cio/device_status.c | 24 +--
drivers/s390/cio/io_sch.h | 20 ++-
drivers/s390/virtio/virtio_ccw.c | 248 +++++++++++++++-------------
18 files changed, 534 insertions(+), 200 deletions(-)
create mode 100644 arch/s390/include/asm/mem_encrypt.h
--...
2019 Jun 06
15
[PATCH v4 0/8] s390: virtio: support protected virtualization
...| 2 +
drivers/s390/cio/css.c | 132 ++++++++++++++-
drivers/s390/cio/device.c | 68 ++++++--
drivers/s390/cio/device_fsm.c | 49 +++---
drivers/s390/cio/device_id.c | 20 ++-
drivers/s390/cio/device_ops.c | 21 ++-
drivers/s390/cio/device_pgid.c | 22 +--
drivers/s390/cio/device_status.c | 24 +--
drivers/s390/cio/io_sch.h | 20 ++-
drivers/s390/virtio/virtio_ccw.c | 248 +++++++++++++++-------------
18 files changed, 534 insertions(+), 200 deletions(-)
create mode 100644 arch/s390/include/asm/mem_encrypt.h
--...
2019 May 29
16
[PATCH v3 0/8] s390: virtio: support protected virtualization
...| 2 +
drivers/s390/cio/css.c | 121 +++++++++++++++++-
drivers/s390/cio/device.c | 67 ++++++++--
drivers/s390/cio/device_fsm.c | 49 ++++---
drivers/s390/cio/device_id.c | 20 +--
drivers/s390/cio/device_ops.c | 21 ++-
drivers/s390/cio/device_pgid.c | 22 ++--
drivers/s390/cio/device_status.c | 24 ++--
drivers/s390/cio/io_sch.h | 20 ++-
drivers/s390/virtio/virtio_ccw.c | 248 ++++++++++++++++++++----------------
18 files changed, 523 insertions(+), 199 deletions(-)
create mode 100644 arch/s390/include/asm/mem_encry...
2019 May 23
18
[PATCH v2 0/8] s390: virtio: support protected virtualization
...| 2 +
drivers/s390/cio/css.c | 111 ++++++++++++++++
drivers/s390/cio/device.c | 64 ++++++++--
drivers/s390/cio/device_fsm.c | 53 +++++---
drivers/s390/cio/device_id.c | 20 +--
drivers/s390/cio/device_ops.c | 21 +++-
drivers/s390/cio/device_pgid.c | 22 ++--
drivers/s390/cio/device_status.c | 24 ++--
drivers/s390/cio/io_sch.h | 20 ++-
drivers/s390/virtio/virtio_ccw.c | 244 ++++++++++++++++++++----------------
18 files changed, 514 insertions(+), 195 deletions(-)
create mode 100644 arch/s390/include/asm/mem_encry...
2005 Mar 23
1
Problems with Excel & MS Word files (still)
Problem is apparently with locking issues, disabled oplocks in the [general]
section, and the problem actually got worse...
Here's what happens:
User-A part of group1, opens Excel file off of share, saves, exits...
User-B (or even User-A for that matter) tries to re-open same file, get
error stating it's locked and can only open for read-only access...
Both users in the same group, and
2019 Apr 09
0
[RFC PATCH 05/12] s390/cio: add protected virtualization support to cio
...drivers/s390/cio/device.c | 46 +++++++++++++++++++++++++++++++---------
> drivers/s390/cio/device_fsm.c | 40 +++++++++++++++++-----------------
> drivers/s390/cio/device_id.c | 18 ++++++++--------
> drivers/s390/cio/device_ops.c | 4 ++--
> drivers/s390/cio/device_pgid.c | 20 ++++++++---------
> drivers/s390/cio/device_status.c | 24 ++++++++++-----------
> drivers/s390/cio/io_sch.h | 19 ++++++++++++-----
> 8 files changed, 107 insertions(+), 72 deletions(-)
>
(...)
(just looking at which fields are moved for now)
> diff --git a/driv...
2018 Aug 01
2
trying to resurrect discussion about "Cannot signal a process over a channel (rfc 4254, section 6.9)"
...es the signal resulting in it:
> - dying and leaving zombies
> - dying and taking its child with him (SIGHUP and SIGKILL)
> - ignoring the signal (SIGINT, SIGTERM, SIGQUIT).
>
> Example of ID?s when I connect to a server and launch the script test_signal.sh :
> PID PPID PGID SID
> 4060 1598 4060 1556 sshd sshd: root at pts/2
> 4062 4060 4062 4062 bash -bash
> 4075 4062 4075 4062 sh sh test_signal.sh
> 4076 4075 4075 4062 sh sh test_signal.sh
>
> So in order to take this use case into ac...
2009 Mar 12
0
More on close_cnum(1284)
...ermgr_sharing: Failed to
remove the Spotlight store at /Volumes/EncodeDisk6 (error: -1)
Mar 12 09:13:33 newyork /sbin/nfsd[50]: Too many groups for root
Mar 12 09:13:34: --- last message repeated 6 times ---
Mar 12 09:13:34 newyork com.apple.launchd[1] (org.samba.smbd[7532]):
Stray process with PGID equal to this dead job: PID 7543 PPID 1 smbd
Mar 12 09:13:34 newyork com.apple.launchd[1] (org.samba.smbd[7532]):
Stray process with PGID equal to this dead job: PID 7542 PPID 1 smbd
Mar 12 09:13:34 newyork com.apple.launchd[1] (org.samba.smbd[7532]):
Stray process with PGID equal to this dead...
2003 Feb 12
4
rsync in cygwin as service
Hello!
I want to start rsync on w2k as service.
If I try to start rsync from command line it simply do nothig:
$ rsync --daemon
Administrator@dm-w2ks /usr/bin
$ ps
PID PPID PGID WINPID TTY UID STIME COMMAND
480 1 480 480 con 500 04:15:03 /usr/bin/bash
1428 480 1428 1420 con 500 05:26:46 /usr/bin/ps
Administrator@dm-w2ks /usr/bin
So I'm trying to set it as service:
C:\cygwin\bin>cygrunsrv -I "RSYNC"...