Skip to content

Commit ba6d8b1

Browse files
author
Linus Torvalds
committed
Merge master.kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes
* master.kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes: [GFS2] Fix Kconfig [DLM] fix compile warning
2 parents bc94763 + 1003f06 commit ba6d8b1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

fs/dlm/lowcomms-tcp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ static DECLARE_WAIT_QUEUE_HEAD(lowcomms_recv_waitq);
143143
/* An array of pointers to connections, indexed by NODEID */
144144
static struct connection **connections;
145145
static DECLARE_MUTEX(connections_lock);
146-
static kmem_cache_t *con_cache;
146+
static struct kmem_cache *con_cache;
147147
static int conn_array_size;
148148

149149
/* List of sockets that have reads pending */

fs/gfs2/Kconfig

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ config GFS2_FS_LOCKING_NOLOCK
3434

3535
config GFS2_FS_LOCKING_DLM
3636
tristate "GFS2 DLM locking module"
37-
depends on GFS2_FS
37+
depends on GFS2_FS && NET && INET && (IPV6 || IPV6=n)
38+
select IP_SCTP if DLM_SCTP
39+
select CONFIGFS_FS
3840
select DLM
3941
help
4042
Multiple node locking module for GFS2

0 commit comments

Comments
 (0)