1. 18 Oct, 2008 5 commits
  2. 17 Oct, 2008 1 commit
  3. 14 Oct, 2008 4 commits
  4. 13 Oct, 2008 1 commit
  5. 10 Oct, 2008 3 commits
  6. 09 Oct, 2008 1 commit
  7. 08 Oct, 2008 1 commit
  8. 27 Sep, 2008 4 commits
  9. 26 Sep, 2008 1 commit
    • Julien Brunel's avatar
      UBI: fix IS_ERR test · 0e4a008a
      Julien Brunel authored
      In case of error, the function add_volume returns an ERR pointer. The
      result of IS_ERR, which is supposed to be used in a test as it is, is
      here checked to be less than zero, which seems odd. We suggest to
      replace this test by a simple IS_ERR test.
      
      A simplified version of the semantic match that finds this problem is
      as follows:
      (http://www.emn.fr/x-info/coccinelle/)
      
      // <smpl>
      @def0@
      expression x;
      position p0;
      @@
      x@p0 = add_volume(...)
      
      @protected@
      expression def0.x,E;
      position def0.p0;
      position p;
      statement S;
      @@
      x@p0
      ... when != x = E
      if (!IS_ERR(x) && ...) {<... x@p ...>} else S
      
      @unprotected@
      expression def0.x,E;
      identifier fld;
      position def0.p0;
      position p != protected.p;
      @@
      x@p0
      ... when != x = E
      * x@p->fld
      // </smpl>
      Signed-off-by: default avatarJulien Brunel <brunel@diku.dk>
      Signed-off-by: default avatarJulia Lawall <julia@diku.dk>
      Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
      0e4a008a
  10. 16 Sep, 2008 2 commits
  11. 05 Sep, 2008 1 commit
  12. 02 Sep, 2008 1 commit
  13. 01 Sep, 2008 11 commits
  14. 30 Aug, 2008 1 commit
  15. 29 Aug, 2008 3 commits