~ubuntu-branches/ubuntu/wily/linux-ti-omap4/wily

« back to all changes in this revision

Viewing changes to drivers/md/persistent-data/dm-btree-spine.c

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Ubuntu: 3.5.0-25.38
  • Date: 2013-02-20 22:03:31 UTC
  • mfrom: (74.1.1 quantal-proposed)
  • Revision ID: package-import@ubuntu.com-20130220220331-0ea4l33x3cr61nch
Tags: 3.5.0-220.28
* Release Tracking Bug
  - LP: #1130311

[ Paolo Pisati ]

* rebased on Ubuntu-3.5.0-25.38

[ Ubuntu: 3.5.0-25.38 ]

* Release Tracking Bug
  - LP: #1129472
* ptrace: introduce signal_wake_up_state() and ptrace_signal_wake_up()
  - LP: #1119885, #1129192
  - CVE-2013-0871
* ptrace: ensure arch_ptrace/ptrace_request can never race with SIGKILL
  - LP: #1119885, #1129192
  - CVE-2013-0871
* wake_up_process() should be never used to wakeup a TASK_STOPPED/TRACED
  task
  - LP: #1119885, #1129192
  - CVE-2013-0871

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
                                   struct dm_block *b,
24
24
                                   size_t block_size)
25
25
{
26
 
        struct node *n = dm_block_data(b);
 
26
        struct btree_node *n = dm_block_data(b);
27
27
        struct node_header *h = &n->header;
28
28
 
29
29
        h->blocknr = cpu_to_le64(dm_block_location(b));
38
38
                      struct dm_block *b,
39
39
                      size_t block_size)
40
40
{
41
 
        struct node *n = dm_block_data(b);
 
41
        struct btree_node *n = dm_block_data(b);
42
42
        struct node_header *h = &n->header;
43
43
        size_t value_size;
44
44
        __le32 csum_disk;
164
164
        return r;
165
165
}
166
166
 
167
 
struct node *ro_node(struct ro_spine *s)
 
167
struct btree_node *ro_node(struct ro_spine *s)
168
168
{
169
169
        struct dm_block *block;
170
170