01 May, 2020

1 commit

  • - add SPDX header;
    - adjust title markup;
    - use autonumbered list markups;
    - mark code blocks and literals as such;
    - mark tables as such;
    - adjust identation, whitespaces and blank lines where needed;
    - add to networking/index.rst.

    Signed-off-by: Mauro Carvalho Chehab
    Signed-off-by: David S. Miller

    Mauro Carvalho Chehab
     

01 Nov, 2019

1 commit


21 May, 2019

1 commit


17 Sep, 2016

2 commits

  • Add a configuration option to inject packet loss by discarding
    approximately every 8th packet received and approximately every 8th DATA
    packet transmitted.

    Note that no locking is used, but it shouldn't really matter.

    Signed-off-by: David Howells

    David Howells
     
  • Add CONFIG_AF_RXRPC_IPV6 and make the IPv6 support code conditional on it.
    This is then made conditional on CONFIG_IPV6.

    Without this, the following can be seen:

    net/built-in.o: In function `rxrpc_init_peer':
    >> peer_object.c:(.text+0x18c3c8): undefined reference to `ip6_route_output_flags'

    Reported-by: kbuild test robot
    Signed-off-by: David Howells
    Signed-off-by: David S. Miller

    David Howells
     

12 Apr, 2016

1 commit

  • Absorb the rxkad security module into the af_rxrpc module so that there's
    only one module file. This avoids a circular dependency whereby rxkad pins
    af_rxrpc and cached connections pin rxkad but can't be manually evicted
    (they will expire eventually and cease pinning).

    With this change, af_rxrpc can just be unloaded, despite having cached
    connections.

    Signed-off-by: David Howells
    Signed-off-by: David S. Miller

    David Howells
     

12 Jan, 2013

1 commit

  • The CONFIG_EXPERIMENTAL config item has not carried much meaning for a
    while now and is almost always enabled by default. As agreed during the
    Linux kernel summit, remove it from any "depends on" lines in Kconfigs.

    CC: "David S. Miller"
    Signed-off-by: Kees Cook
    Acked-by: David S. Miller

    Kees Cook
     

30 Nov, 2007

1 commit


23 May, 2007

1 commit

  • Add a dependency for CONFIG_AF_RXRPC on CONFIG_INET. This fixes this
    error:

    net/built-in.o: In function `rxrpc_get_peer':
    (.text+0x42824): undefined reference to `ip_route_output_key'

    Signed-off-by: David Howells
    Signed-off-by: David S. Miller

    David Howells
     

03 May, 2007

1 commit

  • Make miscellaneous fixes to AFS and AF_RXRPC:

    (*) Make AF_RXRPC select KEYS rather than RXKAD or AFS_FS in Kconfig.

    (*) Don't use FS_BINARY_MOUNTDATA.

    (*) Remove a done 'TODO' item in a comemnt on afs_get_sb().

    (*) Don't pass a void * as the page pointer argument of kmap_atomic() as this
    breaks on m68k. Patch from Geert Uytterhoeven .

    (*) Use match_*() functions rather than doing my own parsing.

    Signed-off-by: David Howells
    Signed-off-by: David S. Miller

    David Howells
     

28 Apr, 2007

1 commit

  • Fixes for various arch compilation problems:

    (*) Missing module exports.

    (*) Variable name collision when rxkad and af_rxrpc both built in
    (rxrpc_debug).

    (*) Large constant representation problem (AFS_UUID_TO_UNIX_TIME).

    (*) Configuration dependencies.

    (*) printk() format warnings.

    Signed-off-by: David Howells
    Signed-off-by: David S. Miller

    David Howells
     

27 Apr, 2007

1 commit

  • Provide AF_RXRPC sockets that can be used to talk to AFS servers, or serve
    answers to AFS clients. KerberosIV security is fully supported. The patches
    and some example test programs can be found in:

    http://people.redhat.com/~dhowells/rxrpc/

    This will eventually replace the old implementation of kernel-only RxRPC
    currently resident in net/rxrpc/.

    Signed-off-by: David Howells
    Signed-off-by: David S. Miller

    David Howells