lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 15 Dec 2016 10:13:21 -0800
From:   Randy Dunlap <rdunlap@...radead.org>
To:     Stephen Rothwell <sfr@...b.auug.org.au>, linux-next@...r.kernel.org
Cc:     linux-kernel@...r.kernel.org, Richard Weinberger <richard@....at>,
        Artem Bityutskiy <dedekind1@...il.com>,
        linux-mtd@...ts.infradead.org
Subject: Re: linux-next: Tree for Dec 15 (fs/ubifs/ causes problems in
 fs/crypto/)

On 12/14/16 19:21, Stephen Rothwell wrote:
> Hi all,
> 
> Please do not add any material for v4.11 to your linux-next included
> branches until after v4.10-rc1 has been released.
> 
> Changes since 20161214:
> 

on x86_64:

when CONFIG_BLOCK is not enabled:

warning: (UBIFS_FS_ENCRYPTION) selects FS_ENCRYPTION which has unmet direct dependencies (BLOCK)

../fs/crypto/crypto.c: In function 'fscrypt_zeroout_range':
../fs/crypto/crypto.c:355:3: error: implicit declaration of function 'bio_alloc' [-Werror=implicit-function-declaration]
   bio = bio_alloc(GFP_NOWAIT, 1);
   ^
../fs/crypto/crypto.c:355:7: warning: assignment makes pointer from integer without a cast [enabled by default]
   bio = bio_alloc(GFP_NOWAIT, 1);
       ^
../fs/crypto/crypto.c:360:6: error: dereferencing pointer to incomplete type
   bio->bi_bdev = inode->i_sb->s_bdev;
      ^
../fs/crypto/crypto.c:361:6: error: dereferencing pointer to incomplete type
   bio->bi_iter.bi_sector =
      ^
../fs/crypto/crypto.c:363:3: error: implicit declaration of function 'bio_set_op_attrs' [-Werror=implicit-function-declaration]
   bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
   ^
../fs/crypto/crypto.c:363:25: error: 'REQ_OP_WRITE' undeclared (first use in this function)
   bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
                         ^
../fs/crypto/crypto.c:363:25: note: each undeclared identifier is reported only once for each function it appears in
../fs/crypto/crypto.c:364:3: error: implicit declaration of function 'bio_add_page' [-Werror=implicit-function-declaration]
   ret = bio_add_page(bio, ciphertext_page,
   ^
../fs/crypto/crypto.c:369:4: error: implicit declaration of function 'bio_put' [-Werror=implicit-function-declaration]
    bio_put(bio);
    ^
../fs/crypto/crypto.c:373:3: error: implicit declaration of function 'submit_bio_wait' [-Werror=implicit-function-declaration]
   err = submit_bio_wait(bio);
   ^
../fs/crypto/crypto.c:374:24: error: dereferencing pointer to incomplete type
   if ((err == 0) && bio->bi_error)
                        ^
../fs/crypto/crypto.c: In function 'completion_pages':
../fs/crypto/crypto.c:457:2: error: implicit declaration of function 'bio_for_each_segment_all' [-Werror=implicit-function-declaration]
  bio_for_each_segment_all(bv, bio, i) {
  ^
../fs/crypto/crypto.c:457:39: error: expected ';' before '{' token
  bio_for_each_segment_all(bv, bio, i) {
                                       ^
cc1: some warnings being treated as errors



-- 
~Randy

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