File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 6
6
#include <linux/kernel.h>
7
7
#include <linux/module.h>
8
8
#include <linux/mutex.h>
9
+ #include <linux/slab.h>
9
10
#include <linux/version.h>
10
11
11
12
MODULE_LICENSE ("Dual MIT/GPL" );
@@ -25,10 +26,18 @@ static struct class *fib_class;
25
26
static DEFINE_MUTEX (fib_mutex );
26
27
static int major = 0 , minor = 0 ;
27
28
29
+ /**
30
+ * fib_sequence() - Calculate the k-th Fibonacci number
31
+ * @k: Index of the Fibonacci number to calculate
32
+ *
33
+ * Return: The k-th Fibonacci number on success, -ENOMEM on memory allocation
34
+ * failure.
35
+ */
28
36
static long long fib_sequence (long long k )
29
37
{
30
- /* FIXME: C99 variable-length array (VLA) is not allowed in Linux kernel. */
31
- long long f [k + 2 ];
38
+ long long * f = kmalloc (sizeof (* f ) * (k + 2 ), GFP_KERNEL );
39
+ if (!f )
40
+ return - ENOMEM ;
32
41
33
42
f [0 ] = 0 ;
34
43
f [1 ] = 1 ;
@@ -37,7 +46,11 @@ static long long fib_sequence(long long k)
37
46
f [i ] = f [i - 1 ] + f [i - 2 ];
38
47
}
39
48
40
- return f [k ];
49
+ long long ret = f [k ];
50
+
51
+ kfree (f );
52
+
53
+ return ret ;
41
54
}
42
55
43
56
static int fib_open (struct inode * inode , struct file * file )
You can’t perform that action at this time.
0 commit comments