~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise-proposed

« back to all changes in this revision

Viewing changes to fs/lockd/svc.c

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich, Luke Yelavich, Upstream Kernel Changes
  • Date: 2012-04-04 18:49:36 UTC
  • Revision ID: package-import@ubuntu.com-20120404184936-tqu735914muv4wpg
Tags: 3.2.0-22.30
[ Luke Yelavich ]

* [Config] Update configs after rebase against Ubuntu-3.2.0-22.35

[ Upstream Kernel Changes ]

* Low-latency: Rebase against Ubuntu-3.2.0-22.35

Show diffs side-by-side

added added

removed removed

Lines of Context:
440
440
        __typeof__(type) num = which_strtol(val, &endp, 0);             \
441
441
        if (endp == val || *endp || num < (min) || num > (max))         \
442
442
                return -EINVAL;                                         \
443
 
        *((int *) kp->arg) = num;                                       \
 
443
        *((type *) kp->arg) = num;                                      \
444
444
        return 0;                                                       \
445
445
}
446
446