Skip to content

Commit d09711e

Browse files
authored
Merge pull request #14 from ericlinsechs/master
Avoid using variable-length array
2 parents 5ce76d4 + 36335ee commit d09711e

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

fibdrv.c

+16-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include <linux/kernel.h>
77
#include <linux/module.h>
88
#include <linux/mutex.h>
9+
#include <linux/slab.h>
910
#include <linux/version.h>
1011

1112
MODULE_LICENSE("Dual MIT/GPL");
@@ -25,10 +26,18 @@ static struct class *fib_class;
2526
static DEFINE_MUTEX(fib_mutex);
2627
static int major = 0, minor = 0;
2728

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+
*/
2836
static long long fib_sequence(long long k)
2937
{
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;
3241

3342
f[0] = 0;
3443
f[1] = 1;
@@ -37,7 +46,11 @@ static long long fib_sequence(long long k)
3746
f[i] = f[i - 1] + f[i - 2];
3847
}
3948

40-
return f[k];
49+
long long ret = f[k];
50+
51+
kfree(f);
52+
53+
return ret;
4154
}
4255

4356
static int fib_open(struct inode *inode, struct file *file)

0 commit comments

Comments
 (0)