ar7-atm: fixup proc fixes
authorJonas Gorski <jonas.gorski@gmail.com>
Fri, 13 Oct 2017 11:17:51 +0000 (13:17 +0200)
committerJonas Gorski <jonas.gorski@gmail.com>
Sun, 29 Oct 2017 22:41:00 +0000 (23:41 +0100)
They were incomplete, so fix them to properly update the function signatures
to what is expected.

Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
package/kernel/ar7-atm/patches-D7.04.03.00/190-2.6.32_proc_fixes.patch
package/kernel/ar7-atm/patches-D7.04.03.00/220-3.10-update_proc_code.patch
package/kernel/ar7-atm/patches-D7.04.03.00/240-3.18_fixes.patch
package/kernel/ar7-atm/patches-D7.05.01.00/190-2.6.32_proc_fixes.patch
package/kernel/ar7-atm/patches-D7.05.01.00/220-3.10-update_proc_code.patch
package/kernel/ar7-atm/patches-D7.05.01.00/240-3.18_fixes.patch

index 87a1fde1c15fd8f055db06e4f31d887cdebfd237..1223604b0eb2f243261a5caa82a92ff0795e3832 100644 (file)
@@ -9,12 +9,43 @@
  #define MAX_STR_SIZE     256
  #define DSL_MOD_SIZE     256
  
  #define MAX_STR_SIZE     256
  #define DSL_MOD_SIZE     256
  
