| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- --- a/src/vectoring/ifxmips_vectoring.c
- +++ b/src/vectoring/ifxmips_vectoring.c
- @@ -325,7 +325,7 @@ static int proc_write_dbg(struct file *f
- else
- printk(dbg_enable_mask_str[i] + 1);
- }
- - printk("] > /proc/vectoring\n");
- + printk("] > /proc/driver/vectoring\n");
- }
-
- if ( f_enable )
- @@ -433,11 +433,10 @@ static int __init vectoring_init(void)
- {
- struct proc_dir_entry *res;
-
- - res = proc_create("vectoring",
- + res = proc_create("driver/vectoring",
- S_IRUGO|S_IWUSR,
- 0,
- &g_proc_file_vectoring_dbg_seq_fops);
- - printk("res = %p\n", res);
-
- register_netdev_event_handler();
- g_ptm_net_dev = dev_get_by_name(&init_net, "ptm0");
- @@ -460,7 +459,7 @@ static void __exit vectoring_exit(void)
-
- unregister_netdev_event_handler();
-
- - remove_proc_entry("vectoring", NULL);
- + remove_proc_entry("driver/vectoring", NULL);
- }
-
- module_init(vectoring_init);
- --- a/src/vectoring/ifxmips_vectoring_test.c
- +++ b/src/vectoring/ifxmips_vectoring_test.c
- @@ -79,7 +79,7 @@ static int proc_write_vectoring(struct f
- }
- }
- else
- - printk("echo send <size> > /proc/eth/vectoring\n");
- + printk("echo send <size> > /proc/driver/vectoring_test\n");
-
- return count;
- }
- @@ -112,9 +112,7 @@ static __init void proc_file_create(void
- {
- struct proc_dir_entry *res;
-
- -// g_proc_dir = proc_mkdir("eth", NULL);
- -
- - res = proc_create("eth/vectoring",
- + res = proc_create("driver/vectoring_test",
- S_IRUGO|S_IWUSR,
- g_proc_dir,
- &g_proc_file_vectoring_seq_fops);
- @@ -122,10 +120,7 @@ static __init void proc_file_create(void
-
- static __exit void proc_file_delete(void)
- {
- - remove_proc_entry("vectoring",
- - g_proc_dir);
- -
- - remove_proc_entry("eth", NULL);
- + remove_proc_entry("driver/vectoring_test", NULL);
- }
-
-
- @@ -151,3 +146,5 @@ static void __exit vectoring_test_exit(v
-
- module_init(vectoring_test_init);
- module_exit(vectoring_test_exit);
- +
- +MODULE_LICENSE("GPL");
|