net: socket: preferred __aligned(size) for control buffer
This patch cleanup checkpatch.pl warning WARNING: __aligned(size) is preferred over __attribute__((aligned(size))) Signed-off-by: Amit Kushwaha <kushwaha.a@samsung.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7c43644890
commit
846cc1231a
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NET An implementation of the SOCKET network access protocol.
|
* NET An implementation of the SOCKET network access protocol.
|
||||||
*
|
*
|
||||||
|
@ -1918,7 +1919,7 @@ static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
|
||||||
struct sockaddr_storage address;
|
struct sockaddr_storage address;
|
||||||
struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
|
struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
|
||||||
unsigned char ctl[sizeof(struct cmsghdr) + 20]
|
unsigned char ctl[sizeof(struct cmsghdr) + 20]
|
||||||
__attribute__ ((aligned(sizeof(__kernel_size_t))));
|
__aligned(sizeof(__kernel_size_t));
|
||||||
/* 20 is size of ipv6_pktinfo */
|
/* 20 is size of ipv6_pktinfo */
|
||||||
unsigned char *ctl_buf = ctl;
|
unsigned char *ctl_buf = ctl;
|
||||||
int ctl_len;
|
int ctl_len;
|
||||||
|
|
Loading…
Reference in New Issue