+@@ -333,8 +333,8 @@ static void tn7dsl_chng_modulation(void*
+ static unsigned int tn7dsl_set_modulation(void* data, int flag);
+ static void tn7dsl_ctrl_fineGain(int value);
+ static void tn7dsl_set_fineGainValue(int value);
+-static int dslmod_sysctl (ctl_table * ctl, int write, struct file *filp,
+-                          void *buffer, size_t * lenp);
++static int dslmod_sysctl (ctl_table * ctl, int write, void *buffer,
++                          size_t * lenp, loff_t *ppos);
+ static void tn7dsl_register_dslss_led(void);
+ void tn7dsl_dslmod_sysctl_register(void);
+ void tn7dsl_dslmod_sysctl_unregister(void);
+@@ -3398,8 +3398,8 @@ unsigned int tn7dsl_get_memory(unsigned
+-static int dslmod_sysctl(ctl_table *ctl, int write, struct file * filp,
+-      void *buffer, size_t *lenp)
++static int dslmod_sysctl(ctl_table *ctl, int write, void *buffer,
++      size_t *lenp, loff_t *ppos)
+ {
+   char *ptr;
+   int ret, len = 0;
+@@ -3411,7 +3411,7 @@ static int dslmod_sysctl(ctl_table *ctl,
+   char mod_req[16] = { '\t' };
+   char fst_byt;
+-  if (!*lenp || (filp->f_pos && !write))
++  if (!*lenp || (*ppos && !write))
+   {
+     *lenp = 0;
+     return 0;
 @@ -3421,9 +3421,9 @@ static int dslmod_sysctl(ctl_table *ctl,
     */
    if(write)
      {
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
 @@ -3421,9 +3421,9 @@ static int dslmod_sysctl(ctl_table *ctl,
     */
    if(write)
      {
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
-+    ret = proc_dostring(ctl, write, buffer, lenp, 0);
++    ret = proc_dostring(ctl, write, buffer, lenp, ppos);
  
 -    switch (ctl->ctl_name)
 +    switch ((long)ctl->extra2)
  
 -    switch (ctl->ctl_name)
 +    switch ((long)ctl->extra2)
@@ -26,7 +57,7 @@
      {
      len += sprintf(info+len, mod_req);
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
      {
      len += sprintf(info+len, mod_req);
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
-+    ret = proc_dostring(ctl, write, buffer, lenp, 0);
++    ret = proc_dostring(ctl, write, buffer, lenp, ppos);
      }
    return ret;
  }
      }
    return ret;
  }
index 6026d30c604230ba179dadd2ced01bca12e6f990..7a2bbe8089ee712b47518c7424bc00213563067b 100644 (file)
@@ -2886,7 +2886,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
        k=0;
        for(j=0;j<4;j++)
        {
        k=0;
        for(j=0;j<4;j++)
        {
-@@ -1468,26 +1488,16 @@ int tn7sar_proc_sar_stat(char* buf, char
+@@ -1468,26 +1488,18 @@ int tn7sar_proc_sar_stat(char* buf, char
          {
            if((char *)*pSarStat == NULL)
              break;
          {
            if((char *)*pSarStat == NULL)
              break;
@@ -2897,7 +2897,8 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
 -            k += dBytes;
 -          }
 +
 -            k += dBytes;
 -          }
 +
-+          k += seq_printf(m, "%s: ",(char *) *pSarStat);
++          seq_printf(m, "%s: ",(char *) *pSarStat);
++          k += strlen((char *) *pSarStat) + strlen(": ");
            pSarStat++;
 -          if(len<=limit)
 -          {
            pSarStat++;
 -          if(len<=limit)
 -          {
@@ -2905,7 +2906,8 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
 -            len += dBytes;
 -            k += dBytes;
 -          }
 -            len += dBytes;
 -            k += dBytes;
 -          }
-+          k += seq_printf(m, "%s;  \n",(char *) *pSarStat);
++          seq_printf(m, "%s;  \n",(char *) *pSarStat);
++          k += strlen((char *) *pSarStat) + strlen(";  \n");
            pSarStat++;
  
            if(k > 60)
            pSarStat++;
  
            if(k > 60)
@@ -2917,7 +2919,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
            }
          }
  
            }
          }
  
-@@ -1496,9 +1506,22 @@ int tn7sar_proc_sar_stat(char* buf, char
+@@ -1496,9 +1508,22 @@ int tn7sar_proc_sar_stat(char* buf, char
      }
    }
  
      }
    }
  
index 4588782c4fdb1637817c6531c21e7841061e8e17..2e693001473736f45774660a3968ca686dd89a11 100644 (file)
@@ -4,18 +4,18 @@
  static unsigned int tn7dsl_set_modulation(void* data, int flag);
  static void tn7dsl_ctrl_fineGain(int value);
  static void tn7dsl_set_fineGainValue(int value);
  static unsigned int tn7dsl_set_modulation(void* data, int flag);
  static void tn7dsl_ctrl_fineGain(int value);
  static void tn7dsl_set_fineGainValue(int value);
--static int dslmod_sysctl (ctl_table * ctl, int write, struct file *filp,
-+static int dslmod_sysctl (struct ctl_table * ctl, int write, struct file *filp,
-                           void *buffer, size_t * lenp);
+-static int dslmod_sysctl (ctl_table * ctl, int write, void *buffer,
++static int dslmod_sysctl (struct ctl_table * ctl, int write, void *buffer,
+                           size_t * lenp, loff_t *ppos);
  static void tn7dsl_register_dslss_led(void);
  void tn7dsl_dslmod_sysctl_register(void);
 @@ -3308,7 +3308,7 @@ unsigned int tn7dsl_get_memory(unsigned
  
  
  
  static void tn7dsl_register_dslss_led(void);
  void tn7dsl_dslmod_sysctl_register(void);
 @@ -3308,7 +3308,7 @@ unsigned int tn7dsl_get_memory(unsigned
  
  
  
--static int dslmod_sysctl(ctl_table *ctl, int write, struct file * filp,
-+static int dslmod_sysctl(struct ctl_table *ctl, int write, struct file * filp,
-       void *buffer, size_t *lenp)
+-static int dslmod_sysctl(ctl_table *ctl, int write, void *buffer,
++static int dslmod_sysctl(struct ctl_table *ctl, int write, void *buffer,
+       size_t *lenp, loff_t *ppos)
  {
    char *ptr;
 @@ -3423,7 +3423,7 @@ static int dslmod_sysctl(ctl_table *ctl,
  {
    char *ptr;
 @@ -3423,7 +3423,7 @@ static int dslmod_sysctl(ctl_table *ctl,
index 23045bb7b2e84aa217dd575b02e4b40ad65b42fc..10d32d26180a8e0ac5c71afa780e0de71510f01f 100644 (file)
@@ -9,12 +9,43 @@
  #define MAX_STR_SIZE     256
  #define DSL_MOD_SIZE     256
  
  #define MAX_STR_SIZE     256
  #define DSL_MOD_SIZE     256
  
+@@ -350,8 +350,8 @@ static void tn7dsl_chng_modulation(void*
+ static unsigned int tn7dsl_set_modulation(void* data, int flag);
+ static void tn7dsl_ctrl_fineGain(int value);
+ static void tn7dsl_set_fineGainValue(int value);
+-static int dslmod_sysctl (ctl_table * ctl, int write, struct file *filp,
+-                          void *buffer, size_t * lenp);
++static int dslmod_sysctl (ctl_table * ctl, int write, void *buffer,
++                          size_t * lenp, loff_t *ppos);
+ static void tn7dsl_register_dslss_led(void);
+ void tn7dsl_dslmod_sysctl_register(void);
+ void tn7dsl_dslmod_sysctl_unregister(void);
+@@ -3582,8 +3582,8 @@ unsigned int tn7dsl_get_memory(unsigned
+-static int dslmod_sysctl(ctl_table *ctl, int write, struct file * filp,
+-      void *buffer, size_t *lenp)
++static int dslmod_sysctl(ctl_table *ctl, int write, void *buffer,
++      size_t *lenp, loff_t *ppos)
+ {
+   char *ptr;
+   int ret, len = 0;
+@@ -3595,7 +3595,7 @@ static int dslmod_sysctl(ctl_table *ctl,
+   char mod_req[16] = { '\t' };
+   char fst_byt;
+-  if (!*lenp || (filp->f_pos && !write))
++  if (!*lenp || (*ppos && !write))
+   {
+     *lenp = 0;
+     return 0;
 @@ -3605,9 +3605,9 @@ static int dslmod_sysctl(ctl_table *ctl,
     */
    if(write)
      {
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
 @@ -3605,9 +3605,9 @@ static int dslmod_sysctl(ctl_table *ctl,
     */
    if(write)
      {
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
-+    ret = proc_dostring(ctl, write, buffer, lenp, 0);
++    ret = proc_dostring(ctl, write, buffer, lenp, ppos);
  
 -    switch (ctl->ctl_name)
 +    switch ((long)ctl->extra2)
  
 -    switch (ctl->ctl_name)
 +    switch ((long)ctl->extra2)
@@ -26,7 +57,7 @@
      {
      len += sprintf(info+len, mod_req);
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
      {
      len += sprintf(info+len, mod_req);
 -    ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
-+    ret = proc_dostring(ctl, write, buffer, lenp, 0);
++    ret = proc_dostring(ctl, write, buffer, lenp, ppos);
      }
    return ret;
  }
      }
    return ret;
  }
index 1d3d7583be5b676c456ba353e9d477c83c0ef15e..ef1ddd833cadd5754685d1c4c7391e64a59bb127 100644 (file)
@@ -3023,7 +3023,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
        k=0;
        for(j=0;j<4;j++)
        {
        k=0;
        for(j=0;j<4;j++)
        {
-@@ -1620,26 +1640,16 @@ int tn7sar_proc_sar_stat(char* buf, char
+@@ -1620,26 +1640,18 @@ int tn7sar_proc_sar_stat(char* buf, char
          {
            if((char *)*pSarStat == NULL)
              break;
          {
            if((char *)*pSarStat == NULL)
              break;
@@ -3034,7 +3034,8 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
 -            k += dBytes;
 -          }
 +
 -            k += dBytes;
 -          }
 +
-+          k += seq_printf(m, "%s: ",(char *) *pSarStat);
++          seq_printf(m, "%s: ",(char *) *pSarStat);
++          k += strlen((char *) *pSarStat) + strlen(": ");
            pSarStat++;
 -          if(len<=limit)
 -          {
            pSarStat++;
 -          if(len<=limit)
 -          {
@@ -3042,7 +3043,8 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
 -            len += dBytes;
 -            k += dBytes;
 -          }
 -            len += dBytes;
 -            k += dBytes;
 -          }
-+          k += seq_printf(m, "%s;  \n",(char *) *pSarStat);
++          seq_printf(m, "%s;  \n",(char *) *pSarStat);
++          k += strlen((char *) *pSarStat) + strlen(";  \n");
            pSarStat++;
  
            if(k > 60)
            pSarStat++;
  
            if(k > 60)
@@ -3054,7 +3056,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
            }
          }
  
            }
          }
  
-@@ -1648,9 +1658,22 @@ int tn7sar_proc_sar_stat(char* buf, char
+@@ -1648,9 +1660,22 @@ int tn7sar_proc_sar_stat(char* buf, char
      }
    }
  
      }
    }
  
index 43da567b5f690891e6e9025aa29439243a7e61ac..c95c876c546e4b23b718f4f1fe5e816038b8da87 100644 (file)
@@ -4,18 +4,18 @@
  static unsigned int tn7dsl_set_modulation(void* data, int flag);
  static void tn7dsl_ctrl_fineGain(int value);
  static void tn7dsl_set_fineGainValue(int value);
  static unsigned int tn7dsl_set_modulation(void* data, int flag);
  static void tn7dsl_ctrl_fineGain(int value);
  static void tn7dsl_set_fineGainValue(int value);
--static int dslmod_sysctl (ctl_table * ctl, int write, struct file *filp,
-+static int dslmod_sysctl (struct ctl_table * ctl, int write, struct file *filp,
-                           void *buffer, size_t * lenp);
+-static int dslmod_sysctl (ctl_table * ctl, int write, void *buffer,
++static int dslmod_sysctl (struct ctl_table * ctl, int write, void *buffer,
+                           size_t * lenp, loff_t *ppos);
  static void tn7dsl_register_dslss_led(void);
  void tn7dsl_dslmod_sysctl_register(void);
 @@ -3488,7 +3488,7 @@ unsigned int tn7dsl_get_memory(unsigned
  
  
  
  static void tn7dsl_register_dslss_led(void);
  void tn7dsl_dslmod_sysctl_register(void);
 @@ -3488,7 +3488,7 @@ unsigned int tn7dsl_get_memory(unsigned
  
  
  
--static int dslmod_sysctl(ctl_table *ctl, int write, struct file * filp,
-+static int dslmod_sysctl(struct ctl_table *ctl, int write, struct file * filp,
-       void *buffer, size_t *lenp)
+-static int dslmod_sysctl(ctl_table *ctl, int write, void *buffer,
++static int dslmod_sysctl(struct ctl_table *ctl, int write, void *buffer,
+       size_t *lenp, loff_t *ppos)
  {
    char *ptr;
 @@ -3603,7 +3603,7 @@ static int dslmod_sysctl(ctl_table *ctl,
  {
    char *ptr;
 @@ -3603,7 +3603,7 @@ static int dslmod_sysctl(ctl_table *ctl,