search for: ealready

Displaying 20 results from an estimated 28 matches for "ealready".

Did you mean: already
2020 Apr 30
2
[PATCH] vhost: vsock: don't send pkt when vq is not started
...e > from being too long? E.g. the client user sends too many connect pkts > in a short time before the server is completely ready. When the user call the connect() the socket status is moved to SS_CONNECTING (see net/vmw_vsock/af_vsock.c), so another connect() on the same socket will receive EALREADY error. If the user uses multiple sockets, the socket layer already check for any limits, so I don't think we should put a threshold here. > > > mutex_unlock(&vsock->dev.mutex); > > return 0; > > > > I didn't test it, can you try if it fix...
2020 Apr 30
2
[PATCH] vhost: vsock: don't send pkt when vq is not started
...e > from being too long? E.g. the client user sends too many connect pkts > in a short time before the server is completely ready. When the user call the connect() the socket status is moved to SS_CONNECTING (see net/vmw_vsock/af_vsock.c), so another connect() on the same socket will receive EALREADY error. If the user uses multiple sockets, the socket layer already check for any limits, so I don't think we should put a threshold here. > > > mutex_unlock(&vsock->dev.mutex); > > return 0; > > > > I didn't test it, can you try if it fix...
1999 Jul 02
2
Installation of Samba on SVR3 unix
Hi I have attempted to install Samba on an ageing Motorola running SVR3. Unfortunately it has a limitation of 14 characters for filenames, which means that when I untar the package, many of the files are not created. Does anyone have a solution to this problem, or am I stuck? Many thanks -- Pete ---------------------------------------------------------------- morph@morhp.dircon.co.uk
2020 Apr 30
0
[PATCH] vhost: vsock: don't send pkt when vq is not started
...g? E.g. the client user sends too many connect pkts > > in a short time before the server is completely ready. > > When the user call the connect() the socket status is moved to > SS_CONNECTING (see net/vmw_vsock/af_vsock.c), so another connect() on > the same socket will receive EALREADY error. > > If the user uses multiple sockets, the socket layer already check for > any limits, so I don't think we should put a threshold here. > > > > > > mutex_unlock(&vsock->dev.mutex); > > > return 0; > > > > > &gt...
2003 Apr 16
0
[Fwd: Re: No results found]
.... This will make life difficult for you, but it is not something we can help you with. > I am running samba on all 3 UNIX-like systems. The workstation is being > used as a test. (It is my box so if I screw things up no problem. I > didn't loose much) So then it sounds as if you hav ealready figured things out. > I have the programmers connected to their pc's (win98se) to each UNIX > box so they can transfer files from win to unix and back etc. But the > main concern I have is the VMS one. The programmers have a solution that > works to transfer stuff from vms to unix...
2015 Oct 29
1
[PATCH] VSOCK: define VSOCK_SS_LISTEN once only
...queue can be read. */ - if (sk->sk_state == SS_LISTEN + if (sk->sk_state == VSOCK_SS_LISTEN && !vsock_is_accept_queue_empty(sk)) mask |= POLLIN | POLLRDNORM; @@ -1144,7 +1143,7 @@ static int vsock_stream_connect(struct socket *sock, struct sockaddr *addr, err = -EALREADY; break; default: - if ((sk->sk_state == SS_LISTEN) || + if ((sk->sk_state == VSOCK_SS_LISTEN) || vsock_addr_cast(addr, addr_len, &remote_addr) != 0) { err = -EINVAL; goto out; @@ -1256,7 +1255,7 @@ static int vsock_accept(struct socket *sock, struct socket *newsock,...
2015 Oct 29
1
[PATCH] VSOCK: define VSOCK_SS_LISTEN once only
...queue can be read. */ - if (sk->sk_state == SS_LISTEN + if (sk->sk_state == VSOCK_SS_LISTEN && !vsock_is_accept_queue_empty(sk)) mask |= POLLIN | POLLRDNORM; @@ -1144,7 +1143,7 @@ static int vsock_stream_connect(struct socket *sock, struct sockaddr *addr, err = -EALREADY; break; default: - if ((sk->sk_state == SS_LISTEN) || + if ((sk->sk_state == VSOCK_SS_LISTEN) || vsock_addr_cast(addr, addr_len, &remote_addr) != 0) { err = -EINVAL; goto out; @@ -1256,7 +1255,7 @@ static int vsock_accept(struct socket *sock, struct socket *newsock,...
2001 Mar 13
5
is this null block OK?
...i_size" shouldn't really be "loff_t". */ if ((off_t) length < 0) return -EINVAL; down(&inode->i_sem); if (size_check != inode->i_size) { up(&inode->i_sem); EXIT; return -EALREADY; } newattrs.ia_size = length; newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME; op = filter_c2csops(fset->fset_cache->cache_filter); error = op->notify_change(dentry, &newattrs); if (!error) { struct inode_operations *iop;...
2011 Sep 17
0
[LLVMdev] Build errors on r139985
...m/include/llvm/Support/system_error.h:512: error: ‘EPIPE’ was not declared in this scope /home/carl/Downloads/llvm3.0/llvm/include/llvm/Support/system_error.h:513: error: ‘ECONNABORTED’ was not declared in this scope /home/carl/Downloads/llvm3.0/llvm/include/llvm/Support/system_error.h:514: error: ‘EALREADY’ was not declared in this scope /home/carl/Downloads/llvm3.0/llvm/include/llvm/Support/system_error.h:515: error: ‘ECONNREFUSED’ was not declared in this scope /home/carl/Downloads/llvm3.0/llvm/include/llvm/Support/system_error.h:516: error: ‘ECONNRESET’ was not declared in this scope /home/carl/Do...
2019 Aug 09
6
[RFC PATCH v6 71/92] mm: add support for remote mapping
...1); + __set_bit(BUSY_BIT, (unsigned long *)&pdb->flags); + + /* insert mapping entry into the client if not already there */ + spin_lock(&fdb->lock); + + if (likely(client_db_hva_insert(fdb, pdb))) + refcount_inc(&pdb->refcnt); + else { + page_db_free(pdb); + pdb = ERR_PTR(-EALREADY); + } + + spin_unlock(&fdb->lock); + + return pdb; +} + +/* Reverse of page_db_reserve(), to be called in case of error. */ +static void +page_db_unreserve(struct file_db *fdb, struct page_db *pdb) +{ + spin_lock(&fdb->lock); + + client_db_hva_remove(fdb, pdb); + page_db_put(pdb); + +...
2020 Mar 20
0
[ANNOUNCE] igt-gpu-tools 1.25
...'files' i915/gem_exec_parallel: Build failure begone i915/gem_exec_parallel: Only check written handle/threads i915/gem_ctx_create: Trim fixed loop of 1024 i915/gem_softpin: Fix up 'overlap' for change in errno i915/gem_close: Multiple handles are now -EALREADY i915/gem_close: Reduce negative overload of duplicate vma handles i915/gem_exec_balancer: Exercise bonded-payload synchronisation i915/gem_exec_nop: One more parallel nop variant i915/gem_busy: Drop redundant assert(gem_bo_busy) i915/gem_exec_gttfill: Use the device co...
2013 Jan 25
4
[PATCH 0/1] VM Sockets for Linux upstreaming
From: Andy King <acking at vmware.com> ** Introduce VM Sockets *** In an effort to improve the out-of-the-box experience with Linux kernels for VMware users, VMware is working on readying the VM Sockets (VSOCK, formerly VMCI Sockets) (vmw_vsock) kernel module for inclusion in the Linux kernel. The purpose of this post is to acquire feedback on the vmw_vsock kernel module. Unlike previous
2013 Jan 25
4
[PATCH 0/1] VM Sockets for Linux upstreaming
From: Andy King <acking at vmware.com> ** Introduce VM Sockets *** In an effort to improve the out-of-the-box experience with Linux kernels for VMware users, VMware is working on readying the VM Sockets (VSOCK, formerly VMCI Sockets) (vmw_vsock) kernel module for inclusion in the Linux kernel. The purpose of this post is to acquire feedback on the vmw_vsock kernel module. Unlike previous
2013 Jan 08
7
[PATCH 0/6] VSOCK for Linux upstreaming
* * * This series of VSOCK linux upstreaming patches include latest udpate from VMware to address Greg's and all other's code review comments. Summary of changes: - Rebase our linux kernel tree from v3.5 to v3.7. - Fix all checkpatch warnings and errors. Fix some checkpatch with -strict errors. This addresses Greg's comment: On 15 Nov 2012
2013 Jan 08
7
[PATCH 0/6] VSOCK for Linux upstreaming
* * * This series of VSOCK linux upstreaming patches include latest udpate from VMware to address Greg's and all other's code review comments. Summary of changes: - Rebase our linux kernel tree from v3.5 to v3.7. - Fix all checkpatch warnings and errors. Fix some checkpatch with -strict errors. This addresses Greg's comment: On 15 Nov 2012
2012 Nov 21
6
[PATCH 0/6] VSOCK for Linux upstreaming
* * * This series of VSOCK linux upstreaming patches include latest udpate from VMware. Summary of changes: - Sparse clean. - Checkpatch clean with one exception, a "complex macro" in which we can't add parentheses. - Remove all runtime assertions. - Fix device name, so that existing user clients work. - Fix VMCI handle lookup. * *
2012 Nov 21
6
[PATCH 0/6] VSOCK for Linux upstreaming
* * * This series of VSOCK linux upstreaming patches include latest udpate from VMware. Summary of changes: - Sparse clean. - Checkpatch clean with one exception, a "complex macro" in which we can't add parentheses. - Remove all runtime assertions. - Fix device name, so that existing user clients work. - Fix VMCI handle lookup. * *
2012 Oct 16
11
[PATCH 0/6] VSOCK for Linux upstreaming
* * * In an effort to improve the out-of-the-box experience with Linux kernels for VMware users, VMware is working on readying the Virtual Machine Communication Interface (vmw_vmci) and VMCI Sockets (VSOCK) (vmw_vsock) kernel modules for inclusion in the Linux kernel. The purpose of this post is to acquire feedback on the vmw_vsock kernel module. The vmw_vmci kernel module has been presented in
2012 Oct 16
11
[PATCH 0/6] VSOCK for Linux upstreaming
* * * In an effort to improve the out-of-the-box experience with Linux kernels for VMware users, VMware is working on readying the Virtual Machine Communication Interface (vmw_vmci) and VMCI Sockets (VSOCK) (vmw_vsock) kernel modules for inclusion in the Linux kernel. The purpose of this post is to acquire feedback on the vmw_vsock kernel module. The vmw_vmci kernel module has been presented in
2019 Aug 09
117
[RFC PATCH v6 00/92] VM introspection
The KVM introspection subsystem provides a facility for applications running on the host or in a separate VM, to control the execution of other VM-s (pause, resume, shutdown), query the state of the vCPUs (GPRs, MSRs etc.), alter the page access bits in the shadow page tables (only for the hardware backed ones, eg. Intel's EPT) and receive notifications when events of interest have taken place