The patch titled mxser: remove useless fields has been added to the -mm tree. Its filename is mxser-remove-useless-fields.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: mxser: remove useless fields From: Cedric Le Goater <clg@xxxxxxxxxx> the session and pgrp fields in mxser_struct are unused. Signed-off-by: Cedric Le Goater <clg@xxxxxxxxxx> Cc: Jiri Slaby <jirislaby@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/mxser.c | 7 +------ 1 files changed, 1 insertion(+), 6 deletions(-) diff -puN drivers/char/mxser.c~mxser-remove-useless-fields drivers/char/mxser.c --- a/drivers/char/mxser.c~mxser-remove-useless-fields +++ a/drivers/char/mxser.c @@ -321,8 +321,6 @@ struct mxser_struct { unsigned long event; int count; /* # of fd on device */ int blocked_open; /* # of blocked opens */ - long session; /* Session of opening process */ - long pgrp; /* pgrp of opening process */ unsigned char *xmit_buf; int xmit_head; int xmit_tail; @@ -1001,15 +999,12 @@ static int mxser_open(struct tty_struct mxser_change_speed(info, NULL); } - info->session = process_session(current); - info->pgrp = process_group(current); - /* status = mxser_get_msr(info->base, 0, info->port); mxser_check_modem_status(info, status); */ -/* unmark here for very high baud rate (ex. 921600 bps) used */ + /* unmark here for very high baud rate (ex. 921600 bps) used */ tty->low_latency = 1; return 0; } _ Patches currently in -mm which might be from clg@xxxxxxxxxx are namespaces-fix-exit-race-by-splitting-exit.patch kthread-api-conversion-for-dvb_frontend-and-av7110.patch mxser-remove-useless-fields.patch nsproxy-externalizes-exit_task_namespaces.patch user-namespace-add-the-framework.patch user_ns-handle-file-sigio-fix.patch rename-attach_pid-to-find_attach_pid.patch attach_pid-with-struct-pid-parameter.patch remove-find_attach_pid.patch statically-initialize-struct-pid-for-swapper.patch explicitly-set-pgid-sid-of-init.patch uts-namespace-remove-config_uts_ns.patch ipc-namespace-remove-config_ipc_ns.patch statistics-replace-inode-ugeneric_ip-with-i_private.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html