search for: nowait

Displaying 20 results from an estimated 423 matches for "nowait".

Did you mean: iowait
1998 Aug 07
4
SMB printing server problem... HELP ME !!!
...m> # # <service_name> <sock_type> <proto> <flags> <user> <server_path> <args> # # Echo, discard, daytime, and chargen are used primarily for testing. # # To re-read this file after changes, just do a 'killall -HUP inetd' # #echo stream tcp nowait root internal #echo dgram udp wait root internal #discard stream tcp nowait root internal #discard dgram udp wait root internal #daytime stream tcp nowait root internal #daytime dgram udp wait root internal #cha...
2002 Mar 09
1
smbd and login scripts
...07:47:47 jkh Exp $ # # Internet server configuration database # # Define *both* IPv4 and IPv6 entries for dual-stack support. # To disable a service, comment it out by prefixing the line with '#'. # To enable a service, remove the '#' at the beginning of the line. # #ftp stream tcp nowait root /usr/libexec/ftpd ftpd -l #ftp stream tcp6 nowait root /usr/libexec/ftpd ftpd -l telnet stream tcp nowait root /usr/libexec/telnetd telnetd #telnet stream tcp6 nowait root /usr/libexec/telnetd telnetd #shell stream tcp nowait root /usr/libexec/rshd rshd #shell stream tcp6 nowait root /usr/libe...
2011 Feb 10
2
Start domain with usable QMP connection?
...nt setup looks like this: /usr/local/bin/qemu-system-x86_64 -S -M pc-0.12 -enable-kvm -m 512 -smp 1,sockets=1,cores=1,threads=1 -name winxpsp2 -uuid ab244939-c804-1aff-68b6-9324f174c3c8 -nodefconfig -nodefaults -chardev socket,id=monitor,path=/usr/local/var/lib/libvirt/qemu/winxpsp2.monitor,server,nowait -mon chardev=monitor,mode=control -rtc base=localtime -boot c -drive file=/var/lib/libvirt/images/winxpsp2.img,if=none,id=drive-ide0-0-0,format=raw -device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 -drive file=/home/username/iso/en_winxp_pro_with_sp2.iso,if=none,media=cdrom,id=dri...
2002 Sep 06
3
error starting client-server protocol (code 5)
I'm running FreeBSD 4.6.2 on two different machines. Both machines have rync installed by way of the ports library, but one of them is running it as a server. I followed the directions in the man pages for running the server using inetd. Here is what happens: rsync rsync://myusername@10.0.0.8/ rsync: server sent "rysnc version 2.5.5 protocol version 26" rather than
2023 Feb 28
1
[PATCH] io_uring: fix fget leak when fs don't support nowait buffered read
...nt /mnt/ocfs2 Then umount will fail, and it outputs: umount: /mnt/ocfs2: target is busy. While tracing umount, it blames mnt_get_count() not return as expected. Do a deep investigation for fget()/fput() on related code flow, I've finally found that fget() leaks since ocfs2 doesn't support nowait buffered read. io_issue_sqe |-io_assign_file // do fget() first |-io_read |-io_iter_do_read |-ocfs2_file_read_iter // return -EOPNOTSUPP |-kiocb_done |-io_rw_done |-__io_complete_rw_common // set REQ_F_REISSUE |-io_resubmit_prep |-io_req_prep_async // override req...
2000 Sep 05
7
NMBD Not Starting
I moved an entire RH 6.2 server from one CPU to a new one using a tape backup/restore. Everything from the old server is working on the new server, but when SysV starts up smb, the nmbd daemon (2.0.6) exits with an error: create_subnets: No local interfaces! eth0 has already started according to the logs and console. Any ideas? Thanks. ______________________ Greg Kelley, IT Director SSA, EAA,
2019 Jun 17
1
[PATCH 2/4] drm/virtio: switch virtio_gpu_wait_ioctl() to gem helper.
...ers/gpu/drm/virtio/virtgpu_ioctl.c @@ -464,23 +464,13 @@ static int virtio_gpu_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file) { struct drm_virtgpu_3d_wait *args = data; - struct drm_gem_object *gobj = NULL; - struct virtio_gpu_object *qobj = NULL; - int ret; - bool nowait = false; - - gobj = drm_gem_object_lookup(file, args->handle); - if (gobj == NULL) - return -ENOENT; - - qobj = gem_to_virtio_gpu_obj(gobj); + long timeout = 15 * HZ; if (args->flags & VIRTGPU_WAIT_NOWAIT) - nowait = true; - ret = virtio_gpu_object_wait(qobj, nowait); + timeout = 0...
2019 Jun 20
2
[PATCH v4 02/12] drm/virtio: switch virtio_gpu_wait_ioctl() to gem helper.
Use drm_gem_reservation_object_wait() in virtio_gpu_wait_ioctl(). This also makes the ioctl run lockless. v2: use reservation_object_test_signaled_rcu for VIRTGPU_WAIT_NOWAIT. Signed-off-by: Gerd Hoffmann <kraxel at redhat.com> Reviewed-by: Daniel Vetter <daniel.vetter at ffwll.ch> --- drivers/gpu/drm/virtio/virtgpu_ioctl.c | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/drivers/gpu/drm/virtio/virtgpu_ioctl.c...
2019 Jun 20
2
[PATCH v4 02/12] drm/virtio: switch virtio_gpu_wait_ioctl() to gem helper.
Use drm_gem_reservation_object_wait() in virtio_gpu_wait_ioctl(). This also makes the ioctl run lockless. v2: use reservation_object_test_signaled_rcu for VIRTGPU_WAIT_NOWAIT. Signed-off-by: Gerd Hoffmann <kraxel at redhat.com> Reviewed-by: Daniel Vetter <daniel.vetter at ffwll.ch> --- drivers/gpu/drm/virtio/virtgpu_ioctl.c | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/drivers/gpu/drm/virtio/virtgpu_ioctl.c...
2019 Jun 18
1
[PATCH v2 02/12] drm/virtio: switch virtio_gpu_wait_ioctl() to gem helper.
...static int virtio_gpu_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file) { struct drm_virtgpu_3d_wait *args = data; - struct drm_gem_object *gobj = NULL; - struct virtio_gpu_object *qobj = NULL; + struct drm_gem_object *obj; + long timeout = 15 * HZ; int ret; - bool nowait = false; - gobj = drm_gem_object_lookup(file, args->handle); - if (gobj == NULL) - return -ENOENT; + if (args->flags & VIRTGPU_WAIT_NOWAIT) { + obj = drm_gem_object_lookup(file, args->handle); + ret = reservation_object_test_signaled_rcu(obj->resv, true); + drm_gem_object_put_...
2010 Apr 25
1
QEmu 0.12.3 Libvirt-0.8.0 and serials ports
...the line that libvirt execute LC_ALL=C PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/sbin:/sbin:/bin QEMU_AUDIO_DRV=none /usr/bin/kvm -S -M pc-0.11 -cpu qemu32 -enable-kvm -m 0 -smp 1 -name uml2 -uuid 431cb9f4-fdba-c4e8-a35f-23b52f91120a -monitor unix:/var/lib/libvirt/qemu/uml2.monitor,server,nowait -boot cd -drive file=/root/.vnuml/simulations/tutorial-r1_xp/vms/uml2/fs/root_cow_fs,if=ide,bus=0,unit=0,boot=on -drive file=/root/.vnuml/simulations/tutorial-r1_xp/vms/uml2/fs/opt_fs.iso,if=ide,media=cdrom,bus=0,unit=1 -net nic,macaddr=fe:fd:00:00:02:01,vlan=0,name=net0 -net tap,fd=19,vlan=0,name=...
2004 Sep 10
4
question about using rsync with inetd
Hello, we would like to use rsync (2.6.2 manualy patched and recompiled) in daemon mode spawned by inetd (Solaris 5.8 Environment). /etc/services: rsync 1234/tcp #RSYNC daemon /etc/inet/inetd.conf: rsync stream tcp nowait publish /usr/bin/rsync rsyncd --daemon --port 1234 . Alas, this does not seem to work, there is the following error message in the log file: Fri Sep 10 10:41:54 MEST 2004 rsync: connection unexpectedly closed (0 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at io.c...
2017 Jun 03
0
Re: libvirtd not accepting connections
...s: 20 (limit: 4915) Memory: 101.4M CPU: 361ms CGroup: /system.slice/libvirtd.service ├─1200 /usr/sbin/libvirtd ├─1481 /usr/bin/qemu-system-i386 -S -no-user-config -nodefaults -nographic -M none -qmp unix:/var/lib/libvirt/qemu/capabilities.monitor.sock,server,nowait -pidfile /var/lib/libvirt/qemu/capabilities. └─1658 /usr/bin/qemu-system-i386 -S -no-user-config -nodefaults -nographic -M none -qmp unix:/var/lib/libvirt/qemu/capabilities.monitor.sock,server,nowait -pidfile /var/lib/libvirt/qemu/capabilities. Jun 03 16:59:32 eastie.fid4.com syste...
1999 Nov 12
3
problems running samba on Caldera 2.3?
...ng the smbd pid. Also, when I point my browser to http://localhost:901 I get a Network error: Connection reset by peer. netstat -vat shows swat listening on port 901, and netbios-ssn on port 139. I have the line swat 901/tcp in my /etc/services file, and I have the lines swat stream tcp nowait.400 root /usr/sbin/tcpd /usr/sbin/swat netbios-ssn stream tcp nowait root /usr/sbin/smbd smbd netbios-ns dgram udp nowait root /usr/sbin/nmbd nmbd in my /etc/inetd.conf file. Am I doing something wrong? Is there something curious about samba on Caldera 2.3? I've read that Caldera uses PA...
2002 Aug 16
1
Samba Won't start on Boot.
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: Daniel Bennett (NQL).vcf Type: application/octet-stream Size: 383 bytes Desc: not available Url : http://lists.samba.org/archive/samba/attachments/20020816/fbcd8db3/DanielBennettNQL.obj
2001 Mar 29
3
INETD Question.
...cript that runs the smbd as a daemon and it works fine. But if I try to run it from inetd it won't start. The previous version of Samba 1.9.18p10 that I had on this server worked fine. Is this a bug in 2.0.7 or am I doing something wrong? here is my entry in /etc/inetd.conf swat stream tcp nowait.400 root /opt/samba/bin/swat swat netbios-ssn stream tcp nowait root /opt/samba/bin/smbd -s /opt/samba/lib/smb.con f smbd netbios-ns dgram udp wait root /opt/samba/bin/nmbd nmbd I have my IP allowed in inetd.sec to start the service netbios-ssn and netbios-ns. Any Ideas of suggestions why this...
1999 Oct 18
1
problem with samba on irix 6.5
...cking/shmem_sysv.c:sysv_shm_open(590) ERROR semctl: can't IPC_STAT. Error was Bad address [1999/10/18 10:11:50, 0] locking/locking.c:locking_init(174) ERROR: Failed to initialise share modes My /etc/inet.d is heavily commented out, the only non commented lines are: tcpmux stream tcp nowait root internal echo stream tcp nowait root internal discard stream tcp nowait root internal chargen stream tcp nowait root internal daytime stream tcp nowait root internal time stream tcp nowait root internal echo dgram udp wait root...
2020 Apr 06
0
[PATCH] Fix: buffer overflow during hvc_alloc().
...evice VGA,bus=pci.0,addr=0x2 \ > -m 14336 \ > -smp 16,maxcpus=16,cores=8,threads=1,dies=1,sockets=2 \ > -cpu 'EPYC',+kvm_pv_unhalt \ > -chardev > socket,id=qmp_id_qmpmonitor1,path=/var/tmp/avocado_6ae2tn_f/monitor-qmpmonitor1-20191223-061943-73qpR3NF,server,nowait > \ > -mon chardev=qmp_id_qmpmonitor1,mode=control \ > -chardev > socket,id=qmp_id_catch_monitor,path=/var/tmp/avocado_6ae2tn_f/monitor-catch_monitor-20191223-061943-73qpR3NF,server,nowait > \ > -mon chardev=qmp_id_catch_monitor,mode=control \ > -device pvpanic...
2017 Jun 03
2
Re: libvirtd not accepting connections
On Sat, Jun 03, 2017 at 09:22:58AM -0400, Michael C Cambria wrote: > > >On 06/02/2017 09:53 AM, Michael C. Cambria wrote: >> >> >> On 06/02/2017 09:43 AM, Martin Kletzander wrote: >>> [adding back the ML, you probably hit reply instead of reply-all, this >>> way other people might help if they know more] >>> >>> On Fri, Jun 02, 2017 at
2003 Sep 08
1
Trouble with SAMBA Deamons
Hello guys: Im having trouble with my SAMBA server ver. 2.2.8a, the issue that i have is: this server is presenting shutdowns of the samba deamons (smbd and nmbd), in the earlier version i putted this lines in the inetd.conf file netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd ?D netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd ?D swat stream tcp nowait.400 root /usr/local/samba/bin/swat ?D and when a samba deamon turns its process to NOT RUNING, with this lines automaticaly turns that process to a RUNNING s...