diff options
| author | David S. Miller <[email protected]> | 2020-02-27 19:52:35 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2020-02-27 19:52:35 +0000 |
| commit | 5c05a164d441a1792791175e4959ea9df12f7e2b (patch) | |
| tree | 272bf41dd873c2ac27d47eae716e616221b297c6 /net/unix/af_unix.c | |
| parent | Merge branch 'net-rmnet-fix-several-bugs' (diff) | |
| download | kernel-5c05a164d441a1792791175e4959ea9df12f7e2b.tar.gz kernel-5c05a164d441a1792791175e4959ea9df12f7e2b.zip | |
unix: It's CONFIG_PROC_FS not CONFIG_PROCFS
Fixes: 3a12500ed5dd ("unix: define and set show_fdinfo only if procfs is enabled")
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/unix/af_unix.c')
| -rw-r--r-- | net/unix/af_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index aa6e2530e1ec..68debcb28fa4 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -682,7 +682,7 @@ static int unix_set_peek_off(struct sock *sk, int val) return 0; } -#ifdef CONFIG_PROCFS +#ifdef CONFIG_PROC_FS static void unix_show_fdinfo(struct seq_file *m, struct socket *sock) { struct sock *sk = sock->sk; |
