aboutsummaryrefslogtreecommitdiffstats
path: root/net/vmw_vsock/af_vsock.c
AgeCommit message (Expand)AuthorFilesLines
6 daysnet: change proto and proto_ops accept typeJens Axboe1-3/+3
2023-12-15virtio/vsock: send credit update during setting SO_RCVLOWATArseniy Krasnov1-2/+7
2023-10-15vsock: enable setting SO_ZEROCOPYArseniy Krasnov1-2/+43
2023-10-15vsock: enable SOCK_SUPPORT_ZC bitArseniy Krasnov1-0/+6
2023-10-15vsock: check for MSG_ZEROCOPY support on sendArseniy Krasnov1-0/+6
2023-10-15vsock: read from socket's error queueArseniy Krasnov1-0/+6
2023-10-15vsock: set EPOLLERR on non-empty error queueArseniy Krasnov1-1/+1
2023-09-14vsock: send SIGPIPE on write to shutdowned socketArseniy Krasnov1-0/+3
2023-06-24sock: Remove ->sendpage*() in favour of sendmsg(MSG_SPLICE_PAGES)David Howells1-3/+0
2023-05-12vsock: avoid to close connected socket after the timeoutZhuang Shengen1-1/+1
2023-04-04vsock: return errors other than -ENOMEM to socketArseniy Krasnov1-2/+2
2023-03-29vsock: support sockmapBobby Eshleman1-6/+58
2023-01-12vsock: return errors other than -ENOMEM to socketBobby Eshleman1-1/+2
2022-11-18treewide: use get_random_u32_{above,below}() instead of manual loopJason A. Donenfeld1-2/+1
2022-11-18treewide: use get_random_u32_below() instead of deprecated functionJason A. Donenfeld1-1/+1
2022-11-03vsock: fix possible infinite sleep in vsock_connectible_wait_data()Dexuan Cui1-1/+4
2022-11-03vsock: remove the unused 'wait' in vsock_connectible_recvmsg()Dexuan Cui1-2/+0
2022-08-23vsock: add API call for data readyArseniy Krasnov1-0/+10
2022-08-23vsock: pass sock_rcvlowat to notify_poll_in as targetArseniy Krasnov1-1/+2
2022-08-23vsock: SO_RCVLOWAT transport set callbackArseniy Krasnov1-0/+20
2022-08-10vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout()Peilin Ye1-0/+1
2022-08-10vsock: Fix memory leak in vsock_connect()Peilin Ye1-1/+8
2022-03-11vsock: each transport cycles only on its own socketsJiyong Park1-2/+7
2022-02-17vsock: remove vsock from connected table when connect is interrupted by a signalSeth Forshee1-0/+1
2021-12-29net: Don't include filter.h from net/sock.hJakub Kicinski1-0/+1
2021-11-10vsock: prevent unnecessary refcnt inc for nonblocking connectEiichi Tsukata1-0/+2
2021-10-08vsock: Enable y2038 safe timeval for timeoutRichard Palethorpe1-10/+15
2021-10-08vsock: Refactor vsock_*_getsockopt to resemble sock_getsockoptRichard Palethorpe1-37/+28
2021-09-06af_vsock: rename variables in receive loopArseny Krasnov1-5/+5
2021-06-29Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2021-06-29net: sock: introduce sk_error_reportAlexander Aring1-1/+1
2021-06-21vsock: notify server to shutdown when client has pending signalLongpeng(Mike)1-1/+1
2021-06-18vsock: rename vsock_wait_data()Stefano Garzarella1-6/+8
2021-06-18vsock: rename vsock_has_data()Stefano Garzarella1-2/+2
2021-06-11af_vsock: update comments for stream socketsArseny Krasnov1-14/+17
2021-06-11af_vsock: rest of SEQPACKET supportArseny Krasnov1-2/+46
2021-06-11af_vsock: implement send logic for SEQPACKETArseny Krasnov1-5/+15
2021-06-11af_vsock: implement SEQPACKET receive loopArseny Krasnov1-1/+54
2021-06-11af_vsock: separate receive data loopArseny Krasnov1-49/+67
2021-06-11af_vsock: separate wait data loopArseny Krasnov1-72/+84
2021-06-11af_vsock: update functions for connectible socketArseny Krasnov1-30/+34
2021-03-28net: vsock: Fix a typoLu Wei1-1/+1
2021-03-19selinux: vsock: Set SID for socket returned by accept()David Brazdil1-0/+1
2021-02-09vsock: fix locking in vsock_shutdown()Stefano Garzarella1-3/+5
2021-02-06net/vmw_vsock: improve locking in vsock_connect_timeout()Norbert Slusarek1-4/+1
2021-02-06net/vmw_vsock: fix NULL pointer dereferenceNorbert Slusarek1-1/+1
2021-02-01vsock: fix the race conditions in multi-transport supportAlexander Popov1-5/+12
2020-12-14af_vsock: Assign the vsock transport considering the vsock address flagsAndra Paraschiv1-2/+7
2020-12-14af_vsock: Set VMADDR_FLAG_TO_HOST flag on the receive pathAndra Paraschiv1-0/+12
2020-11-19Merge https://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-1/+1
2020-11-14vsock: forward all packets to the host when no H2G is registeredStefano Garzarella1-1/+1
2020-10-29vsock: fix the error return when an invalid ioctl command is usedColin Ian King1-1/+1
2020-10-29vsock: remove ratelimit unknown ioctl messageColin Ian King1-1/+0
2020-10-26vsock: use ns_capable_noaudit() on socket createJeff Vander Stoep1-1/+1
2020-08-12vsock: fix potential null pointer dereference in vsock_poll()Stefano Garzarella1-1/+1
2020-07-24net: pass a sockptr_t into ->setsockoptChristoph Hellwig1-2/+2
2020-07-19net: make ->{get,set}sockopt in proto_ops optionalChristoph Hellwig1-2/+0
2020-05-27vsock: fix timeout in vsock_accept()Stefano Garzarella1-1/+1
2020-02-27vsock: fix potential deadlock in transport->release()Stefano Garzarella1-8/+12
2019-12-11vsock: use local transport when it is loadedStefano Garzarella1-5/+23
2019-12-11vsock: add local transport support in the vsock coreStefano Garzarella1-1/+16
2019-11-21vsock: avoid to assign transport if its initialization failsStefano Garzarella1-1/+8
2019-11-14vsock: fix bind() behaviour taking care of CIDStefano Garzarella1-2/+8
2019-11-14vsock: prevent transport modules unloadingStefano Garzarella1-4/+16
2019-11-14vsock: add multi-transports supportStefano Garzarella1-59/+184
2019-11-14vsock: move vsock_insert_unbound() in the vsock_create()Stefano Garzarella1-4/+9
2019-11-14vsock: add vsock_create_connected() called by transportsStefano Garzarella1-7/+13
2019-11-14vsock: handle buffer_size sockopts in the coreStefano Garzarella1-8/+35
2019-11-14vsock: add 'struct vsock_sock *' param to vsock_core_get_transport()Stefano Garzarella1-5/+2
2019-11-14vsock: add 'transport' member in the struct vsock_sockStefano Garzarella1-18/+38
2019-11-14vsock: remove vm_sockets_get_local_cid()Stefano Garzarella1-10/+0
2019-11-06net: use helpers to change sk_ack_backlogEric Dumazet1-2/+2
2019-11-05vsock: Simplify '__vsock_release()'Christophe JAILLET1-3/+1
2019-10-28net: use skb_queue_empty_lockless() in poll() handlersEric Dumazet1-1/+1
2019-10-01vsock: Fix a lockdep warning in __vsock_release()Dexuan Cui1-4/+12
2019-06-17Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-9/+1
2019-06-14vsock: correct removal of socket from the listSunil Muthuswamy1-31/+7
2019-06-05treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 321Thomas Gleixner1-9/+1
2019-02-03socket: move compat timeout handling into sock.cArnd Bergmann1-2/+2
2019-01-15Fix ERROR:do not initialise statics to 0 in af_vsock.cLepton Wu1-1/+1
2018-12-14VSOCK: bind to random port for VMADDR_PORT_ANYLepton Wu1-1/+6
2018-08-07vsock: split dwork to avoid reinitializationsCong Wang1-7/+8
2018-06-28Revert changes to convert to ->poll_mask() and aio IOCB_CMD_POLLLinus Torvalds1-6/+13
2018-05-26net/vmw_vsock: convert to ->poll_maskChristoph Hellwig1-13/+6
2018-04-17VSOCK: make af_vsock.ko removable againStefan Hajnoczi1-0/+6
2018-02-12net: make getname() functions return length rather than use int* parameterDenys Vlasenko1-2/+2
2018-02-11vfs: do bulk POLL* -> EPOLL* replacementLinus Torvalds1-15/+15
2018-01-30Merge branch 'misc.poll' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-2/+2
2018-01-26VSOCK: set POLLOUT | POLLWRNORM for TCP_CLOSINGStefan Hajnoczi1-1/+1
2017-11-27net: annotate ->poll() instancesAl Viro1-2/+2
2017-10-26vsock: always call vsock_init_tables()Cong Wang1-3/+4
2017-10-05VSOCK: use TCP state constants for sk_stateStefan Hajnoczi1-19/+27
2017-10-05VSOCK: move __vsock_in_bound/connected_table() to af_vsock.hStefan Hajnoczi1-10/+0
2017-10-05VSOCK: export socket tables for sock_diag interfaceStefan Hajnoczi1-4/+6
2017-05-22vsock: use new wait API for vsock_stream_sendmsg()WANG Cong1-13/+8
2017-03-21vsock: cancel packets when failing to connectPeng Tao1-0/+14
2017-03-09net: Work around lockdep limitation in sockets that use socketsDavid Howells1-1/+2
2017-03-02sched/headers: Prepare to move signal wakeup & sigpending methods from <linux...Ingo Molnar1-0/+1
2016-09-27VSOCK: Don't dec ack backlog twice for rejected connectionsJorgen Hansen1-3/+3
2016-08-02VSOCK: defer sock removal to transportsStefan Hajnoczi1-6/+10
2016-08-02VSOCK: transport-specific vsock_transport functionsStefan Hajnoczi1-0/+9
2016-06-27vsock: make listener child lock ordering explicitStefan Hajnoczi1-2/+10
2016-05-05VSOCK: do not disconnect socket when peer has shutdown SEND onlyIan Campbell1-20/+1
2016-03-22AF_VSOCK: Shrink the area influenced by prepare_to_waitClaudio Imbrenda1-73/+85
2016-03-22Revert "vsock: Fix blocking ops call in prepare_to_wait"Claudio Imbrenda1-6/+13
2016-02-13vsock: Fix blocking ops call in prepare_to_waitLaura Abbott1-13/+6
2015-11-01VSOCK: define VSOCK_SS_LISTEN once onlyStefan Hajnoczi1-19/+18
2015-10-21vsock: fix missing cleanup when misc_register failedGao feng1-3/+4
2015-05-11net: Pass kern from net_proto_family.create to sk_allocEric W. Biederman1-3/+4
2015-03-02net: Remove iocb argument from sendmsg and recvmsgYing Xue1-11/+9
2014-11-24vmci_transport: switch ->enqeue_dgram, ->enqueue_stream and ->dequeue_stream ...Al Viro1-3/+3
2014-05-05vsock: Make transport the proto ownerAndy King1-25/+22
2013-11-20net: rework recvmsg handler msg_name and msg_namelen logicHannes Frederic Sowa1-2/+0
2013-08-16Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-1/+1
2013-08-05net/vmw_vsock/af_vsock.c: drop unneeded semicolonJulia Lawall1-1/+1
2013-07-27VSOCK: Move af_vsock.h and vsock_addr.h to include/netAsias He1-2/+1
2013-06-23VSOCK: Fix VSOCK_HASH and VSOCK_CONN_HASHAsias He1-3/+3
2013-06-23VSOCK: Introduce vsock_auto_bind helperAsias He1-28/+21
2013-04-25VSOCK: Drop bogus __init annotation from vsock_init_tables()Geert Uytterhoeven1-1/+1
2013-04-25VSOCK: Fix misc device registrationAsias He1-1/+1
2013-04-07VSOCK: Fix missing msg_namelen update in vsock_stream_recvmsg()Mathias Krause1-0/+2
2013-04-02VSOCK: Handle changes to the VMCI context ID.Reilly Grant1-3/+3
2013-02-18VSOCK: Don't reject PF_VSOCK protocolAndy King1-1/+1
2013-02-18VSOCK: get rid of vsock_version.hDmitry Torokhov1-2/+1
2013-02-18VSOCK: get rid of EXPORT_SYMTABDmitry Torokhov1-2/+0
2013-02-10VSOCK: Introduce VM SocketsAndy King1-0/+2015