search for: idetifi

Displaying 3 results from an estimated 3 matches for "idetifi".

Did you mean: identifi
2002 Oct 28
0
Port to SCO Openserver with PAM enabled
Hi all, I'm writing to you becuase I have compiled PAM in SCO (now Caldera) Openserver 5.0.x, and when I tried to use SSH with PAM enabled, y realized that OpenSSH depends on the user to exist en the /etc/passwd, and /etc/shadow databases, or equivalent ones (it uses getpw...() functions to determine validity of the user). In Linux, the simlpe solution is to use nsswitch, but it seems to hard
1999 Sep 27
2
dynamic dns updates from WINS
I've just added the ability for nmbd to call an external program when changes happen to the WINS database in a Samba WINS server. See the option "wins hook" in Samba 2.0.6 when it is released. An example script that calls the nsupdate dynamic DNS update program is provided. Hopefully this will be useful for sites that want their dynamic windows boxes to show up in DNS. Cheers,
2019 Apr 29
1
[RFC-PATCH] Introducing virtio-example.
...and one for output */ + sg_init_one(&sg_out, &vi->out, sizeof(int)); + sg_init_one(&sg_in, &vi->in, sizeof(int)); + + /* build the request */ + request[0] = &sg_out; + request[1] = &sg_in; + + /* add the request to the queue, in_buf is sent as the buffer idetifier */ + virtqueue_add_sgs(vi->vq, request, 1, 1, &vi->in, GFP_KERNEL); + + /* notify the device */ + virtqueue_kick(vi->vq); + + return count; +} + +static ssize_t +virtio_buf_show(struct device *dev, struct device_attribute *attr, char *buf) +{ + /* cast dev into a virtio_d...