Commit 592dbf58 authored by Benjamin LaHaise's avatar Benjamin LaHaise

clean up whitespace and patch import errors from net-kiocb patch

parent 2bd7288e
...@@ -318,30 +318,6 @@ static inline struct kiocb *siocb_to_kiocb(struct sock_iocb *si) ...@@ -318,30 +318,6 @@ static inline struct kiocb *siocb_to_kiocb(struct sock_iocb *si)
return container_of((void *)si, struct kiocb, private); return container_of((void *)si, struct kiocb, private);
} }
/* sock_iocb: used to kick off async processing of socket ios */
struct sock_iocb {
struct list_head list;
int flags;
int size;
struct socket *sock;
struct sock *sk;
struct msghdr *msg, async_msg;
struct iovec async_iov;
struct scm_cookie *scm, async_scm;
};
static inline struct sock_iocb *kiocb_to_siocb(struct kiocb *iocb)
{
BUG_ON(sizeof(struct sock_iocb) > KIOCB_PRIVATE_SIZE);
return (struct sock_iocb *)iocb->private;
}
static inline struct kiocb *siocb_to_kiocb(struct sock_iocb *si)
{
return container_of((void *)si, struct kiocb, private);
}
/* Used by processes to "lock" a socket state, so that /* Used by processes to "lock" a socket state, so that
* interrupts and bottom half handlers won't change it * interrupts and bottom half handlers won't change it
* from under us. It essentially blocks any incoming * from under us. It essentially blocks any incoming
......
...@@ -117,7 +117,7 @@ static ssize_t sock_sendpage(struct file *file, struct page *page, ...@@ -117,7 +117,7 @@ static ssize_t sock_sendpage(struct file *file, struct page *page,
static struct file_operations socket_file_ops = { static struct file_operations socket_file_ops = {
.llseek = no_llseek, .llseek = no_llseek,
.aio_read = sock_aio_read, .aio_read = sock_aio_read,
.aio_write = sock_aio_write, .aio_write = sock_aio_write,
.poll = sock_poll, .poll = sock_poll,
.ioctl = sock_ioctl, .ioctl = sock_ioctl,
...@@ -541,7 +541,7 @@ int sock_sendmsg(struct socket *sock, struct msghdr *msg, int size) ...@@ -541,7 +541,7 @@ int sock_sendmsg(struct socket *sock, struct msghdr *msg, int size)
struct kiocb iocb; struct kiocb iocb;
int ret; int ret;
init_sync_kiocb(&iocb, NULL); init_sync_kiocb(&iocb, NULL);
ret = __sock_sendmsg(&iocb, sock, msg, size); ret = __sock_sendmsg(&iocb, sock, msg, size);
if (-EIOCBQUEUED == ret) if (-EIOCBQUEUED == ret)
ret = wait_on_sync_kiocb(&iocb); ret = wait_on_sync_kiocb(&iocb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment