diff options
Diffstat (limited to 'recipes/ixp4xx/ixp4xx-csr-2.1.1/module-param.patch')
-rw-r--r-- | recipes/ixp4xx/ixp4xx-csr-2.1.1/module-param.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/ixp4xx/ixp4xx-csr-2.1.1/module-param.patch b/recipes/ixp4xx/ixp4xx-csr-2.1.1/module-param.patch new file mode 100644 index 0000000000..6472ef8b05 --- /dev/null +++ b/recipes/ixp4xx/ixp4xx-csr-2.1.1/module-param.patch @@ -0,0 +1,19 @@ + src/oslinux/IxLinuxInit.c | 4 ++++ + 1 files changed, 4 insertions(+) + +Index: ixp400_xscale_sw/src/oslinux/IxLinuxInit.c +=================================================================== +--- ixp400_xscale_sw.orig/src/oslinux/IxLinuxInit.c ++++ ixp400_xscale_sw/src/oslinux/IxLinuxInit.c +@@ -103,7 +103,11 @@ + #if KERNEL_VERSION(2,6,0) <= LINUX_VERSION_CODE + MODULE_VERSION("2.1.1"); + #endif ++#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,16) + MODULE_PARM(livelock_dispatcher, "i"); ++#else ++module_param(livelock_dispatcher, int, 0644); ++#endif + MODULE_PARM_DESC(livelock_dispatcher, "If non-zero, use the livelock prevention qmgr dispatcher"); + + /* Init and cleanup functions for module */ |