Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts: arch/microblaze/include/asm/socket.h
Этот коммит содержится в:
@@ -408,6 +408,8 @@ static int if_write_room(struct tty_struct *tty)
|
||||
return retval;
|
||||
}
|
||||
|
||||
/* FIXME: This function does not have error returns */
|
||||
|
||||
static int if_chars_in_buffer(struct tty_struct *tty)
|
||||
{
|
||||
struct cardstate *cs;
|
||||
|
@@ -37,7 +37,6 @@
|
||||
#include <linux/kernel_stat.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/moduleparam.h>
|
||||
#include "hisax.h"
|
||||
|
@@ -13,6 +13,7 @@
|
||||
|
||||
#include <linux/isdn.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include "isdn_common.h"
|
||||
#include "isdn_tty.h"
|
||||
#ifdef CONFIG_ISDN_AUDIO
|
||||
|
@@ -731,10 +731,10 @@ l1oip_socket_thread(void *data)
|
||||
while (!signal_pending(current)) {
|
||||
struct kvec iov = {
|
||||
.iov_base = recvbuf,
|
||||
.iov_len = sizeof(recvbuf),
|
||||
.iov_len = recvbuf_size,
|
||||
};
|
||||
recvlen = kernel_recvmsg(socket, &msg, &iov, 1,
|
||||
sizeof(recvbuf), 0);
|
||||
recvbuf_size, 0);
|
||||
if (recvlen > 0) {
|
||||
l1oip_socket_parse(hc, &sin_rx, recvbuf, recvlen);
|
||||
} else {
|
||||
@@ -1480,7 +1480,7 @@ l1oip_init(void)
|
||||
return -ENOMEM;
|
||||
|
||||
l1oip_cnt = 0;
|
||||
while (type[l1oip_cnt] && l1oip_cnt < MAX_CARDS) {
|
||||
while (l1oip_cnt < MAX_CARDS && type[l1oip_cnt]) {
|
||||
switch (type[l1oip_cnt] & 0xff) {
|
||||
case 1:
|
||||
pri = 0;
|
||||
|
@@ -17,6 +17,7 @@
|
||||
|
||||
#include <linux/mISDNif.h>
|
||||
#include <linux/kthread.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include "core.h"
|
||||
|
||||
static u_int *debug;
|
||||
|
Ссылка в новой задаче
Block a user